diff --git a/generated/schema.graphql b/generated/schema.graphql index ccb43cf89..7a2d13708 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -36,6 +36,13 @@ type ActiveQuery { wait_event_type: String } +type AddCustomGamePluginOutput { + name: String! + runtime: String! + slug: String! + version: String! +} + type ApiKeyResponse { key: String! } @@ -479,6 +486,13 @@ type PendingMatchImportActionOutput { success: Boolean! } +type PluginReadmeOutput { + content: String + format: String + repo: String + url: String +} + type PodStats { cpu: CpuStat memory: MemoryStat @@ -486,6 +500,12 @@ type PodStats { node: String! } +type PreviewGameModeOutput { + cfg: String + enabledPlugins: String! + extraGameParams: String +} + type PreviewTournamentMatchResetOutput { impacts: [TournamentMatchResetImpact!]! } @@ -531,6 +551,10 @@ type RecomputeEloStatusOutput { total: Int! } +type ReconcileNodePluginsOutput { + detected: Int! +} + type ReindexStartedOutput { running: Boolean! success: Boolean! @@ -736,6 +760,11 @@ type SuccessOutput { success: Boolean! } +type SyncPluginRegistryOutput { + plugins: Int! + versions: Int! +} + type TableIOStat { cache_hit_ratio: Float heap_blks_hit: Int! @@ -808,6 +837,9 @@ type TelemetryFleetTotals { dedicatedServers: Int! eventTeams: Int! events: Int! + gameModes: Int! + gameModesEnabled: Int! + gameModesUnranked: Int! gameServerNodes: Int! gameServerNodesEnabled: Int! gameServerNodesOnline: Int! @@ -839,6 +871,10 @@ type TelemetryFleetTotals { playersKnown: Int! playersPlayed: Int! playersRegistered: Int! + pluginsBySlug: jsonb + pluginsManual: Int! + pluginsReported: Int! + pluginsRequested: Int! publicServers: Int! regions: Int! scrimRequests: Int! @@ -3903,6 +3939,7 @@ type custom_pages { manifest_url: String nav_group: String nav_order: Int! + plugin_slug: String profile_tab_label: String remote_entry_url: String! remote_scope: String! @@ -3964,6 +4001,7 @@ input custom_pages_bool_exp { manifest_url: String_comparison_exp nav_group: String_comparison_exp nav_order: Int_comparison_exp + plugin_slug: String_comparison_exp profile_tab_label: String_comparison_exp remote_entry_url: String_comparison_exp remote_scope: String_comparison_exp @@ -3982,6 +4020,11 @@ enum custom_pages_constraint { """ custom_pages_pkey + """ + unique or primary key constraint on columns "plugin_slug" + """ + custom_pages_plugin_slug_idx + """ unique or primary key constraint on columns "is_default" """ @@ -4035,6 +4078,7 @@ input custom_pages_insert_input { manifest_url: String nav_group: String nav_order: Int + plugin_slug: String profile_tab_label: String remote_entry_url: String remote_scope: String @@ -4053,6 +4097,7 @@ type custom_pages_max_fields { manifest_url: String nav_group: String nav_order: Int + plugin_slug: String profile_tab_label: String remote_entry_url: String remote_scope: String @@ -4070,6 +4115,7 @@ type custom_pages_min_fields { manifest_url: String nav_group: String nav_order: Int + plugin_slug: String profile_tab_label: String remote_entry_url: String remote_scope: String @@ -4110,6 +4156,7 @@ input custom_pages_order_by { manifest_url: order_by nav_group: order_by nav_order: order_by + plugin_slug: order_by profile_tab_label: order_by remote_entry_url: order_by remote_scope: order_by @@ -4163,6 +4210,9 @@ enum custom_pages_select_column { """column name""" nav_order + """column name""" + plugin_slug + """column name""" profile_tab_label @@ -4199,6 +4249,7 @@ input custom_pages_set_input { manifest_url: String nav_group: String nav_order: Int + plugin_slug: String profile_tab_label: String remote_entry_url: String remote_scope: String @@ -4246,6 +4297,7 @@ input custom_pages_stream_cursor_value_input { manifest_url: String nav_group: String nav_order: Int + plugin_slug: String profile_tab_label: String remote_entry_url: String remote_scope: String @@ -4294,6 +4346,9 @@ enum custom_pages_update_column { """column name""" nav_order + """column name""" + plugin_slug + """column name""" profile_tab_label @@ -9258,6 +9313,535 @@ input e_game_cfg_types_updates { where: e_game_cfg_types_bool_exp! } +""" +columns and relationships of "e_game_plugin_channels" +""" +type e_game_plugin_channels { + description: String! + value: String! +} + +""" +aggregated selection of "e_game_plugin_channels" +""" +type e_game_plugin_channels_aggregate { + aggregate: e_game_plugin_channels_aggregate_fields + nodes: [e_game_plugin_channels!]! +} + +""" +aggregate fields of "e_game_plugin_channels" +""" +type e_game_plugin_channels_aggregate_fields { + count(columns: [e_game_plugin_channels_select_column!], distinct: Boolean): Int! + max: e_game_plugin_channels_max_fields + min: e_game_plugin_channels_min_fields +} + +""" +Boolean expression to filter rows from the table "e_game_plugin_channels". All fields are combined with a logical 'AND'. +""" +input e_game_plugin_channels_bool_exp { + _and: [e_game_plugin_channels_bool_exp!] + _not: e_game_plugin_channels_bool_exp + _or: [e_game_plugin_channels_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_game_plugin_channels" +""" +enum e_game_plugin_channels_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_game_plugin_channels_pkey +} + +enum e_game_plugin_channels_enum { + """Install new upstream releases automatically""" + Auto + + """ + Stay on the installed version; a newer release only raises a notification + """ + Pinned +} + +""" +Boolean expression to compare columns of type "e_game_plugin_channels_enum". All fields are combined with logical 'AND'. +""" +input e_game_plugin_channels_enum_comparison_exp { + _eq: e_game_plugin_channels_enum + _in: [e_game_plugin_channels_enum!] + _is_null: Boolean + _neq: e_game_plugin_channels_enum + _nin: [e_game_plugin_channels_enum!] +} + +""" +input type for inserting data into table "e_game_plugin_channels" +""" +input e_game_plugin_channels_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_game_plugin_channels_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_game_plugin_channels_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_game_plugin_channels" +""" +type e_game_plugin_channels_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_game_plugin_channels!]! +} + +""" +on_conflict condition type for table "e_game_plugin_channels" +""" +input e_game_plugin_channels_on_conflict { + constraint: e_game_plugin_channels_constraint! + update_columns: [e_game_plugin_channels_update_column!]! = [] + where: e_game_plugin_channels_bool_exp +} + +"""Ordering options when selecting data from "e_game_plugin_channels".""" +input e_game_plugin_channels_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_game_plugin_channels""" +input e_game_plugin_channels_pk_columns_input { + value: String! +} + +""" +select columns of table "e_game_plugin_channels" +""" +enum e_game_plugin_channels_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_game_plugin_channels" +""" +input e_game_plugin_channels_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_game_plugin_channels" +""" +input e_game_plugin_channels_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_game_plugin_channels_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_game_plugin_channels_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_game_plugin_channels" +""" +enum e_game_plugin_channels_update_column { + """column name""" + description + + """column name""" + value +} + +input e_game_plugin_channels_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_game_plugin_channels_set_input + + """filter the rows which have to be updated""" + where: e_game_plugin_channels_bool_exp! +} + +""" +columns and relationships of "e_game_plugin_install_statuses" +""" +type e_game_plugin_install_statuses { + description: String! + value: String! +} + +""" +aggregated selection of "e_game_plugin_install_statuses" +""" +type e_game_plugin_install_statuses_aggregate { + aggregate: e_game_plugin_install_statuses_aggregate_fields + nodes: [e_game_plugin_install_statuses!]! +} + +""" +aggregate fields of "e_game_plugin_install_statuses" +""" +type e_game_plugin_install_statuses_aggregate_fields { + count(columns: [e_game_plugin_install_statuses_select_column!], distinct: Boolean): Int! + max: e_game_plugin_install_statuses_max_fields + min: e_game_plugin_install_statuses_min_fields +} + +""" +Boolean expression to filter rows from the table "e_game_plugin_install_statuses". All fields are combined with a logical 'AND'. +""" +input e_game_plugin_install_statuses_bool_exp { + _and: [e_game_plugin_install_statuses_bool_exp!] + _not: e_game_plugin_install_statuses_bool_exp + _or: [e_game_plugin_install_statuses_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_game_plugin_install_statuses" +""" +enum e_game_plugin_install_statuses_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_game_plugin_install_statuses_pkey +} + +enum e_game_plugin_install_statuses_enum { + """Install did not complete; see the recorded error""" + Failed + + """Present in the node plugin store and ready to be selected by a mode""" + Installed + + """Downloading and unpacking into the node plugin store""" + Installing + + """Queued for install on the node""" + Pending + + """Being deleted from the node plugin store""" + Removing +} + +""" +Boolean expression to compare columns of type "e_game_plugin_install_statuses_enum". All fields are combined with logical 'AND'. +""" +input e_game_plugin_install_statuses_enum_comparison_exp { + _eq: e_game_plugin_install_statuses_enum + _in: [e_game_plugin_install_statuses_enum!] + _is_null: Boolean + _neq: e_game_plugin_install_statuses_enum + _nin: [e_game_plugin_install_statuses_enum!] +} + +""" +input type for inserting data into table "e_game_plugin_install_statuses" +""" +input e_game_plugin_install_statuses_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_game_plugin_install_statuses_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_game_plugin_install_statuses_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_game_plugin_install_statuses" +""" +type e_game_plugin_install_statuses_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_game_plugin_install_statuses!]! +} + +""" +on_conflict condition type for table "e_game_plugin_install_statuses" +""" +input e_game_plugin_install_statuses_on_conflict { + constraint: e_game_plugin_install_statuses_constraint! + update_columns: [e_game_plugin_install_statuses_update_column!]! = [] + where: e_game_plugin_install_statuses_bool_exp +} + +""" +Ordering options when selecting data from "e_game_plugin_install_statuses". +""" +input e_game_plugin_install_statuses_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_game_plugin_install_statuses""" +input e_game_plugin_install_statuses_pk_columns_input { + value: String! +} + +""" +select columns of table "e_game_plugin_install_statuses" +""" +enum e_game_plugin_install_statuses_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_game_plugin_install_statuses" +""" +input e_game_plugin_install_statuses_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_game_plugin_install_statuses" +""" +input e_game_plugin_install_statuses_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_game_plugin_install_statuses_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_game_plugin_install_statuses_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_game_plugin_install_statuses" +""" +enum e_game_plugin_install_statuses_update_column { + """column name""" + description + + """column name""" + value +} + +input e_game_plugin_install_statuses_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_game_plugin_install_statuses_set_input + + """filter the rows which have to be updated""" + where: e_game_plugin_install_statuses_bool_exp! +} + +""" +columns and relationships of "e_game_plugin_kinds" +""" +type e_game_plugin_kinds { + description: String! + value: String! +} + +""" +aggregated selection of "e_game_plugin_kinds" +""" +type e_game_plugin_kinds_aggregate { + aggregate: e_game_plugin_kinds_aggregate_fields + nodes: [e_game_plugin_kinds!]! +} + +""" +aggregate fields of "e_game_plugin_kinds" +""" +type e_game_plugin_kinds_aggregate_fields { + count(columns: [e_game_plugin_kinds_select_column!], distinct: Boolean): Int! + max: e_game_plugin_kinds_max_fields + min: e_game_plugin_kinds_min_fields +} + +""" +Boolean expression to filter rows from the table "e_game_plugin_kinds". All fields are combined with a logical 'AND'. +""" +input e_game_plugin_kinds_bool_exp { + _and: [e_game_plugin_kinds_bool_exp!] + _not: e_game_plugin_kinds_bool_exp + _or: [e_game_plugin_kinds_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_game_plugin_kinds" +""" +enum e_game_plugin_kinds_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_game_plugin_kinds_pkey +} + +enum e_game_plugin_kinds_enum { + """A panel plugin and a game plugin installed and wired together""" + bundle + + """A CS2 server plugin that loads into the game server""" + game + + """A web app that mounts as a page inside the panel""" + panel +} + +""" +Boolean expression to compare columns of type "e_game_plugin_kinds_enum". All fields are combined with logical 'AND'. +""" +input e_game_plugin_kinds_enum_comparison_exp { + _eq: e_game_plugin_kinds_enum + _in: [e_game_plugin_kinds_enum!] + _is_null: Boolean + _neq: e_game_plugin_kinds_enum + _nin: [e_game_plugin_kinds_enum!] +} + +""" +input type for inserting data into table "e_game_plugin_kinds" +""" +input e_game_plugin_kinds_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_game_plugin_kinds_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_game_plugin_kinds_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_game_plugin_kinds" +""" +type e_game_plugin_kinds_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_game_plugin_kinds!]! +} + +""" +on_conflict condition type for table "e_game_plugin_kinds" +""" +input e_game_plugin_kinds_on_conflict { + constraint: e_game_plugin_kinds_constraint! + update_columns: [e_game_plugin_kinds_update_column!]! = [] + where: e_game_plugin_kinds_bool_exp +} + +"""Ordering options when selecting data from "e_game_plugin_kinds".""" +input e_game_plugin_kinds_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_game_plugin_kinds""" +input e_game_plugin_kinds_pk_columns_input { + value: String! +} + +""" +select columns of table "e_game_plugin_kinds" +""" +enum e_game_plugin_kinds_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_game_plugin_kinds" +""" +input e_game_plugin_kinds_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_game_plugin_kinds" +""" +input e_game_plugin_kinds_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_game_plugin_kinds_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_game_plugin_kinds_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_game_plugin_kinds" +""" +enum e_game_plugin_kinds_update_column { + """column name""" + description + + """column name""" + value +} + +input e_game_plugin_kinds_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_game_plugin_kinds_set_input + + """filter the rows which have to be updated""" + where: e_game_plugin_kinds_bool_exp! +} + """ columns and relationships of "e_game_server_node_statuses" """ @@ -19273,6 +19857,2738 @@ type friends_variance_fields { player_steam_id: Float } +""" +columns and relationships of "game_mode_plugins" +""" +type game_mode_plugins { + config( + """JSON select path""" + path: String + ): jsonb + + """An object relationship""" + game_mode: game_modes! + game_mode_id: uuid! + load_order: Int! + + """An object relationship""" + plugin: game_plugins! + plugin_slug: String! + required: Boolean! +} + +""" +aggregated selection of "game_mode_plugins" +""" +type game_mode_plugins_aggregate { + aggregate: game_mode_plugins_aggregate_fields + nodes: [game_mode_plugins!]! +} + +input game_mode_plugins_aggregate_bool_exp { + bool_and: game_mode_plugins_aggregate_bool_exp_bool_and + bool_or: game_mode_plugins_aggregate_bool_exp_bool_or + count: game_mode_plugins_aggregate_bool_exp_count +} + +input game_mode_plugins_aggregate_bool_exp_bool_and { + arguments: game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: game_mode_plugins_bool_exp + predicate: Boolean_comparison_exp! +} + +input game_mode_plugins_aggregate_bool_exp_bool_or { + arguments: game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: game_mode_plugins_bool_exp + predicate: Boolean_comparison_exp! +} + +input game_mode_plugins_aggregate_bool_exp_count { + arguments: [game_mode_plugins_select_column!] + distinct: Boolean + filter: game_mode_plugins_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "game_mode_plugins" +""" +type game_mode_plugins_aggregate_fields { + avg: game_mode_plugins_avg_fields + count(columns: [game_mode_plugins_select_column!], distinct: Boolean): Int! + max: game_mode_plugins_max_fields + min: game_mode_plugins_min_fields + stddev: game_mode_plugins_stddev_fields + stddev_pop: game_mode_plugins_stddev_pop_fields + stddev_samp: game_mode_plugins_stddev_samp_fields + sum: game_mode_plugins_sum_fields + var_pop: game_mode_plugins_var_pop_fields + var_samp: game_mode_plugins_var_samp_fields + variance: game_mode_plugins_variance_fields +} + +""" +order by aggregate values of table "game_mode_plugins" +""" +input game_mode_plugins_aggregate_order_by { + avg: game_mode_plugins_avg_order_by + count: order_by + max: game_mode_plugins_max_order_by + min: game_mode_plugins_min_order_by + stddev: game_mode_plugins_stddev_order_by + stddev_pop: game_mode_plugins_stddev_pop_order_by + stddev_samp: game_mode_plugins_stddev_samp_order_by + sum: game_mode_plugins_sum_order_by + var_pop: game_mode_plugins_var_pop_order_by + var_samp: game_mode_plugins_var_samp_order_by + variance: game_mode_plugins_variance_order_by +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input game_mode_plugins_append_input { + config: jsonb +} + +""" +input type for inserting array relation for remote table "game_mode_plugins" +""" +input game_mode_plugins_arr_rel_insert_input { + data: [game_mode_plugins_insert_input!]! + + """upsert condition""" + on_conflict: game_mode_plugins_on_conflict +} + +"""aggregate avg on columns""" +type game_mode_plugins_avg_fields { + load_order: Float +} + +""" +order by avg() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_avg_order_by { + load_order: order_by +} + +""" +Boolean expression to filter rows from the table "game_mode_plugins". All fields are combined with a logical 'AND'. +""" +input game_mode_plugins_bool_exp { + _and: [game_mode_plugins_bool_exp!] + _not: game_mode_plugins_bool_exp + _or: [game_mode_plugins_bool_exp!] + config: jsonb_comparison_exp + game_mode: game_modes_bool_exp + game_mode_id: uuid_comparison_exp + load_order: Int_comparison_exp + plugin: game_plugins_bool_exp + plugin_slug: String_comparison_exp + required: Boolean_comparison_exp +} + +""" +unique or primary key constraints on table "game_mode_plugins" +""" +enum game_mode_plugins_constraint { + """ + unique or primary key constraint on columns "game_mode_id", "plugin_slug" + """ + game_mode_plugins_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input game_mode_plugins_delete_at_path_input { + config: [String!] +} + +""" +delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array +""" +input game_mode_plugins_delete_elem_input { + config: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input game_mode_plugins_delete_key_input { + config: String +} + +""" +input type for incrementing numeric columns in table "game_mode_plugins" +""" +input game_mode_plugins_inc_input { + load_order: Int +} + +""" +input type for inserting data into table "game_mode_plugins" +""" +input game_mode_plugins_insert_input { + config: jsonb + game_mode: game_modes_obj_rel_insert_input + game_mode_id: uuid + load_order: Int + plugin: game_plugins_obj_rel_insert_input + plugin_slug: String + required: Boolean +} + +"""aggregate max on columns""" +type game_mode_plugins_max_fields { + game_mode_id: uuid + load_order: Int + plugin_slug: String +} + +""" +order by max() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_max_order_by { + game_mode_id: order_by + load_order: order_by + plugin_slug: order_by +} + +"""aggregate min on columns""" +type game_mode_plugins_min_fields { + game_mode_id: uuid + load_order: Int + plugin_slug: String +} + +""" +order by min() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_min_order_by { + game_mode_id: order_by + load_order: order_by + plugin_slug: order_by +} + +""" +response of any mutation on the table "game_mode_plugins" +""" +type game_mode_plugins_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [game_mode_plugins!]! +} + +""" +on_conflict condition type for table "game_mode_plugins" +""" +input game_mode_plugins_on_conflict { + constraint: game_mode_plugins_constraint! + update_columns: [game_mode_plugins_update_column!]! = [] + where: game_mode_plugins_bool_exp +} + +"""Ordering options when selecting data from "game_mode_plugins".""" +input game_mode_plugins_order_by { + config: order_by + game_mode: game_modes_order_by + game_mode_id: order_by + load_order: order_by + plugin: game_plugins_order_by + plugin_slug: order_by + required: order_by +} + +"""primary key columns input for table: game_mode_plugins""" +input game_mode_plugins_pk_columns_input { + game_mode_id: uuid! + plugin_slug: String! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input game_mode_plugins_prepend_input { + config: jsonb +} + +""" +select columns of table "game_mode_plugins" +""" +enum game_mode_plugins_select_column { + """column name""" + config + + """column name""" + game_mode_id + + """column name""" + load_order + + """column name""" + plugin_slug + + """column name""" + required +} + +""" +select "game_mode_plugins_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_mode_plugins" +""" +enum game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + required +} + +""" +select "game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns" columns of table "game_mode_plugins" +""" +enum game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + required +} + +""" +input type for updating data in table "game_mode_plugins" +""" +input game_mode_plugins_set_input { + config: jsonb + game_mode_id: uuid + load_order: Int + plugin_slug: String + required: Boolean +} + +"""aggregate stddev on columns""" +type game_mode_plugins_stddev_fields { + load_order: Float +} + +""" +order by stddev() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_stddev_order_by { + load_order: order_by +} + +"""aggregate stddev_pop on columns""" +type game_mode_plugins_stddev_pop_fields { + load_order: Float +} + +""" +order by stddev_pop() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_stddev_pop_order_by { + load_order: order_by +} + +"""aggregate stddev_samp on columns""" +type game_mode_plugins_stddev_samp_fields { + load_order: Float +} + +""" +order by stddev_samp() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_stddev_samp_order_by { + load_order: order_by +} + +""" +Streaming cursor of the table "game_mode_plugins" +""" +input game_mode_plugins_stream_cursor_input { + """Stream column input with initial value""" + initial_value: game_mode_plugins_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input game_mode_plugins_stream_cursor_value_input { + config: jsonb + game_mode_id: uuid + load_order: Int + plugin_slug: String + required: Boolean +} + +"""aggregate sum on columns""" +type game_mode_plugins_sum_fields { + load_order: Int +} + +""" +order by sum() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_sum_order_by { + load_order: order_by +} + +""" +update columns of table "game_mode_plugins" +""" +enum game_mode_plugins_update_column { + """column name""" + config + + """column name""" + game_mode_id + + """column name""" + load_order + + """column name""" + plugin_slug + + """column name""" + required +} + +input game_mode_plugins_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_mode_plugins_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_mode_plugins_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: game_mode_plugins_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_mode_plugins_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: game_mode_plugins_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_mode_plugins_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_mode_plugins_set_input + + """filter the rows which have to be updated""" + where: game_mode_plugins_bool_exp! +} + +"""aggregate var_pop on columns""" +type game_mode_plugins_var_pop_fields { + load_order: Float +} + +""" +order by var_pop() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_var_pop_order_by { + load_order: order_by +} + +"""aggregate var_samp on columns""" +type game_mode_plugins_var_samp_fields { + load_order: Float +} + +""" +order by var_samp() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_var_samp_order_by { + load_order: order_by +} + +"""aggregate variance on columns""" +type game_mode_plugins_variance_fields { + load_order: Float +} + +""" +order by variance() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_variance_order_by { + load_order: order_by +} + +""" +columns and relationships of "game_modes" +""" +type game_modes { + archived_at: timestamptz + cfg: String + competitive_safe: Boolean! + created_at: timestamptz! + description: String + enabled: Boolean! + extra_game_params: String + icon: String + id: uuid! + + """An array relationship""" + match_options( + """distinct select on columns""" + distinct_on: [match_options_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_options_order_by!] + + """filter the rows returned""" + where: match_options_bool_exp + ): [match_options!]! + + """An aggregate relationship""" + match_options_aggregate( + """distinct select on columns""" + distinct_on: [match_options_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_options_order_by!] + + """filter the rows returned""" + where: match_options_bool_exp + ): match_options_aggregate! + name: String! + + """An array relationship""" + plugins( + """distinct select on columns""" + distinct_on: [game_mode_plugins_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: [game_mode_plugins_order_by!] + + """filter the rows returned""" + where: game_mode_plugins_bool_exp + ): [game_mode_plugins!]! + + """An aggregate relationship""" + plugins_aggregate( + """distinct select on columns""" + distinct_on: [game_mode_plugins_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: [game_mode_plugins_order_by!] + + """filter the rows returned""" + where: game_mode_plugins_bool_exp + ): game_mode_plugins_aggregate! + + """Plugins in this mode with no build for the deployment's runtime""" + runtime_conflicts( + """JSON select path""" + path: String + ): jsonb + slug: String! + + """ + Frameworks every plugin in this mode publishes for; empty means the selection cannot run + """ + supported_runtimes( + """JSON select path""" + path: String + ): jsonb + updated_at: timestamptz! +} + +""" +aggregated selection of "game_modes" +""" +type game_modes_aggregate { + aggregate: game_modes_aggregate_fields + nodes: [game_modes!]! +} + +""" +aggregate fields of "game_modes" +""" +type game_modes_aggregate_fields { + count(columns: [game_modes_select_column!], distinct: Boolean): Int! + max: game_modes_max_fields + min: game_modes_min_fields +} + +""" +Boolean expression to filter rows from the table "game_modes". All fields are combined with a logical 'AND'. +""" +input game_modes_bool_exp { + _and: [game_modes_bool_exp!] + _not: game_modes_bool_exp + _or: [game_modes_bool_exp!] + archived_at: timestamptz_comparison_exp + cfg: String_comparison_exp + competitive_safe: Boolean_comparison_exp + created_at: timestamptz_comparison_exp + description: String_comparison_exp + enabled: Boolean_comparison_exp + extra_game_params: String_comparison_exp + icon: String_comparison_exp + id: uuid_comparison_exp + match_options: match_options_bool_exp + match_options_aggregate: match_options_aggregate_bool_exp + name: String_comparison_exp + plugins: game_mode_plugins_bool_exp + plugins_aggregate: game_mode_plugins_aggregate_bool_exp + runtime_conflicts: jsonb_comparison_exp + slug: String_comparison_exp + supported_runtimes: jsonb_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "game_modes" +""" +enum game_modes_constraint { + """ + unique or primary key constraint on columns "id" + """ + game_modes_pkey + + """ + unique or primary key constraint on columns "slug" + """ + game_modes_slug_key +} + +""" +input type for inserting data into table "game_modes" +""" +input game_modes_insert_input { + archived_at: timestamptz + cfg: String + competitive_safe: Boolean + created_at: timestamptz + description: String + enabled: Boolean + extra_game_params: String + icon: String + id: uuid + match_options: match_options_arr_rel_insert_input + name: String + plugins: game_mode_plugins_arr_rel_insert_input + slug: String + updated_at: timestamptz +} + +"""aggregate max on columns""" +type game_modes_max_fields { + archived_at: timestamptz + cfg: String + created_at: timestamptz + description: String + extra_game_params: String + icon: String + id: uuid + name: String + slug: String + updated_at: timestamptz +} + +"""aggregate min on columns""" +type game_modes_min_fields { + archived_at: timestamptz + cfg: String + created_at: timestamptz + description: String + extra_game_params: String + icon: String + id: uuid + name: String + slug: String + updated_at: timestamptz +} + +""" +response of any mutation on the table "game_modes" +""" +type game_modes_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [game_modes!]! +} + +""" +input type for inserting object relation for remote table "game_modes" +""" +input game_modes_obj_rel_insert_input { + data: game_modes_insert_input! + + """upsert condition""" + on_conflict: game_modes_on_conflict +} + +""" +on_conflict condition type for table "game_modes" +""" +input game_modes_on_conflict { + constraint: game_modes_constraint! + update_columns: [game_modes_update_column!]! = [] + where: game_modes_bool_exp +} + +"""Ordering options when selecting data from "game_modes".""" +input game_modes_order_by { + archived_at: order_by + cfg: order_by + competitive_safe: order_by + created_at: order_by + description: order_by + enabled: order_by + extra_game_params: order_by + icon: order_by + id: order_by + match_options_aggregate: match_options_aggregate_order_by + name: order_by + plugins_aggregate: game_mode_plugins_aggregate_order_by + runtime_conflicts: order_by + slug: order_by + supported_runtimes: order_by + updated_at: order_by +} + +"""primary key columns input for table: game_modes""" +input game_modes_pk_columns_input { + id: uuid! +} + +""" +select columns of table "game_modes" +""" +enum game_modes_select_column { + """column name""" + archived_at + + """column name""" + cfg + + """column name""" + competitive_safe + + """column name""" + created_at + + """column name""" + description + + """column name""" + enabled + + """column name""" + extra_game_params + + """column name""" + icon + + """column name""" + id + + """column name""" + name + + """column name""" + slug + + """column name""" + updated_at +} + +""" +input type for updating data in table "game_modes" +""" +input game_modes_set_input { + archived_at: timestamptz + cfg: String + competitive_safe: Boolean + created_at: timestamptz + description: String + enabled: Boolean + extra_game_params: String + icon: String + id: uuid + name: String + slug: String + updated_at: timestamptz +} + +""" +Streaming cursor of the table "game_modes" +""" +input game_modes_stream_cursor_input { + """Stream column input with initial value""" + initial_value: game_modes_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input game_modes_stream_cursor_value_input { + archived_at: timestamptz + cfg: String + competitive_safe: Boolean + created_at: timestamptz + description: String + enabled: Boolean + extra_game_params: String + icon: String + id: uuid + name: String + slug: String + updated_at: timestamptz +} + +""" +update columns of table "game_modes" +""" +enum game_modes_update_column { + """column name""" + archived_at + + """column name""" + cfg + + """column name""" + competitive_safe + + """column name""" + created_at + + """column name""" + description + + """column name""" + enabled + + """column name""" + extra_game_params + + """column name""" + icon + + """column name""" + id + + """column name""" + name + + """column name""" + slug + + """column name""" + updated_at +} + +input game_modes_updates { + """sets the columns of the filtered rows to the given values""" + _set: game_modes_set_input + + """filter the rows which have to be updated""" + where: game_modes_bool_exp! +} + +""" +columns and relationships of "game_plugin_installs" +""" +type game_plugin_installs { + always_load: Boolean! + channel: e_game_plugin_channels_enum! + created_at: timestamptz! + disable_server_guidelines: Boolean! + enabled: Boolean! + + """An object relationship""" + plugin: game_plugins! + plugin_slug: String! + updated_at: timestamptz! + version: String +} + +""" +aggregated selection of "game_plugin_installs" +""" +type game_plugin_installs_aggregate { + aggregate: game_plugin_installs_aggregate_fields + nodes: [game_plugin_installs!]! +} + +""" +aggregate fields of "game_plugin_installs" +""" +type game_plugin_installs_aggregate_fields { + count(columns: [game_plugin_installs_select_column!], distinct: Boolean): Int! + max: game_plugin_installs_max_fields + min: game_plugin_installs_min_fields +} + +""" +Boolean expression to filter rows from the table "game_plugin_installs". All fields are combined with a logical 'AND'. +""" +input game_plugin_installs_bool_exp { + _and: [game_plugin_installs_bool_exp!] + _not: game_plugin_installs_bool_exp + _or: [game_plugin_installs_bool_exp!] + always_load: Boolean_comparison_exp + channel: e_game_plugin_channels_enum_comparison_exp + created_at: timestamptz_comparison_exp + disable_server_guidelines: Boolean_comparison_exp + enabled: Boolean_comparison_exp + plugin: game_plugins_bool_exp + plugin_slug: String_comparison_exp + updated_at: timestamptz_comparison_exp + version: String_comparison_exp +} + +""" +unique or primary key constraints on table "game_plugin_installs" +""" +enum game_plugin_installs_constraint { + """ + unique or primary key constraint on columns "plugin_slug" + """ + game_plugin_installs_pkey +} + +""" +input type for inserting data into table "game_plugin_installs" +""" +input game_plugin_installs_insert_input { + always_load: Boolean + channel: e_game_plugin_channels_enum + created_at: timestamptz + disable_server_guidelines: Boolean + enabled: Boolean + plugin: game_plugins_obj_rel_insert_input + plugin_slug: String + updated_at: timestamptz + version: String +} + +"""aggregate max on columns""" +type game_plugin_installs_max_fields { + created_at: timestamptz + plugin_slug: String + updated_at: timestamptz + version: String +} + +"""aggregate min on columns""" +type game_plugin_installs_min_fields { + created_at: timestamptz + plugin_slug: String + updated_at: timestamptz + version: String +} + +""" +response of any mutation on the table "game_plugin_installs" +""" +type game_plugin_installs_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [game_plugin_installs!]! +} + +""" +on_conflict condition type for table "game_plugin_installs" +""" +input game_plugin_installs_on_conflict { + constraint: game_plugin_installs_constraint! + update_columns: [game_plugin_installs_update_column!]! = [] + where: game_plugin_installs_bool_exp +} + +"""Ordering options when selecting data from "game_plugin_installs".""" +input game_plugin_installs_order_by { + always_load: order_by + channel: order_by + created_at: order_by + disable_server_guidelines: order_by + enabled: order_by + plugin: game_plugins_order_by + plugin_slug: order_by + updated_at: order_by + version: order_by +} + +"""primary key columns input for table: game_plugin_installs""" +input game_plugin_installs_pk_columns_input { + plugin_slug: String! +} + +""" +select columns of table "game_plugin_installs" +""" +enum game_plugin_installs_select_column { + """column name""" + always_load + + """column name""" + channel + + """column name""" + created_at + + """column name""" + disable_server_guidelines + + """column name""" + enabled + + """column name""" + plugin_slug + + """column name""" + updated_at + + """column name""" + version +} + +""" +input type for updating data in table "game_plugin_installs" +""" +input game_plugin_installs_set_input { + always_load: Boolean + channel: e_game_plugin_channels_enum + created_at: timestamptz + disable_server_guidelines: Boolean + enabled: Boolean + plugin_slug: String + updated_at: timestamptz + version: String +} + +""" +Streaming cursor of the table "game_plugin_installs" +""" +input game_plugin_installs_stream_cursor_input { + """Stream column input with initial value""" + initial_value: game_plugin_installs_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input game_plugin_installs_stream_cursor_value_input { + always_load: Boolean + channel: e_game_plugin_channels_enum + created_at: timestamptz + disable_server_guidelines: Boolean + enabled: Boolean + plugin_slug: String + updated_at: timestamptz + version: String +} + +""" +update columns of table "game_plugin_installs" +""" +enum game_plugin_installs_update_column { + """column name""" + always_load + + """column name""" + channel + + """column name""" + created_at + + """column name""" + disable_server_guidelines + + """column name""" + enabled + + """column name""" + plugin_slug + + """column name""" + updated_at + + """column name""" + version +} + +input game_plugin_installs_updates { + """sets the columns of the filtered rows to the given values""" + _set: game_plugin_installs_set_input + + """filter the rows which have to be updated""" + where: game_plugin_installs_bool_exp! +} + +""" +columns and relationships of "game_plugin_versions" +""" +type game_plugin_versions { + install_path: String + layout: String! + + """An object relationship""" + plugin: game_plugins! + plugin_slug: String! + prerelease: Boolean! + published_at: timestamptz! + runtime: e_plugin_runtimes_enum! + sha256: String! + size: Int + url: String! + version: String! +} + +""" +aggregated selection of "game_plugin_versions" +""" +type game_plugin_versions_aggregate { + aggregate: game_plugin_versions_aggregate_fields + nodes: [game_plugin_versions!]! +} + +input game_plugin_versions_aggregate_bool_exp { + bool_and: game_plugin_versions_aggregate_bool_exp_bool_and + bool_or: game_plugin_versions_aggregate_bool_exp_bool_or + count: game_plugin_versions_aggregate_bool_exp_count +} + +input game_plugin_versions_aggregate_bool_exp_bool_and { + arguments: game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: game_plugin_versions_bool_exp + predicate: Boolean_comparison_exp! +} + +input game_plugin_versions_aggregate_bool_exp_bool_or { + arguments: game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: game_plugin_versions_bool_exp + predicate: Boolean_comparison_exp! +} + +input game_plugin_versions_aggregate_bool_exp_count { + arguments: [game_plugin_versions_select_column!] + distinct: Boolean + filter: game_plugin_versions_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "game_plugin_versions" +""" +type game_plugin_versions_aggregate_fields { + avg: game_plugin_versions_avg_fields + count(columns: [game_plugin_versions_select_column!], distinct: Boolean): Int! + max: game_plugin_versions_max_fields + min: game_plugin_versions_min_fields + stddev: game_plugin_versions_stddev_fields + stddev_pop: game_plugin_versions_stddev_pop_fields + stddev_samp: game_plugin_versions_stddev_samp_fields + sum: game_plugin_versions_sum_fields + var_pop: game_plugin_versions_var_pop_fields + var_samp: game_plugin_versions_var_samp_fields + variance: game_plugin_versions_variance_fields +} + +""" +order by aggregate values of table "game_plugin_versions" +""" +input game_plugin_versions_aggregate_order_by { + avg: game_plugin_versions_avg_order_by + count: order_by + max: game_plugin_versions_max_order_by + min: game_plugin_versions_min_order_by + stddev: game_plugin_versions_stddev_order_by + stddev_pop: game_plugin_versions_stddev_pop_order_by + stddev_samp: game_plugin_versions_stddev_samp_order_by + sum: game_plugin_versions_sum_order_by + var_pop: game_plugin_versions_var_pop_order_by + var_samp: game_plugin_versions_var_samp_order_by + variance: game_plugin_versions_variance_order_by +} + +""" +input type for inserting array relation for remote table "game_plugin_versions" +""" +input game_plugin_versions_arr_rel_insert_input { + data: [game_plugin_versions_insert_input!]! + + """upsert condition""" + on_conflict: game_plugin_versions_on_conflict +} + +"""aggregate avg on columns""" +type game_plugin_versions_avg_fields { + size: Float +} + +""" +order by avg() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_avg_order_by { + size: order_by +} + +""" +Boolean expression to filter rows from the table "game_plugin_versions". All fields are combined with a logical 'AND'. +""" +input game_plugin_versions_bool_exp { + _and: [game_plugin_versions_bool_exp!] + _not: game_plugin_versions_bool_exp + _or: [game_plugin_versions_bool_exp!] + install_path: String_comparison_exp + layout: String_comparison_exp + plugin: game_plugins_bool_exp + plugin_slug: String_comparison_exp + prerelease: Boolean_comparison_exp + published_at: timestamptz_comparison_exp + runtime: e_plugin_runtimes_enum_comparison_exp + sha256: String_comparison_exp + size: Int_comparison_exp + url: String_comparison_exp + version: String_comparison_exp +} + +""" +unique or primary key constraints on table "game_plugin_versions" +""" +enum game_plugin_versions_constraint { + """ + unique or primary key constraint on columns "plugin_slug", "version", "runtime" + """ + game_plugin_versions_pkey +} + +""" +input type for incrementing numeric columns in table "game_plugin_versions" +""" +input game_plugin_versions_inc_input { + size: Int +} + +""" +input type for inserting data into table "game_plugin_versions" +""" +input game_plugin_versions_insert_input { + install_path: String + layout: String + plugin: game_plugins_obj_rel_insert_input + plugin_slug: String + prerelease: Boolean + published_at: timestamptz + runtime: e_plugin_runtimes_enum + sha256: String + size: Int + url: String + version: String +} + +"""aggregate max on columns""" +type game_plugin_versions_max_fields { + install_path: String + layout: String + plugin_slug: String + published_at: timestamptz + sha256: String + size: Int + url: String + version: String +} + +""" +order by max() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_max_order_by { + install_path: order_by + layout: order_by + plugin_slug: order_by + published_at: order_by + sha256: order_by + size: order_by + url: order_by + version: order_by +} + +"""aggregate min on columns""" +type game_plugin_versions_min_fields { + install_path: String + layout: String + plugin_slug: String + published_at: timestamptz + sha256: String + size: Int + url: String + version: String +} + +""" +order by min() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_min_order_by { + install_path: order_by + layout: order_by + plugin_slug: order_by + published_at: order_by + sha256: order_by + size: order_by + url: order_by + version: order_by +} + +""" +response of any mutation on the table "game_plugin_versions" +""" +type game_plugin_versions_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [game_plugin_versions!]! +} + +""" +on_conflict condition type for table "game_plugin_versions" +""" +input game_plugin_versions_on_conflict { + constraint: game_plugin_versions_constraint! + update_columns: [game_plugin_versions_update_column!]! = [] + where: game_plugin_versions_bool_exp +} + +"""Ordering options when selecting data from "game_plugin_versions".""" +input game_plugin_versions_order_by { + install_path: order_by + layout: order_by + plugin: game_plugins_order_by + plugin_slug: order_by + prerelease: order_by + published_at: order_by + runtime: order_by + sha256: order_by + size: order_by + url: order_by + version: order_by +} + +"""primary key columns input for table: game_plugin_versions""" +input game_plugin_versions_pk_columns_input { + plugin_slug: String! + runtime: e_plugin_runtimes_enum! + version: String! +} + +""" +select columns of table "game_plugin_versions" +""" +enum game_plugin_versions_select_column { + """column name""" + install_path + + """column name""" + layout + + """column name""" + plugin_slug + + """column name""" + prerelease + + """column name""" + published_at + + """column name""" + runtime + + """column name""" + sha256 + + """column name""" + size + + """column name""" + url + + """column name""" + version +} + +""" +select "game_plugin_versions_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_plugin_versions" +""" +enum game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + prerelease +} + +""" +select "game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns" columns of table "game_plugin_versions" +""" +enum game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + prerelease +} + +""" +input type for updating data in table "game_plugin_versions" +""" +input game_plugin_versions_set_input { + install_path: String + layout: String + plugin_slug: String + prerelease: Boolean + published_at: timestamptz + runtime: e_plugin_runtimes_enum + sha256: String + size: Int + url: String + version: String +} + +"""aggregate stddev on columns""" +type game_plugin_versions_stddev_fields { + size: Float +} + +""" +order by stddev() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_stddev_order_by { + size: order_by +} + +"""aggregate stddev_pop on columns""" +type game_plugin_versions_stddev_pop_fields { + size: Float +} + +""" +order by stddev_pop() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_stddev_pop_order_by { + size: order_by +} + +"""aggregate stddev_samp on columns""" +type game_plugin_versions_stddev_samp_fields { + size: Float +} + +""" +order by stddev_samp() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_stddev_samp_order_by { + size: order_by +} + +""" +Streaming cursor of the table "game_plugin_versions" +""" +input game_plugin_versions_stream_cursor_input { + """Stream column input with initial value""" + initial_value: game_plugin_versions_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input game_plugin_versions_stream_cursor_value_input { + install_path: String + layout: String + plugin_slug: String + prerelease: Boolean + published_at: timestamptz + runtime: e_plugin_runtimes_enum + sha256: String + size: Int + url: String + version: String +} + +"""aggregate sum on columns""" +type game_plugin_versions_sum_fields { + size: Int +} + +""" +order by sum() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_sum_order_by { + size: order_by +} + +""" +update columns of table "game_plugin_versions" +""" +enum game_plugin_versions_update_column { + """column name""" + install_path + + """column name""" + layout + + """column name""" + plugin_slug + + """column name""" + prerelease + + """column name""" + published_at + + """column name""" + runtime + + """column name""" + sha256 + + """column name""" + size + + """column name""" + url + + """column name""" + version +} + +input game_plugin_versions_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: game_plugin_versions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: game_plugin_versions_set_input + + """filter the rows which have to be updated""" + where: game_plugin_versions_bool_exp! +} + +"""aggregate var_pop on columns""" +type game_plugin_versions_var_pop_fields { + size: Float +} + +""" +order by var_pop() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_var_pop_order_by { + size: order_by +} + +"""aggregate var_samp on columns""" +type game_plugin_versions_var_samp_fields { + size: Float +} + +""" +order by var_samp() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_var_samp_order_by { + size: order_by +} + +"""aggregate variance on columns""" +type game_plugin_versions_variance_fields { + size: Float +} + +""" +order by variance() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_variance_order_by { + size: order_by +} + +""" +columns and relationships of "game_plugins" +""" +type game_plugins { + author: String! + config_path: String + config_schema( + """JSON select path""" + path: String + ): jsonb + cvars: [String!]! + description: String! + + """An array relationship""" + game_modes( + """distinct select on columns""" + distinct_on: [game_mode_plugins_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: [game_mode_plugins_order_by!] + + """filter the rows returned""" + where: game_mode_plugins_bool_exp + ): [game_mode_plugins!]! + + """An aggregate relationship""" + game_modes_aggregate( + """distinct select on columns""" + distinct_on: [game_mode_plugins_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: [game_mode_plugins_order_by!] + + """filter the rows returned""" + where: game_mode_plugins_bool_exp + ): game_mode_plugins_aggregate! + homepage: String + hot_swappable: Boolean! + + """Installed | Partial | Pending | Failed | Manual | NotInstalled""" + install_state: String + + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + kind: e_game_plugin_kinds_enum! + name: String! + + """An array relationship""" + node_installs( + """distinct select on columns""" + distinct_on: [game_server_node_plugins_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: [game_server_node_plugins_order_by!] + + """filter the rows returned""" + where: game_server_node_plugins_bool_exp + ): [game_server_node_plugins!]! + + """An aggregate relationship""" + node_installs_aggregate( + """distinct select on columns""" + distinct_on: [game_server_node_plugins_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: [game_server_node_plugins_order_by!] + + """filter the rows returned""" + where: game_server_node_plugins_bool_exp + ): game_server_node_plugins_aggregate! + pairs_with: [String!]! + panel( + """JSON select path""" + path: String + ): jsonb + requires_server_guidelines_disabled: Boolean! + requires_service: String + slug: String! + source: String! + synced_at: timestamptz! + tags: [String!]! + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int + verified: Boolean! + + """An array relationship""" + versions( + """distinct select on columns""" + distinct_on: [game_plugin_versions_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: [game_plugin_versions_order_by!] + + """filter the rows returned""" + where: game_plugin_versions_bool_exp + ): [game_plugin_versions!]! + + """An aggregate relationship""" + versions_aggregate( + """distinct select on columns""" + distinct_on: [game_plugin_versions_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: [game_plugin_versions_order_by!] + + """filter the rows returned""" + where: game_plugin_versions_bool_exp + ): game_plugin_versions_aggregate! + wiring( + """JSON select path""" + path: String + ): jsonb +} + +""" +aggregated selection of "game_plugins" +""" +type game_plugins_aggregate { + aggregate: game_plugins_aggregate_fields + nodes: [game_plugins!]! +} + +""" +aggregate fields of "game_plugins" +""" +type game_plugins_aggregate_fields { + avg: game_plugins_avg_fields + count(columns: [game_plugins_select_column!], distinct: Boolean): Int! + max: game_plugins_max_fields + min: game_plugins_min_fields + stddev: game_plugins_stddev_fields + stddev_pop: game_plugins_stddev_pop_fields + stddev_samp: game_plugins_stddev_samp_fields + sum: game_plugins_sum_fields + var_pop: game_plugins_var_pop_fields + var_samp: game_plugins_var_samp_fields + variance: game_plugins_variance_fields +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input game_plugins_append_input { + config_schema: jsonb + panel: jsonb + wiring: jsonb +} + +"""aggregate avg on columns""" +type game_plugins_avg_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +""" +Boolean expression to filter rows from the table "game_plugins". All fields are combined with a logical 'AND'. +""" +input game_plugins_bool_exp { + _and: [game_plugins_bool_exp!] + _not: game_plugins_bool_exp + _or: [game_plugins_bool_exp!] + author: String_comparison_exp + config_path: String_comparison_exp + config_schema: jsonb_comparison_exp + cvars: String_array_comparison_exp + description: String_comparison_exp + game_modes: game_mode_plugins_bool_exp + game_modes_aggregate: game_mode_plugins_aggregate_bool_exp + homepage: String_comparison_exp + hot_swappable: Boolean_comparison_exp + install_state: String_comparison_exp + installed_node_count: Int_comparison_exp + kind: e_game_plugin_kinds_enum_comparison_exp + name: String_comparison_exp + node_installs: game_server_node_plugins_bool_exp + node_installs_aggregate: game_server_node_plugins_aggregate_bool_exp + pairs_with: String_array_comparison_exp + panel: jsonb_comparison_exp + requires_server_guidelines_disabled: Boolean_comparison_exp + requires_service: String_comparison_exp + slug: String_comparison_exp + source: String_comparison_exp + synced_at: timestamptz_comparison_exp + tags: String_array_comparison_exp + target_node_count: Int_comparison_exp + verified: Boolean_comparison_exp + versions: game_plugin_versions_bool_exp + versions_aggregate: game_plugin_versions_aggregate_bool_exp + wiring: jsonb_comparison_exp +} + +""" +unique or primary key constraints on table "game_plugins" +""" +enum game_plugins_constraint { + """ + unique or primary key constraint on columns "slug" + """ + game_plugins_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input game_plugins_delete_at_path_input { + config_schema: [String!] + panel: [String!] + wiring: [String!] +} + +""" +delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array +""" +input game_plugins_delete_elem_input { + config_schema: Int + panel: Int + wiring: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input game_plugins_delete_key_input { + config_schema: String + panel: String + wiring: String +} + +""" +input type for inserting data into table "game_plugins" +""" +input game_plugins_insert_input { + author: String + config_path: String + config_schema: jsonb + cvars: [String!] + description: String + game_modes: game_mode_plugins_arr_rel_insert_input + homepage: String + hot_swappable: Boolean + kind: e_game_plugin_kinds_enum + name: String + node_installs: game_server_node_plugins_arr_rel_insert_input + pairs_with: [String!] + panel: jsonb + requires_server_guidelines_disabled: Boolean + requires_service: String + slug: String + source: String + synced_at: timestamptz + tags: [String!] + verified: Boolean + versions: game_plugin_versions_arr_rel_insert_input + wiring: jsonb +} + +"""aggregate max on columns""" +type game_plugins_max_fields { + author: String + config_path: String + cvars: [String!] + description: String + homepage: String + + """Installed | Partial | Pending | Failed | Manual | NotInstalled""" + install_state: String + + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + name: String + pairs_with: [String!] + requires_service: String + slug: String + source: String + synced_at: timestamptz + tags: [String!] + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +"""aggregate min on columns""" +type game_plugins_min_fields { + author: String + config_path: String + cvars: [String!] + description: String + homepage: String + + """Installed | Partial | Pending | Failed | Manual | NotInstalled""" + install_state: String + + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + name: String + pairs_with: [String!] + requires_service: String + slug: String + source: String + synced_at: timestamptz + tags: [String!] + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +""" +response of any mutation on the table "game_plugins" +""" +type game_plugins_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [game_plugins!]! +} + +""" +input type for inserting object relation for remote table "game_plugins" +""" +input game_plugins_obj_rel_insert_input { + data: game_plugins_insert_input! + + """upsert condition""" + on_conflict: game_plugins_on_conflict +} + +""" +on_conflict condition type for table "game_plugins" +""" +input game_plugins_on_conflict { + constraint: game_plugins_constraint! + update_columns: [game_plugins_update_column!]! = [] + where: game_plugins_bool_exp +} + +"""Ordering options when selecting data from "game_plugins".""" +input game_plugins_order_by { + author: order_by + config_path: order_by + config_schema: order_by + cvars: order_by + description: order_by + game_modes_aggregate: game_mode_plugins_aggregate_order_by + homepage: order_by + hot_swappable: order_by + install_state: order_by + installed_node_count: order_by + kind: order_by + name: order_by + node_installs_aggregate: game_server_node_plugins_aggregate_order_by + pairs_with: order_by + panel: order_by + requires_server_guidelines_disabled: order_by + requires_service: order_by + slug: order_by + source: order_by + synced_at: order_by + tags: order_by + target_node_count: order_by + verified: order_by + versions_aggregate: game_plugin_versions_aggregate_order_by + wiring: order_by +} + +"""primary key columns input for table: game_plugins""" +input game_plugins_pk_columns_input { + slug: String! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input game_plugins_prepend_input { + config_schema: jsonb + panel: jsonb + wiring: jsonb +} + +""" +select columns of table "game_plugins" +""" +enum game_plugins_select_column { + """column name""" + author + + """column name""" + config_path + + """column name""" + config_schema + + """column name""" + cvars + + """column name""" + description + + """column name""" + homepage + + """column name""" + hot_swappable + + """column name""" + kind + + """column name""" + name + + """column name""" + pairs_with + + """column name""" + panel + + """column name""" + requires_server_guidelines_disabled + + """column name""" + requires_service + + """column name""" + slug + + """column name""" + source + + """column name""" + synced_at + + """column name""" + tags + + """column name""" + verified + + """column name""" + wiring +} + +""" +input type for updating data in table "game_plugins" +""" +input game_plugins_set_input { + author: String + config_path: String + config_schema: jsonb + cvars: [String!] + description: String + homepage: String + hot_swappable: Boolean + kind: e_game_plugin_kinds_enum + name: String + pairs_with: [String!] + panel: jsonb + requires_server_guidelines_disabled: Boolean + requires_service: String + slug: String + source: String + synced_at: timestamptz + tags: [String!] + verified: Boolean + wiring: jsonb +} + +"""aggregate stddev on columns""" +type game_plugins_stddev_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +"""aggregate stddev_pop on columns""" +type game_plugins_stddev_pop_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +"""aggregate stddev_samp on columns""" +type game_plugins_stddev_samp_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +""" +Streaming cursor of the table "game_plugins" +""" +input game_plugins_stream_cursor_input { + """Stream column input with initial value""" + initial_value: game_plugins_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input game_plugins_stream_cursor_value_input { + author: String + config_path: String + config_schema: jsonb + cvars: [String!] + description: String + homepage: String + hot_swappable: Boolean + kind: e_game_plugin_kinds_enum + name: String + pairs_with: [String!] + panel: jsonb + requires_server_guidelines_disabled: Boolean + requires_service: String + slug: String + source: String + synced_at: timestamptz + tags: [String!] + verified: Boolean + wiring: jsonb +} + +"""aggregate sum on columns""" +type game_plugins_sum_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +""" +update columns of table "game_plugins" +""" +enum game_plugins_update_column { + """column name""" + author + + """column name""" + config_path + + """column name""" + config_schema + + """column name""" + cvars + + """column name""" + description + + """column name""" + homepage + + """column name""" + hot_swappable + + """column name""" + kind + + """column name""" + name + + """column name""" + pairs_with + + """column name""" + panel + + """column name""" + requires_server_guidelines_disabled + + """column name""" + requires_service + + """column name""" + slug + + """column name""" + source + + """column name""" + synced_at + + """column name""" + tags + + """column name""" + verified + + """column name""" + wiring +} + +input game_plugins_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_plugins_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_plugins_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: game_plugins_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_plugins_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_plugins_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_plugins_set_input + + """filter the rows which have to be updated""" + where: game_plugins_bool_exp! +} + +"""aggregate var_pop on columns""" +type game_plugins_var_pop_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +"""aggregate var_samp on columns""" +type game_plugins_var_samp_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +"""aggregate variance on columns""" +type game_plugins_variance_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +""" +columns and relationships of "game_server_node_plugins" +""" +type game_server_node_plugins { + channel: e_game_plugin_channels_enum! + created_at: timestamptz! + detected: Boolean! + detected_version: String + + """An object relationship""" + game_server_node: game_server_nodes! + game_server_node_id: String! + id: uuid! + installed_at: timestamptz + last_error: String + + """An object relationship""" + plugin: game_plugins + plugin_slug: String! + runtime: e_plugin_runtimes_enum! + source: String! + status: e_game_plugin_install_statuses_enum! + updated_at: timestamptz! + version: String +} + +""" +aggregated selection of "game_server_node_plugins" +""" +type game_server_node_plugins_aggregate { + aggregate: game_server_node_plugins_aggregate_fields + nodes: [game_server_node_plugins!]! +} + +input game_server_node_plugins_aggregate_bool_exp { + bool_and: game_server_node_plugins_aggregate_bool_exp_bool_and + bool_or: game_server_node_plugins_aggregate_bool_exp_bool_or + count: game_server_node_plugins_aggregate_bool_exp_count +} + +input game_server_node_plugins_aggregate_bool_exp_bool_and { + arguments: game_server_node_plugins_select_column_game_server_node_plugins_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: game_server_node_plugins_bool_exp + predicate: Boolean_comparison_exp! +} + +input game_server_node_plugins_aggregate_bool_exp_bool_or { + arguments: game_server_node_plugins_select_column_game_server_node_plugins_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: game_server_node_plugins_bool_exp + predicate: Boolean_comparison_exp! +} + +input game_server_node_plugins_aggregate_bool_exp_count { + arguments: [game_server_node_plugins_select_column!] + distinct: Boolean + filter: game_server_node_plugins_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "game_server_node_plugins" +""" +type game_server_node_plugins_aggregate_fields { + count(columns: [game_server_node_plugins_select_column!], distinct: Boolean): Int! + max: game_server_node_plugins_max_fields + min: game_server_node_plugins_min_fields +} + +""" +order by aggregate values of table "game_server_node_plugins" +""" +input game_server_node_plugins_aggregate_order_by { + count: order_by + max: game_server_node_plugins_max_order_by + min: game_server_node_plugins_min_order_by +} + +""" +input type for inserting array relation for remote table "game_server_node_plugins" +""" +input game_server_node_plugins_arr_rel_insert_input { + data: [game_server_node_plugins_insert_input!]! + + """upsert condition""" + on_conflict: game_server_node_plugins_on_conflict +} + +""" +Boolean expression to filter rows from the table "game_server_node_plugins". All fields are combined with a logical 'AND'. +""" +input game_server_node_plugins_bool_exp { + _and: [game_server_node_plugins_bool_exp!] + _not: game_server_node_plugins_bool_exp + _or: [game_server_node_plugins_bool_exp!] + channel: e_game_plugin_channels_enum_comparison_exp + created_at: timestamptz_comparison_exp + detected: Boolean_comparison_exp + detected_version: String_comparison_exp + game_server_node: game_server_nodes_bool_exp + game_server_node_id: String_comparison_exp + id: uuid_comparison_exp + installed_at: timestamptz_comparison_exp + last_error: String_comparison_exp + plugin: game_plugins_bool_exp + plugin_slug: String_comparison_exp + runtime: e_plugin_runtimes_enum_comparison_exp + source: String_comparison_exp + status: e_game_plugin_install_statuses_enum_comparison_exp + updated_at: timestamptz_comparison_exp + version: String_comparison_exp +} + +""" +unique or primary key constraints on table "game_server_node_plugins" +""" +enum game_server_node_plugins_constraint { + """ + unique or primary key constraint on columns "game_server_node_id", "plugin_slug" + """ + game_server_node_plugins_node_plugin_key + + """ + unique or primary key constraint on columns "id" + """ + game_server_node_plugins_pkey +} + +""" +input type for inserting data into table "game_server_node_plugins" +""" +input game_server_node_plugins_insert_input { + channel: e_game_plugin_channels_enum + created_at: timestamptz + detected: Boolean + detected_version: String + game_server_node: game_server_nodes_obj_rel_insert_input + game_server_node_id: String + id: uuid + installed_at: timestamptz + last_error: String + plugin: game_plugins_obj_rel_insert_input + plugin_slug: String + runtime: e_plugin_runtimes_enum + source: String + status: e_game_plugin_install_statuses_enum + updated_at: timestamptz + version: String +} + +"""aggregate max on columns""" +type game_server_node_plugins_max_fields { + created_at: timestamptz + detected_version: String + game_server_node_id: String + id: uuid + installed_at: timestamptz + last_error: String + plugin_slug: String + source: String + updated_at: timestamptz + version: String +} + +""" +order by max() on columns of table "game_server_node_plugins" +""" +input game_server_node_plugins_max_order_by { + created_at: order_by + detected_version: order_by + game_server_node_id: order_by + id: order_by + installed_at: order_by + last_error: order_by + plugin_slug: order_by + source: order_by + updated_at: order_by + version: order_by +} + +"""aggregate min on columns""" +type game_server_node_plugins_min_fields { + created_at: timestamptz + detected_version: String + game_server_node_id: String + id: uuid + installed_at: timestamptz + last_error: String + plugin_slug: String + source: String + updated_at: timestamptz + version: String +} + +""" +order by min() on columns of table "game_server_node_plugins" +""" +input game_server_node_plugins_min_order_by { + created_at: order_by + detected_version: order_by + game_server_node_id: order_by + id: order_by + installed_at: order_by + last_error: order_by + plugin_slug: order_by + source: order_by + updated_at: order_by + version: order_by +} + +""" +response of any mutation on the table "game_server_node_plugins" +""" +type game_server_node_plugins_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [game_server_node_plugins!]! +} + +""" +on_conflict condition type for table "game_server_node_plugins" +""" +input game_server_node_plugins_on_conflict { + constraint: game_server_node_plugins_constraint! + update_columns: [game_server_node_plugins_update_column!]! = [] + where: game_server_node_plugins_bool_exp +} + +"""Ordering options when selecting data from "game_server_node_plugins".""" +input game_server_node_plugins_order_by { + channel: order_by + created_at: order_by + detected: order_by + detected_version: order_by + game_server_node: game_server_nodes_order_by + game_server_node_id: order_by + id: order_by + installed_at: order_by + last_error: order_by + plugin: game_plugins_order_by + plugin_slug: order_by + runtime: order_by + source: order_by + status: order_by + updated_at: order_by + version: order_by +} + +"""primary key columns input for table: game_server_node_plugins""" +input game_server_node_plugins_pk_columns_input { + id: uuid! +} + +""" +select columns of table "game_server_node_plugins" +""" +enum game_server_node_plugins_select_column { + """column name""" + channel + + """column name""" + created_at + + """column name""" + detected + + """column name""" + detected_version + + """column name""" + game_server_node_id + + """column name""" + id + + """column name""" + installed_at + + """column name""" + last_error + + """column name""" + plugin_slug + + """column name""" + runtime + + """column name""" + source + + """column name""" + status + + """column name""" + updated_at + + """column name""" + version +} + +""" +select "game_server_node_plugins_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_server_node_plugins" +""" +enum game_server_node_plugins_select_column_game_server_node_plugins_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + detected +} + +""" +select "game_server_node_plugins_aggregate_bool_exp_bool_or_arguments_columns" columns of table "game_server_node_plugins" +""" +enum game_server_node_plugins_select_column_game_server_node_plugins_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + detected +} + +""" +input type for updating data in table "game_server_node_plugins" +""" +input game_server_node_plugins_set_input { + channel: e_game_plugin_channels_enum + created_at: timestamptz + detected: Boolean + detected_version: String + game_server_node_id: String + id: uuid + installed_at: timestamptz + last_error: String + plugin_slug: String + runtime: e_plugin_runtimes_enum + source: String + status: e_game_plugin_install_statuses_enum + updated_at: timestamptz + version: String +} + +""" +Streaming cursor of the table "game_server_node_plugins" +""" +input game_server_node_plugins_stream_cursor_input { + """Stream column input with initial value""" + initial_value: game_server_node_plugins_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input game_server_node_plugins_stream_cursor_value_input { + channel: e_game_plugin_channels_enum + created_at: timestamptz + detected: Boolean + detected_version: String + game_server_node_id: String + id: uuid + installed_at: timestamptz + last_error: String + plugin_slug: String + runtime: e_plugin_runtimes_enum + source: String + status: e_game_plugin_install_statuses_enum + updated_at: timestamptz + version: String +} + +""" +update columns of table "game_server_node_plugins" +""" +enum game_server_node_plugins_update_column { + """column name""" + channel + + """column name""" + created_at + + """column name""" + detected + + """column name""" + detected_version + + """column name""" + game_server_node_id + + """column name""" + id + + """column name""" + installed_at + + """column name""" + last_error + + """column name""" + plugin_slug + + """column name""" + runtime + + """column name""" + source + + """column name""" + status + + """column name""" + updated_at + + """column name""" + version +} + +input game_server_node_plugins_updates { + """sets the columns of the filtered rows to the given values""" + _set: game_server_node_plugins_set_input + + """filter the rows which have to be updated""" + where: game_server_node_plugins_bool_exp! +} + """ columns and relationships of "game_server_nodes" """ @@ -19342,6 +22658,43 @@ type game_server_nodes { A computed field, executes function "game_server_node_plugin_supported" """ plugin_supported: Boolean + + """An array relationship""" + plugins( + """distinct select on columns""" + distinct_on: [game_server_node_plugins_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: [game_server_node_plugins_order_by!] + + """filter the rows returned""" + where: game_server_node_plugins_bool_exp + ): [game_server_node_plugins!]! + + """An aggregate relationship""" + plugins_aggregate( + """distinct select on columns""" + distinct_on: [game_server_node_plugins_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: [game_server_node_plugins_order_by!] + + """filter the rows returned""" + where: game_server_node_plugins_bool_exp + ): game_server_node_plugins_aggregate! + plugins_synced_at: timestamptz public_ip: inet region: String @@ -19577,6 +22930,9 @@ input game_server_nodes_bool_exp { pin_plugin_version: String_comparison_exp pinned_version: game_versions_bool_exp plugin_supported: Boolean_comparison_exp + plugins: game_server_node_plugins_bool_exp + plugins_aggregate: game_server_node_plugins_aggregate_bool_exp + plugins_synced_at: timestamptz_comparison_exp public_ip: inet_comparison_exp region: String_comparison_exp servers: servers_bool_exp @@ -19698,6 +23054,8 @@ input game_server_nodes_insert_input { pin_plugin_runtime: String pin_plugin_version: String pinned_version: game_versions_obj_rel_insert_input + plugins: game_server_node_plugins_arr_rel_insert_input + plugins_synced_at: timestamptz public_ip: inet region: String servers: servers_arr_rel_insert_input @@ -19735,6 +23093,7 @@ type game_server_nodes_max_fields { pin_build_id: Int pin_plugin_runtime: String pin_plugin_version: String + plugins_synced_at: timestamptz region: String shader_bake_progress: numeric shader_bake_progress_stage: String @@ -19768,6 +23127,7 @@ input game_server_nodes_max_order_by { pin_build_id: order_by pin_plugin_runtime: order_by pin_plugin_version: order_by + plugins_synced_at: order_by region: order_by shader_bake_progress: order_by shader_bake_progress_stage: order_by @@ -19798,6 +23158,7 @@ type game_server_nodes_min_fields { pin_build_id: Int pin_plugin_runtime: String pin_plugin_version: String + plugins_synced_at: timestamptz region: String shader_bake_progress: numeric shader_bake_progress_stage: String @@ -19831,6 +23192,7 @@ input game_server_nodes_min_order_by { pin_build_id: order_by pin_plugin_runtime: order_by pin_plugin_version: order_by + plugins_synced_at: order_by region: order_by shader_bake_progress: order_by shader_bake_progress_stage: order_by @@ -19906,6 +23268,8 @@ input game_server_nodes_order_by { pin_plugin_version: order_by pinned_version: game_versions_order_by plugin_supported: order_by + plugins_aggregate: game_server_node_plugins_aggregate_order_by + plugins_synced_at: order_by public_ip: order_by region: order_by servers_aggregate: servers_aggregate_order_by @@ -20030,6 +23394,9 @@ enum game_server_nodes_select_column { """column name""" pin_plugin_version + """column name""" + plugins_synced_at + """column name""" public_ip @@ -20158,6 +23525,7 @@ input game_server_nodes_set_input { pin_build_id: Int pin_plugin_runtime: String pin_plugin_version: String + plugins_synced_at: timestamptz public_ip: inet region: String shader_bake_progress: numeric @@ -20343,6 +23711,7 @@ input game_server_nodes_stream_cursor_value_input { pin_build_id: Int pin_plugin_runtime: String pin_plugin_version: String + plugins_synced_at: timestamptz public_ip: inet region: String shader_bake_progress: numeric @@ -20491,6 +23860,9 @@ enum game_server_nodes_update_column { """column name""" pin_plugin_version + """column name""" + plugins_synced_at + """column name""" public_ip @@ -33702,6 +37074,10 @@ type match_options { check_in_setting: e_check_in_settings_enum! coaches: Boolean! default_models: Boolean + + """An object relationship""" + game_mode: game_modes + game_mode_id: uuid halftime_pausematch: Boolean! """ @@ -33786,6 +37162,33 @@ type match_options_aggregate { nodes: [match_options!]! } +input match_options_aggregate_bool_exp { + bool_and: match_options_aggregate_bool_exp_bool_and + bool_or: match_options_aggregate_bool_exp_bool_or + count: match_options_aggregate_bool_exp_count +} + +input match_options_aggregate_bool_exp_bool_and { + arguments: match_options_select_column_match_options_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: match_options_bool_exp + predicate: Boolean_comparison_exp! +} + +input match_options_aggregate_bool_exp_bool_or { + arguments: match_options_select_column_match_options_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: match_options_bool_exp + predicate: Boolean_comparison_exp! +} + +input match_options_aggregate_bool_exp_count { + arguments: [match_options_select_column!] + distinct: Boolean + filter: match_options_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "match_options" """ @@ -33803,6 +37206,33 @@ type match_options_aggregate_fields { variance: match_options_variance_fields } +""" +order by aggregate values of table "match_options" +""" +input match_options_aggregate_order_by { + avg: match_options_avg_order_by + count: order_by + max: match_options_max_order_by + min: match_options_min_order_by + stddev: match_options_stddev_order_by + stddev_pop: match_options_stddev_pop_order_by + stddev_samp: match_options_stddev_samp_order_by + sum: match_options_sum_order_by + var_pop: match_options_var_pop_order_by + var_samp: match_options_var_samp_order_by + variance: match_options_variance_order_by +} + +""" +input type for inserting array relation for remote table "match_options" +""" +input match_options_arr_rel_insert_input { + data: [match_options_insert_input!]! + + """upsert condition""" + on_conflict: match_options_on_conflict +} + """aggregate avg on columns""" type match_options_avg_fields { auto_cancel_duration: Float @@ -33815,6 +37245,20 @@ type match_options_avg_fields { veto_pick_timeout: Float } +""" +order by avg() on columns of table "match_options" +""" +input match_options_avg_order_by { + auto_cancel_duration: order_by + best_of: order_by + live_match_timeout: order_by + mr: order_by + number_of_substitutes: order_by + round_restart_delay: order_by + tv_delay: order_by + veto_pick_timeout: order_by +} + """ Boolean expression to filter rows from the table "match_options". All fields are combined with a logical 'AND'. """ @@ -33830,6 +37274,8 @@ input match_options_bool_exp { check_in_setting: e_check_in_settings_enum_comparison_exp coaches: Boolean_comparison_exp default_models: Boolean_comparison_exp + game_mode: game_modes_bool_exp + game_mode_id: uuid_comparison_exp halftime_pausematch: Boolean_comparison_exp has_active_matches: Boolean_comparison_exp id: uuid_comparison_exp @@ -33896,6 +37342,8 @@ input match_options_insert_input { check_in_setting: e_check_in_settings_enum coaches: Boolean default_models: Boolean + game_mode: game_modes_obj_rel_insert_input + game_mode_id: uuid halftime_pausematch: Boolean id: uuid invite_code: String @@ -33928,6 +37376,7 @@ input match_options_insert_input { type match_options_max_fields { auto_cancel_duration: Int best_of: Int + game_mode_id: uuid id: uuid invite_code: String live_match_timeout: Int @@ -33940,10 +37389,30 @@ type match_options_max_fields { veto_pick_timeout: Int } +""" +order by max() on columns of table "match_options" +""" +input match_options_max_order_by { + auto_cancel_duration: order_by + best_of: order_by + game_mode_id: order_by + id: order_by + invite_code: order_by + live_match_timeout: order_by + map_pool_id: order_by + mr: order_by + number_of_substitutes: order_by + regions: order_by + round_restart_delay: order_by + tv_delay: order_by + veto_pick_timeout: order_by +} + """aggregate min on columns""" type match_options_min_fields { auto_cancel_duration: Int best_of: Int + game_mode_id: uuid id: uuid invite_code: String live_match_timeout: Int @@ -33956,6 +37425,25 @@ type match_options_min_fields { veto_pick_timeout: Int } +""" +order by min() on columns of table "match_options" +""" +input match_options_min_order_by { + auto_cancel_duration: order_by + best_of: order_by + game_mode_id: order_by + id: order_by + invite_code: order_by + live_match_timeout: order_by + map_pool_id: order_by + mr: order_by + number_of_substitutes: order_by + regions: order_by + round_restart_delay: order_by + tv_delay: order_by + veto_pick_timeout: order_by +} + """ response of any mutation on the table "match_options" """ @@ -33996,6 +37484,8 @@ input match_options_order_by { check_in_setting: order_by coaches: order_by default_models: order_by + game_mode: game_modes_order_by + game_mode_id: order_by halftime_pausematch: order_by has_active_matches: order_by id: order_by @@ -34058,6 +37548,9 @@ enum match_options_select_column { """column name""" default_models + """column name""" + game_mode_id + """column name""" halftime_pausematch @@ -34122,6 +37615,82 @@ enum match_options_select_column { veto_pick_timeout } +""" +select "match_options_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_options" +""" +enum match_options_select_column_match_options_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + auto_cancellation + + """column name""" + camera_allow_teammates + + """column name""" + camera_required + + """column name""" + coaches + + """column name""" + default_models + + """column name""" + halftime_pausematch + + """column name""" + knife_round + + """column name""" + map_veto + + """column name""" + overtime + + """column name""" + prefer_dedicated_server + + """column name""" + region_veto +} + +""" +select "match_options_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_options" +""" +enum match_options_select_column_match_options_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + auto_cancellation + + """column name""" + camera_allow_teammates + + """column name""" + camera_required + + """column name""" + coaches + + """column name""" + default_models + + """column name""" + halftime_pausematch + + """column name""" + knife_round + + """column name""" + map_veto + + """column name""" + overtime + + """column name""" + prefer_dedicated_server + + """column name""" + region_veto +} + """ input type for updating data in table "match_options" """ @@ -34134,6 +37703,7 @@ input match_options_set_input { check_in_setting: e_check_in_settings_enum coaches: Boolean default_models: Boolean + game_mode_id: uuid halftime_pausematch: Boolean id: uuid invite_code: String @@ -34169,6 +37739,20 @@ type match_options_stddev_fields { veto_pick_timeout: Float } +""" +order by stddev() on columns of table "match_options" +""" +input match_options_stddev_order_by { + auto_cancel_duration: order_by + best_of: order_by + live_match_timeout: order_by + mr: order_by + number_of_substitutes: order_by + round_restart_delay: order_by + tv_delay: order_by + veto_pick_timeout: order_by +} + """aggregate stddev_pop on columns""" type match_options_stddev_pop_fields { auto_cancel_duration: Float @@ -34181,6 +37765,20 @@ type match_options_stddev_pop_fields { veto_pick_timeout: Float } +""" +order by stddev_pop() on columns of table "match_options" +""" +input match_options_stddev_pop_order_by { + auto_cancel_duration: order_by + best_of: order_by + live_match_timeout: order_by + mr: order_by + number_of_substitutes: order_by + round_restart_delay: order_by + tv_delay: order_by + veto_pick_timeout: order_by +} + """aggregate stddev_samp on columns""" type match_options_stddev_samp_fields { auto_cancel_duration: Float @@ -34193,6 +37791,20 @@ type match_options_stddev_samp_fields { veto_pick_timeout: Float } +""" +order by stddev_samp() on columns of table "match_options" +""" +input match_options_stddev_samp_order_by { + auto_cancel_duration: order_by + best_of: order_by + live_match_timeout: order_by + mr: order_by + number_of_substitutes: order_by + round_restart_delay: order_by + tv_delay: order_by + veto_pick_timeout: order_by +} + """ Streaming cursor of the table "match_options" """ @@ -34214,6 +37826,7 @@ input match_options_stream_cursor_value_input { check_in_setting: e_check_in_settings_enum coaches: Boolean default_models: Boolean + game_mode_id: uuid halftime_pausematch: Boolean id: uuid invite_code: String @@ -34249,6 +37862,20 @@ type match_options_sum_fields { veto_pick_timeout: Int } +""" +order by sum() on columns of table "match_options" +""" +input match_options_sum_order_by { + auto_cancel_duration: order_by + best_of: order_by + live_match_timeout: order_by + mr: order_by + number_of_substitutes: order_by + round_restart_delay: order_by + tv_delay: order_by + veto_pick_timeout: order_by +} + """ update columns of table "match_options" """ @@ -34277,6 +37904,9 @@ enum match_options_update_column { """column name""" default_models + """column name""" + game_mode_id + """column name""" halftime_pausematch @@ -34364,6 +37994,20 @@ type match_options_var_pop_fields { veto_pick_timeout: Float } +""" +order by var_pop() on columns of table "match_options" +""" +input match_options_var_pop_order_by { + auto_cancel_duration: order_by + best_of: order_by + live_match_timeout: order_by + mr: order_by + number_of_substitutes: order_by + round_restart_delay: order_by + tv_delay: order_by + veto_pick_timeout: order_by +} + """aggregate var_samp on columns""" type match_options_var_samp_fields { auto_cancel_duration: Float @@ -34376,6 +38020,20 @@ type match_options_var_samp_fields { veto_pick_timeout: Float } +""" +order by var_samp() on columns of table "match_options" +""" +input match_options_var_samp_order_by { + auto_cancel_duration: order_by + best_of: order_by + live_match_timeout: order_by + mr: order_by + number_of_substitutes: order_by + round_restart_delay: order_by + tv_delay: order_by + veto_pick_timeout: order_by +} + """aggregate variance on columns""" type match_options_variance_fields { auto_cancel_duration: Float @@ -34388,6 +38046,20 @@ type match_options_variance_fields { veto_pick_timeout: Float } +""" +order by variance() on columns of table "match_options" +""" +input match_options_variance_order_by { + auto_cancel_duration: order_by + best_of: order_by + live_match_timeout: order_by + mr: order_by + number_of_substitutes: order_by + round_restart_delay: order_by + tv_delay: order_by + veto_pick_timeout: order_by +} + """ columns and relationships of "match_region_veto_picks" """ @@ -35586,6 +39258,7 @@ type matches { A computed field, executes function "get_match_connection_string" """ connection_string: String + counts_toward_ranking: Boolean! created_at: timestamptz! """ @@ -36346,9 +40019,25 @@ type matches_aggregate { } input matches_aggregate_bool_exp { + bool_and: matches_aggregate_bool_exp_bool_and + bool_or: matches_aggregate_bool_exp_bool_or count: matches_aggregate_bool_exp_count } +input matches_aggregate_bool_exp_bool_and { + arguments: matches_select_column_matches_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: matches_bool_exp + predicate: Boolean_comparison_exp! +} + +input matches_aggregate_bool_exp_bool_or { + arguments: matches_select_column_matches_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: matches_bool_exp + predicate: Boolean_comparison_exp! +} + input matches_aggregate_bool_exp_count { arguments: [matches_select_column!] distinct: Boolean @@ -36441,6 +40130,7 @@ input matches_bool_exp { clutches_aggregate: v_match_clutches_aggregate_bool_exp connection_link: String_comparison_exp connection_string: String_comparison_exp + counts_toward_ranking: Boolean_comparison_exp created_at: timestamptz_comparison_exp current_match_map_id: uuid_comparison_exp demos: match_map_demos_bool_exp @@ -36569,6 +40259,7 @@ input type for inserting data into table "matches" input matches_insert_input { cancels_at: timestamptz clutches: v_match_clutches_arr_rel_insert_input + counts_toward_ranking: Boolean created_at: timestamptz demos: match_map_demos_arr_rel_insert_input draft_games: draft_games_arr_rel_insert_input @@ -36893,6 +40584,7 @@ input matches_order_by { clutches_aggregate: v_match_clutches_aggregate_order_by connection_link: order_by connection_string: order_by + counts_toward_ranking: order_by created_at: order_by current_match_map_id: order_by demos_aggregate: match_map_demos_aggregate_order_by @@ -36974,6 +40666,9 @@ enum matches_select_column { """column name""" cancels_at + """column name""" + counts_toward_ranking + """column name""" created_at @@ -37038,11 +40733,28 @@ enum matches_select_column { winning_lineup_id } +""" +select "matches_aggregate_bool_exp_bool_and_arguments_columns" columns of table "matches" +""" +enum matches_select_column_matches_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + counts_toward_ranking +} + +""" +select "matches_aggregate_bool_exp_bool_or_arguments_columns" columns of table "matches" +""" +enum matches_select_column_matches_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + counts_toward_ranking +} + """ input type for updating data in table "matches" """ input matches_set_input { cancels_at: timestamptz + counts_toward_ranking: Boolean created_at: timestamptz ended_at: timestamptz external_id: String @@ -37142,6 +40854,7 @@ input matches_stream_cursor_input { """Initial value of the column from where the streaming should start""" input matches_stream_cursor_value_input { cancels_at: timestamptz + counts_toward_ranking: Boolean created_at: timestamptz effective_at: timestamptz ended_at: timestamptz @@ -37193,6 +40906,9 @@ enum matches_update_column { """column name""" cancels_at + """column name""" + counts_toward_ranking + """column name""" created_at @@ -37488,6 +41204,9 @@ type mutation_root { """accept team invite""" acceptInvite(invite_id: uuid!, type: String!): SuccessOutput + """Add a game plugin the registry does not carry, from a release URL""" + addCustomGamePlugin(description: String, installPath: String, layout: String, name: String, runtime: String!, slug: String, url: String!, version: String): AddCustomGamePluginOutput + """addDraftPlayer""" addDraftPlayer(draftGameId: uuid!, lineup: Int, steamId: String!): SuccessOutput @@ -38001,6 +41720,45 @@ type mutation_root { """ delete_e_game_cfg_types_by_pk(value: String!): e_game_cfg_types + """ + delete data from the table: "e_game_plugin_channels" + """ + delete_e_game_plugin_channels( + """filter the rows which have to be deleted""" + where: e_game_plugin_channels_bool_exp! + ): e_game_plugin_channels_mutation_response + + """ + delete single row from the table: "e_game_plugin_channels" + """ + delete_e_game_plugin_channels_by_pk(value: String!): e_game_plugin_channels + + """ + delete data from the table: "e_game_plugin_install_statuses" + """ + delete_e_game_plugin_install_statuses( + """filter the rows which have to be deleted""" + where: e_game_plugin_install_statuses_bool_exp! + ): e_game_plugin_install_statuses_mutation_response + + """ + delete single row from the table: "e_game_plugin_install_statuses" + """ + delete_e_game_plugin_install_statuses_by_pk(value: String!): e_game_plugin_install_statuses + + """ + delete data from the table: "e_game_plugin_kinds" + """ + delete_e_game_plugin_kinds( + """filter the rows which have to be deleted""" + where: e_game_plugin_kinds_bool_exp! + ): e_game_plugin_kinds_mutation_response + + """ + delete single row from the table: "e_game_plugin_kinds" + """ + delete_e_game_plugin_kinds_by_pk(value: String!): e_game_plugin_kinds + """ delete data from the table: "e_game_server_node_statuses" """ @@ -38547,6 +42305,84 @@ type mutation_root { """ delete_friends_by_pk(other_player_steam_id: bigint!, player_steam_id: bigint!): friends + """ + delete data from the table: "game_mode_plugins" + """ + delete_game_mode_plugins( + """filter the rows which have to be deleted""" + where: game_mode_plugins_bool_exp! + ): game_mode_plugins_mutation_response + + """ + delete single row from the table: "game_mode_plugins" + """ + delete_game_mode_plugins_by_pk(game_mode_id: uuid!, plugin_slug: String!): game_mode_plugins + + """ + delete data from the table: "game_modes" + """ + delete_game_modes( + """filter the rows which have to be deleted""" + where: game_modes_bool_exp! + ): game_modes_mutation_response + + """ + delete single row from the table: "game_modes" + """ + delete_game_modes_by_pk(id: uuid!): game_modes + + """ + delete data from the table: "game_plugin_installs" + """ + delete_game_plugin_installs( + """filter the rows which have to be deleted""" + where: game_plugin_installs_bool_exp! + ): game_plugin_installs_mutation_response + + """ + delete single row from the table: "game_plugin_installs" + """ + delete_game_plugin_installs_by_pk(plugin_slug: String!): game_plugin_installs + + """ + delete data from the table: "game_plugin_versions" + """ + delete_game_plugin_versions( + """filter the rows which have to be deleted""" + where: game_plugin_versions_bool_exp! + ): game_plugin_versions_mutation_response + + """ + delete single row from the table: "game_plugin_versions" + """ + delete_game_plugin_versions_by_pk(plugin_slug: String!, runtime: e_plugin_runtimes_enum!, version: String!): game_plugin_versions + + """ + delete data from the table: "game_plugins" + """ + delete_game_plugins( + """filter the rows which have to be deleted""" + where: game_plugins_bool_exp! + ): game_plugins_mutation_response + + """ + delete single row from the table: "game_plugins" + """ + delete_game_plugins_by_pk(slug: String!): game_plugins + + """ + delete data from the table: "game_server_node_plugins" + """ + delete_game_server_node_plugins( + """filter the rows which have to be deleted""" + where: game_server_node_plugins_bool_exp! + ): game_server_node_plugins_mutation_response + + """ + delete single row from the table: "game_server_node_plugins" + """ + delete_game_server_node_plugins_by_pk(id: uuid!): game_server_node_plugins + """ delete data from the table: "game_server_nodes" """ @@ -39741,6 +43577,9 @@ type mutation_root { Live pod GSI snapshot — slots, sides, alive/dead. Drives the stream-deck. """ getLiveStreamSpecState(match_id: uuid!): LiveStreamSpecState + + """Fetch a plugin's README from its repository""" + getPluginReadme(runtime: String, slug: String!): PluginReadmeOutput getTestUploadLink: GetTestUploadResponse! """Grant an award to a player or team""" @@ -40318,6 +44157,72 @@ type mutation_root { on_conflict: e_game_cfg_types_on_conflict ): e_game_cfg_types + """ + insert data into the table: "e_game_plugin_channels" + """ + insert_e_game_plugin_channels( + """the rows to be inserted""" + objects: [e_game_plugin_channels_insert_input!]! + + """upsert condition""" + on_conflict: e_game_plugin_channels_on_conflict + ): e_game_plugin_channels_mutation_response + + """ + insert a single row into the table: "e_game_plugin_channels" + """ + insert_e_game_plugin_channels_one( + """the row to be inserted""" + object: e_game_plugin_channels_insert_input! + + """upsert condition""" + on_conflict: e_game_plugin_channels_on_conflict + ): e_game_plugin_channels + + """ + insert data into the table: "e_game_plugin_install_statuses" + """ + insert_e_game_plugin_install_statuses( + """the rows to be inserted""" + objects: [e_game_plugin_install_statuses_insert_input!]! + + """upsert condition""" + on_conflict: e_game_plugin_install_statuses_on_conflict + ): e_game_plugin_install_statuses_mutation_response + + """ + insert a single row into the table: "e_game_plugin_install_statuses" + """ + insert_e_game_plugin_install_statuses_one( + """the row to be inserted""" + object: e_game_plugin_install_statuses_insert_input! + + """upsert condition""" + on_conflict: e_game_plugin_install_statuses_on_conflict + ): e_game_plugin_install_statuses + + """ + insert data into the table: "e_game_plugin_kinds" + """ + insert_e_game_plugin_kinds( + """the rows to be inserted""" + objects: [e_game_plugin_kinds_insert_input!]! + + """upsert condition""" + on_conflict: e_game_plugin_kinds_on_conflict + ): e_game_plugin_kinds_mutation_response + + """ + insert a single row into the table: "e_game_plugin_kinds" + """ + insert_e_game_plugin_kinds_one( + """the row to be inserted""" + object: e_game_plugin_kinds_insert_input! + + """upsert condition""" + on_conflict: e_game_plugin_kinds_on_conflict + ): e_game_plugin_kinds + """ insert data into the table: "e_game_server_node_statuses" """ @@ -41242,6 +45147,138 @@ type mutation_root { on_conflict: friends_on_conflict ): friends + """ + insert data into the table: "game_mode_plugins" + """ + insert_game_mode_plugins( + """the rows to be inserted""" + objects: [game_mode_plugins_insert_input!]! + + """upsert condition""" + on_conflict: game_mode_plugins_on_conflict + ): game_mode_plugins_mutation_response + + """ + insert a single row into the table: "game_mode_plugins" + """ + insert_game_mode_plugins_one( + """the row to be inserted""" + object: game_mode_plugins_insert_input! + + """upsert condition""" + on_conflict: game_mode_plugins_on_conflict + ): game_mode_plugins + + """ + insert data into the table: "game_modes" + """ + insert_game_modes( + """the rows to be inserted""" + objects: [game_modes_insert_input!]! + + """upsert condition""" + on_conflict: game_modes_on_conflict + ): game_modes_mutation_response + + """ + insert a single row into the table: "game_modes" + """ + insert_game_modes_one( + """the row to be inserted""" + object: game_modes_insert_input! + + """upsert condition""" + on_conflict: game_modes_on_conflict + ): game_modes + + """ + insert data into the table: "game_plugin_installs" + """ + insert_game_plugin_installs( + """the rows to be inserted""" + objects: [game_plugin_installs_insert_input!]! + + """upsert condition""" + on_conflict: game_plugin_installs_on_conflict + ): game_plugin_installs_mutation_response + + """ + insert a single row into the table: "game_plugin_installs" + """ + insert_game_plugin_installs_one( + """the row to be inserted""" + object: game_plugin_installs_insert_input! + + """upsert condition""" + on_conflict: game_plugin_installs_on_conflict + ): game_plugin_installs + + """ + insert data into the table: "game_plugin_versions" + """ + insert_game_plugin_versions( + """the rows to be inserted""" + objects: [game_plugin_versions_insert_input!]! + + """upsert condition""" + on_conflict: game_plugin_versions_on_conflict + ): game_plugin_versions_mutation_response + + """ + insert a single row into the table: "game_plugin_versions" + """ + insert_game_plugin_versions_one( + """the row to be inserted""" + object: game_plugin_versions_insert_input! + + """upsert condition""" + on_conflict: game_plugin_versions_on_conflict + ): game_plugin_versions + + """ + insert data into the table: "game_plugins" + """ + insert_game_plugins( + """the rows to be inserted""" + objects: [game_plugins_insert_input!]! + + """upsert condition""" + on_conflict: game_plugins_on_conflict + ): game_plugins_mutation_response + + """ + insert a single row into the table: "game_plugins" + """ + insert_game_plugins_one( + """the row to be inserted""" + object: game_plugins_insert_input! + + """upsert condition""" + on_conflict: game_plugins_on_conflict + ): game_plugins + + """ + insert data into the table: "game_server_node_plugins" + """ + insert_game_server_node_plugins( + """the rows to be inserted""" + objects: [game_server_node_plugins_insert_input!]! + + """upsert condition""" + on_conflict: game_server_node_plugins_on_conflict + ): game_server_node_plugins_mutation_response + + """ + insert a single row into the table: "game_server_node_plugins" + """ + insert_game_server_node_plugins_one( + """the row to be inserted""" + object: game_server_node_plugins_insert_input! + + """upsert condition""" + on_conflict: game_server_node_plugins_on_conflict + ): game_server_node_plugins + """ insert data into the table: "game_server_nodes" """ @@ -43268,6 +47305,9 @@ type mutation_root { on_conflict: v_team_stage_results_on_conflict ): v_team_stage_results + """Install a game plugin into a node's plugin store""" + installGamePlugin(slug: String!, version: String): SuccessOutput + """joinDraftGame""" joinDraftGame(draftGameId: uuid!, inviteCode: String): SuccessOutput @@ -43323,6 +47363,9 @@ type mutation_root { """previewDraftGame""" previewDraftGame(draftGameId: uuid!, inviteCode: String): DraftGamePreviewOutput + """Resolve a game mode into the plugins and cfg a server would load""" + previewGameMode(gameModeId: uuid!): PreviewGameModeOutput + """ Build a multi-segment ClipSpec from a player+preset and queue it via the batch render path (no live demo session required) """ @@ -43362,6 +47405,9 @@ type mutation_root { """Return the progress of the ELO recompute run (admin only).""" recomputePlayerEloStatus: RecomputeEloStatusOutput + + """Re-read which plugins are actually on a node""" + reconcileNodePlugins(nodeId: String!): ReconcileNodePluginsOutput reconnectLive(match_id: uuid!): SuccessOutput """ @@ -43562,11 +47608,17 @@ type mutation_root { swapLineups(match_id: uuid!): SuccessOutput switchLineup(match_id: String!): SuccessOutput switchLiveMatch(from_match_id: uuid!, mode: String!, to_match_id: uuid!): SuccessOutput + + """Pull the game plugin registry into this panel's catalog""" + syncPluginRegistry: SyncPluginRegistryOutput syncSteamFriends: SuccessOutput """Test FACEIT Data + Downloads API connectivity for the current admin""" testFaceitIntegration: FaceitTestOutput testUpload: TestUploadResponse + + """Remove a game plugin from a node's plugin store""" + uninstallGamePlugin(force: Boolean, slug: String!): SuccessOutput unlinkDiscord: SuccessOutput unlinkSteamMatchHistory: SuccessOutput unsanctionServerPlayer(serverId: String, steam_id: String!, type: String!): SanctionResult! @@ -44469,6 +48521,90 @@ type mutation_root { updates: [e_game_cfg_types_updates!]! ): [e_game_cfg_types_mutation_response] + """ + update data of the table: "e_game_plugin_channels" + """ + update_e_game_plugin_channels( + """sets the columns of the filtered rows to the given values""" + _set: e_game_plugin_channels_set_input + + """filter the rows which have to be updated""" + where: e_game_plugin_channels_bool_exp! + ): e_game_plugin_channels_mutation_response + + """ + update single row of the table: "e_game_plugin_channels" + """ + update_e_game_plugin_channels_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_game_plugin_channels_set_input + pk_columns: e_game_plugin_channels_pk_columns_input! + ): e_game_plugin_channels + + """ + update multiples rows of table: "e_game_plugin_channels" + """ + update_e_game_plugin_channels_many( + """updates to execute, in order""" + updates: [e_game_plugin_channels_updates!]! + ): [e_game_plugin_channels_mutation_response] + + """ + update data of the table: "e_game_plugin_install_statuses" + """ + update_e_game_plugin_install_statuses( + """sets the columns of the filtered rows to the given values""" + _set: e_game_plugin_install_statuses_set_input + + """filter the rows which have to be updated""" + where: e_game_plugin_install_statuses_bool_exp! + ): e_game_plugin_install_statuses_mutation_response + + """ + update single row of the table: "e_game_plugin_install_statuses" + """ + update_e_game_plugin_install_statuses_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_game_plugin_install_statuses_set_input + pk_columns: e_game_plugin_install_statuses_pk_columns_input! + ): e_game_plugin_install_statuses + + """ + update multiples rows of table: "e_game_plugin_install_statuses" + """ + update_e_game_plugin_install_statuses_many( + """updates to execute, in order""" + updates: [e_game_plugin_install_statuses_updates!]! + ): [e_game_plugin_install_statuses_mutation_response] + + """ + update data of the table: "e_game_plugin_kinds" + """ + update_e_game_plugin_kinds( + """sets the columns of the filtered rows to the given values""" + _set: e_game_plugin_kinds_set_input + + """filter the rows which have to be updated""" + where: e_game_plugin_kinds_bool_exp! + ): e_game_plugin_kinds_mutation_response + + """ + update single row of the table: "e_game_plugin_kinds" + """ + update_e_game_plugin_kinds_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_game_plugin_kinds_set_input + pk_columns: e_game_plugin_kinds_pk_columns_input! + ): e_game_plugin_kinds + + """ + update multiples rows of table: "e_game_plugin_kinds" + """ + update_e_game_plugin_kinds_many( + """updates to execute, in order""" + updates: [e_game_plugin_kinds_updates!]! + ): [e_game_plugin_kinds_mutation_response] + """ update data of the table: "e_game_server_node_statuses" """ @@ -45681,6 +49817,270 @@ type mutation_root { updates: [friends_updates!]! ): [friends_mutation_response] + """ + update data of the table: "game_mode_plugins" + """ + update_game_mode_plugins( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_mode_plugins_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_mode_plugins_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: game_mode_plugins_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_mode_plugins_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: game_mode_plugins_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_mode_plugins_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_mode_plugins_set_input + + """filter the rows which have to be updated""" + where: game_mode_plugins_bool_exp! + ): game_mode_plugins_mutation_response + + """ + update single row of the table: "game_mode_plugins" + """ + update_game_mode_plugins_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_mode_plugins_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_mode_plugins_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: game_mode_plugins_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_mode_plugins_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: game_mode_plugins_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_mode_plugins_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_mode_plugins_set_input + pk_columns: game_mode_plugins_pk_columns_input! + ): game_mode_plugins + + """ + update multiples rows of table: "game_mode_plugins" + """ + update_game_mode_plugins_many( + """updates to execute, in order""" + updates: [game_mode_plugins_updates!]! + ): [game_mode_plugins_mutation_response] + + """ + update data of the table: "game_modes" + """ + update_game_modes( + """sets the columns of the filtered rows to the given values""" + _set: game_modes_set_input + + """filter the rows which have to be updated""" + where: game_modes_bool_exp! + ): game_modes_mutation_response + + """ + update single row of the table: "game_modes" + """ + update_game_modes_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: game_modes_set_input + pk_columns: game_modes_pk_columns_input! + ): game_modes + + """ + update multiples rows of table: "game_modes" + """ + update_game_modes_many( + """updates to execute, in order""" + updates: [game_modes_updates!]! + ): [game_modes_mutation_response] + + """ + update data of the table: "game_plugin_installs" + """ + update_game_plugin_installs( + """sets the columns of the filtered rows to the given values""" + _set: game_plugin_installs_set_input + + """filter the rows which have to be updated""" + where: game_plugin_installs_bool_exp! + ): game_plugin_installs_mutation_response + + """ + update single row of the table: "game_plugin_installs" + """ + update_game_plugin_installs_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: game_plugin_installs_set_input + pk_columns: game_plugin_installs_pk_columns_input! + ): game_plugin_installs + + """ + update multiples rows of table: "game_plugin_installs" + """ + update_game_plugin_installs_many( + """updates to execute, in order""" + updates: [game_plugin_installs_updates!]! + ): [game_plugin_installs_mutation_response] + + """ + update data of the table: "game_plugin_versions" + """ + update_game_plugin_versions( + """increments the numeric columns with given value of the filtered values""" + _inc: game_plugin_versions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: game_plugin_versions_set_input + + """filter the rows which have to be updated""" + where: game_plugin_versions_bool_exp! + ): game_plugin_versions_mutation_response + + """ + update single row of the table: "game_plugin_versions" + """ + update_game_plugin_versions_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: game_plugin_versions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: game_plugin_versions_set_input + pk_columns: game_plugin_versions_pk_columns_input! + ): game_plugin_versions + + """ + update multiples rows of table: "game_plugin_versions" + """ + update_game_plugin_versions_many( + """updates to execute, in order""" + updates: [game_plugin_versions_updates!]! + ): [game_plugin_versions_mutation_response] + + """ + update data of the table: "game_plugins" + """ + update_game_plugins( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_plugins_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_plugins_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: game_plugins_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_plugins_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_plugins_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_plugins_set_input + + """filter the rows which have to be updated""" + where: game_plugins_bool_exp! + ): game_plugins_mutation_response + + """ + update single row of the table: "game_plugins" + """ + update_game_plugins_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_plugins_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_plugins_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: game_plugins_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_plugins_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_plugins_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_plugins_set_input + pk_columns: game_plugins_pk_columns_input! + ): game_plugins + + """ + update multiples rows of table: "game_plugins" + """ + update_game_plugins_many( + """updates to execute, in order""" + updates: [game_plugins_updates!]! + ): [game_plugins_mutation_response] + + """ + update data of the table: "game_server_node_plugins" + """ + update_game_server_node_plugins( + """sets the columns of the filtered rows to the given values""" + _set: game_server_node_plugins_set_input + + """filter the rows which have to be updated""" + where: game_server_node_plugins_bool_exp! + ): game_server_node_plugins_mutation_response + + """ + update single row of the table: "game_server_node_plugins" + """ + update_game_server_node_plugins_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: game_server_node_plugins_set_input + pk_columns: game_server_node_plugins_pk_columns_input! + ): game_server_node_plugins + + """ + update multiples rows of table: "game_server_node_plugins" + """ + update_game_server_node_plugins_many( + """updates to execute, in order""" + updates: [game_server_node_plugins_updates!]! + ): [game_server_node_plugins_mutation_response] + """ update data of the table: "game_server_nodes" """ @@ -48130,9 +52530,30 @@ type mutation_root { update data of the table: "servers" """ update_servers( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: servers_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: servers_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: servers_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: servers_delete_key_input + """increments the numeric columns with given value of the filtered values""" _inc: servers_inc_input + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: servers_prepend_input + """sets the columns of the filtered rows to the given values""" _set: servers_set_input @@ -48144,9 +52565,30 @@ type mutation_root { update single row of the table: "servers" """ update_servers_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: servers_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: servers_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: servers_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: servers_delete_key_input + """increments the numeric columns with given value of the filtered values""" _inc: servers_inc_input + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: servers_prepend_input + """sets the columns of the filtered rows to the given values""" _set: servers_set_input pk_columns: servers_pk_columns_input! @@ -72521,6 +76963,141 @@ type query_root { """ e_game_cfg_types_by_pk(value: String!): e_game_cfg_types + """ + fetch data from the table: "e_game_plugin_channels" + """ + e_game_plugin_channels( + """distinct select on columns""" + distinct_on: [e_game_plugin_channels_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_game_plugin_channels_order_by!] + + """filter the rows returned""" + where: e_game_plugin_channels_bool_exp + ): [e_game_plugin_channels!]! + + """ + fetch aggregated fields from the table: "e_game_plugin_channels" + """ + e_game_plugin_channels_aggregate( + """distinct select on columns""" + distinct_on: [e_game_plugin_channels_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_game_plugin_channels_order_by!] + + """filter the rows returned""" + where: e_game_plugin_channels_bool_exp + ): e_game_plugin_channels_aggregate! + + """ + fetch data from the table: "e_game_plugin_channels" using primary key columns + """ + e_game_plugin_channels_by_pk(value: String!): e_game_plugin_channels + + """ + fetch data from the table: "e_game_plugin_install_statuses" + """ + e_game_plugin_install_statuses( + """distinct select on columns""" + distinct_on: [e_game_plugin_install_statuses_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_game_plugin_install_statuses_order_by!] + + """filter the rows returned""" + where: e_game_plugin_install_statuses_bool_exp + ): [e_game_plugin_install_statuses!]! + + """ + fetch aggregated fields from the table: "e_game_plugin_install_statuses" + """ + e_game_plugin_install_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_game_plugin_install_statuses_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_game_plugin_install_statuses_order_by!] + + """filter the rows returned""" + where: e_game_plugin_install_statuses_bool_exp + ): e_game_plugin_install_statuses_aggregate! + + """ + fetch data from the table: "e_game_plugin_install_statuses" using primary key columns + """ + e_game_plugin_install_statuses_by_pk(value: String!): e_game_plugin_install_statuses + + """ + fetch data from the table: "e_game_plugin_kinds" + """ + e_game_plugin_kinds( + """distinct select on columns""" + distinct_on: [e_game_plugin_kinds_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_game_plugin_kinds_order_by!] + + """filter the rows returned""" + where: e_game_plugin_kinds_bool_exp + ): [e_game_plugin_kinds!]! + + """ + fetch aggregated fields from the table: "e_game_plugin_kinds" + """ + e_game_plugin_kinds_aggregate( + """distinct select on columns""" + distinct_on: [e_game_plugin_kinds_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_game_plugin_kinds_order_by!] + + """filter the rows returned""" + where: e_game_plugin_kinds_bool_exp + ): e_game_plugin_kinds_aggregate! + + """ + fetch data from the table: "e_game_plugin_kinds" using primary key columns + """ + e_game_plugin_kinds_by_pk(value: String!): e_game_plugin_kinds + """ fetch data from the table: "e_game_server_node_statuses" """ @@ -74383,6 +78960,272 @@ type query_root { """fetch data from the table: "friends" using primary key columns""" friends_by_pk(other_player_steam_id: bigint!, player_steam_id: bigint!): friends + """ + fetch data from the table: "game_mode_plugins" + """ + game_mode_plugins( + """distinct select on columns""" + distinct_on: [game_mode_plugins_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: [game_mode_plugins_order_by!] + + """filter the rows returned""" + where: game_mode_plugins_bool_exp + ): [game_mode_plugins!]! + + """ + fetch aggregated fields from the table: "game_mode_plugins" + """ + game_mode_plugins_aggregate( + """distinct select on columns""" + distinct_on: [game_mode_plugins_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: [game_mode_plugins_order_by!] + + """filter the rows returned""" + where: game_mode_plugins_bool_exp + ): game_mode_plugins_aggregate! + + """ + fetch data from the table: "game_mode_plugins" using primary key columns + """ + game_mode_plugins_by_pk(game_mode_id: uuid!, plugin_slug: String!): game_mode_plugins + + """ + fetch data from the table: "game_modes" + """ + game_modes( + """distinct select on columns""" + distinct_on: [game_modes_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: [game_modes_order_by!] + + """filter the rows returned""" + where: game_modes_bool_exp + ): [game_modes!]! + + """ + fetch aggregated fields from the table: "game_modes" + """ + game_modes_aggregate( + """distinct select on columns""" + distinct_on: [game_modes_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: [game_modes_order_by!] + + """filter the rows returned""" + where: game_modes_bool_exp + ): game_modes_aggregate! + + """fetch data from the table: "game_modes" using primary key columns""" + game_modes_by_pk(id: uuid!): game_modes + + """ + fetch data from the table: "game_plugin_installs" + """ + game_plugin_installs( + """distinct select on columns""" + distinct_on: [game_plugin_installs_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: [game_plugin_installs_order_by!] + + """filter the rows returned""" + where: game_plugin_installs_bool_exp + ): [game_plugin_installs!]! + + """ + fetch aggregated fields from the table: "game_plugin_installs" + """ + game_plugin_installs_aggregate( + """distinct select on columns""" + distinct_on: [game_plugin_installs_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: [game_plugin_installs_order_by!] + + """filter the rows returned""" + where: game_plugin_installs_bool_exp + ): game_plugin_installs_aggregate! + + """ + fetch data from the table: "game_plugin_installs" using primary key columns + """ + game_plugin_installs_by_pk(plugin_slug: String!): game_plugin_installs + + """ + fetch data from the table: "game_plugin_versions" + """ + game_plugin_versions( + """distinct select on columns""" + distinct_on: [game_plugin_versions_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: [game_plugin_versions_order_by!] + + """filter the rows returned""" + where: game_plugin_versions_bool_exp + ): [game_plugin_versions!]! + + """ + fetch aggregated fields from the table: "game_plugin_versions" + """ + game_plugin_versions_aggregate( + """distinct select on columns""" + distinct_on: [game_plugin_versions_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: [game_plugin_versions_order_by!] + + """filter the rows returned""" + where: game_plugin_versions_bool_exp + ): game_plugin_versions_aggregate! + + """ + fetch data from the table: "game_plugin_versions" using primary key columns + """ + game_plugin_versions_by_pk(plugin_slug: String!, runtime: e_plugin_runtimes_enum!, version: String!): game_plugin_versions + + """ + fetch data from the table: "game_plugins" + """ + game_plugins( + """distinct select on columns""" + distinct_on: [game_plugins_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: [game_plugins_order_by!] + + """filter the rows returned""" + where: game_plugins_bool_exp + ): [game_plugins!]! + + """ + fetch aggregated fields from the table: "game_plugins" + """ + game_plugins_aggregate( + """distinct select on columns""" + distinct_on: [game_plugins_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: [game_plugins_order_by!] + + """filter the rows returned""" + where: game_plugins_bool_exp + ): game_plugins_aggregate! + + """fetch data from the table: "game_plugins" using primary key columns""" + game_plugins_by_pk(slug: String!): game_plugins + + """ + fetch data from the table: "game_server_node_plugins" + """ + game_server_node_plugins( + """distinct select on columns""" + distinct_on: [game_server_node_plugins_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: [game_server_node_plugins_order_by!] + + """filter the rows returned""" + where: game_server_node_plugins_bool_exp + ): [game_server_node_plugins!]! + + """ + fetch aggregated fields from the table: "game_server_node_plugins" + """ + game_server_node_plugins_aggregate( + """distinct select on columns""" + distinct_on: [game_server_node_plugins_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: [game_server_node_plugins_order_by!] + + """filter the rows returned""" + where: game_server_node_plugins_bool_exp + ): game_server_node_plugins_aggregate! + + """ + fetch data from the table: "game_server_node_plugins" using primary key columns + """ + game_server_node_plugins_by_pk(id: uuid!): game_server_node_plugins + """An array relationship""" game_server_nodes( """distinct select on columns""" @@ -75750,9 +80593,7 @@ type query_root { """fetch data from the table: "match_maps" using primary key columns""" match_maps_by_pk(id: uuid!): match_maps - """ - fetch data from the table: "match_options" - """ + """An array relationship""" match_options( """distinct select on columns""" distinct_on: [match_options_select_column!] @@ -75770,9 +80611,7 @@ type query_root { where: match_options_bool_exp ): [match_options!]! - """ - fetch aggregated fields from the table: "match_options" - """ + """An aggregate relationship""" match_options_aggregate( """distinct select on columns""" distinct_on: [match_options_select_column!] @@ -80812,6 +85651,10 @@ type servers { enabled: Boolean! game: String + """An object relationship""" + game_mode: game_modes + game_mode_id: uuid + """An object relationship""" game_server_node: game_server_nodes game_server_node_id: String @@ -80819,6 +85662,10 @@ type servers { id: uuid! is_dedicated: Boolean! label: String! + loaded_plugins( + """JSON select path""" + path: String + ): jsonb """An array relationship""" matches( @@ -80859,6 +85706,7 @@ type servers { offline_at: timestamptz plugin_runtime: e_plugin_runtimes_enum plugin_version: String + plugins_checked_at: timestamptz port: Int! rcon_password: bytea! rcon_status: Boolean @@ -80942,6 +85790,11 @@ input servers_aggregate_order_by { variance: servers_variance_order_by } +"""append existing jsonb value of filtered columns with new jsonb value""" +input servers_append_input { + loaded_plugins: jsonb +} + """ input type for inserting array relation for remote table "servers" """ @@ -80985,18 +85838,22 @@ input servers_bool_exp { current_match: matches_bool_exp enabled: Boolean_comparison_exp game: String_comparison_exp + game_mode: game_modes_bool_exp + game_mode_id: uuid_comparison_exp game_server_node: game_server_nodes_bool_exp game_server_node_id: String_comparison_exp host: String_comparison_exp id: uuid_comparison_exp is_dedicated: Boolean_comparison_exp label: String_comparison_exp + loaded_plugins: jsonb_comparison_exp matches: matches_bool_exp matches_aggregate: matches_aggregate_bool_exp max_players: Int_comparison_exp offline_at: timestamptz_comparison_exp plugin_runtime: e_plugin_runtimes_enum_comparison_exp plugin_version: String_comparison_exp + plugins_checked_at: timestamptz_comparison_exp port: Int_comparison_exp rcon_password: bytea_comparison_exp rcon_status: Boolean_comparison_exp @@ -81024,6 +85881,27 @@ enum servers_constraint { servers_reserved_by_match_id_key } +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input servers_delete_at_path_input { + loaded_plugins: [String!] +} + +""" +delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array +""" +input servers_delete_elem_input { + loaded_plugins: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input servers_delete_key_input { + loaded_plugins: String +} + """ input type for incrementing numeric columns in table "servers" """ @@ -81045,17 +85923,21 @@ input servers_insert_input { current_match: matches_obj_rel_insert_input enabled: Boolean game: String + game_mode: game_modes_obj_rel_insert_input + game_mode_id: uuid game_server_node: game_server_nodes_obj_rel_insert_input game_server_node_id: String host: String id: uuid is_dedicated: Boolean label: String + loaded_plugins: jsonb matches: matches_arr_rel_insert_input max_players: Int offline_at: timestamptz plugin_runtime: e_plugin_runtimes_enum plugin_version: String + plugins_checked_at: timestamptz port: Int rcon_password: bytea rcon_status: Boolean @@ -81085,6 +85967,7 @@ type servers_max_fields { """ connection_string: String game: String + game_mode_id: uuid game_server_node_id: String host: String id: uuid @@ -81092,6 +85975,7 @@ type servers_max_fields { max_players: Int offline_at: timestamptz plugin_version: String + plugins_checked_at: timestamptz port: Int region: String reserved_by_match_id: uuid @@ -81109,6 +85993,7 @@ input servers_max_order_by { boot_status_detail: order_by connect_password: order_by game: order_by + game_mode_id: order_by game_server_node_id: order_by host: order_by id: order_by @@ -81116,6 +86001,7 @@ input servers_max_order_by { max_players: order_by offline_at: order_by plugin_version: order_by + plugins_checked_at: order_by port: order_by region: order_by reserved_by_match_id: order_by @@ -81141,6 +86027,7 @@ type servers_min_fields { """ connection_string: String game: String + game_mode_id: uuid game_server_node_id: String host: String id: uuid @@ -81148,6 +86035,7 @@ type servers_min_fields { max_players: Int offline_at: timestamptz plugin_version: String + plugins_checked_at: timestamptz port: Int region: String reserved_by_match_id: uuid @@ -81165,6 +86053,7 @@ input servers_min_order_by { boot_status_detail: order_by connect_password: order_by game: order_by + game_mode_id: order_by game_server_node_id: order_by host: order_by id: order_by @@ -81172,6 +86061,7 @@ input servers_min_order_by { max_players: order_by offline_at: order_by plugin_version: order_by + plugins_checked_at: order_by port: order_by region: order_by reserved_by_match_id: order_by @@ -81222,17 +86112,21 @@ input servers_order_by { current_match: matches_order_by enabled: order_by game: order_by + game_mode: game_modes_order_by + game_mode_id: order_by game_server_node: game_server_nodes_order_by game_server_node_id: order_by host: order_by id: order_by is_dedicated: order_by label: order_by + loaded_plugins: order_by matches_aggregate: matches_aggregate_order_by max_players: order_by offline_at: order_by plugin_runtime: order_by plugin_version: order_by + plugins_checked_at: order_by port: order_by rcon_password: order_by rcon_status: order_by @@ -81250,6 +86144,11 @@ input servers_pk_columns_input { id: uuid! } +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input servers_prepend_input { + loaded_plugins: jsonb +} + """ select columns of table "servers" """ @@ -81275,6 +86174,9 @@ enum servers_select_column { """column name""" game + """column name""" + game_mode_id + """column name""" game_server_node_id @@ -81290,6 +86192,9 @@ enum servers_select_column { """column name""" label + """column name""" + loaded_plugins + """column name""" max_players @@ -81302,6 +86207,9 @@ enum servers_select_column { """column name""" plugin_version + """column name""" + plugins_checked_at + """column name""" port @@ -81375,15 +86283,18 @@ input servers_set_input { connected: Boolean enabled: Boolean game: String + game_mode_id: uuid game_server_node_id: String host: String id: uuid is_dedicated: Boolean label: String + loaded_plugins: jsonb max_players: Int offline_at: timestamptz plugin_runtime: e_plugin_runtimes_enum plugin_version: String + plugins_checked_at: timestamptz port: Int rcon_password: bytea rcon_status: Boolean @@ -81463,15 +86374,18 @@ input servers_stream_cursor_value_input { connected: Boolean enabled: Boolean game: String + game_mode_id: uuid game_server_node_id: String host: String id: uuid is_dedicated: Boolean label: String + loaded_plugins: jsonb max_players: Int offline_at: timestamptz plugin_runtime: e_plugin_runtimes_enum plugin_version: String + plugins_checked_at: timestamptz port: Int rcon_password: bytea rcon_status: Boolean @@ -81524,6 +86438,9 @@ enum servers_update_column { """column name""" game + """column name""" + game_mode_id + """column name""" game_server_node_id @@ -81539,6 +86456,9 @@ enum servers_update_column { """column name""" label + """column name""" + loaded_plugins + """column name""" max_players @@ -81551,6 +86471,9 @@ enum servers_update_column { """column name""" plugin_version + """column name""" + plugins_checked_at + """column name""" port @@ -81580,9 +86503,30 @@ enum servers_update_column { } input servers_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: servers_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: servers_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: servers_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: servers_delete_key_input + """increments the numeric columns with given value of the filtered values""" _inc: servers_inc_input + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: servers_prepend_input + """sets the columns of the filtered rows to the given values""" _set: servers_set_input @@ -83983,6 +88927,183 @@ type subscription_root { where: e_game_cfg_types_bool_exp ): [e_game_cfg_types!]! + """ + fetch data from the table: "e_game_plugin_channels" + """ + e_game_plugin_channels( + """distinct select on columns""" + distinct_on: [e_game_plugin_channels_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_game_plugin_channels_order_by!] + + """filter the rows returned""" + where: e_game_plugin_channels_bool_exp + ): [e_game_plugin_channels!]! + + """ + fetch aggregated fields from the table: "e_game_plugin_channels" + """ + e_game_plugin_channels_aggregate( + """distinct select on columns""" + distinct_on: [e_game_plugin_channels_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_game_plugin_channels_order_by!] + + """filter the rows returned""" + where: e_game_plugin_channels_bool_exp + ): e_game_plugin_channels_aggregate! + + """ + fetch data from the table: "e_game_plugin_channels" using primary key columns + """ + e_game_plugin_channels_by_pk(value: String!): e_game_plugin_channels + + """ + fetch data from the table in a streaming manner: "e_game_plugin_channels" + """ + e_game_plugin_channels_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_game_plugin_channels_stream_cursor_input]! + + """filter the rows returned""" + where: e_game_plugin_channels_bool_exp + ): [e_game_plugin_channels!]! + + """ + fetch data from the table: "e_game_plugin_install_statuses" + """ + e_game_plugin_install_statuses( + """distinct select on columns""" + distinct_on: [e_game_plugin_install_statuses_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_game_plugin_install_statuses_order_by!] + + """filter the rows returned""" + where: e_game_plugin_install_statuses_bool_exp + ): [e_game_plugin_install_statuses!]! + + """ + fetch aggregated fields from the table: "e_game_plugin_install_statuses" + """ + e_game_plugin_install_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_game_plugin_install_statuses_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_game_plugin_install_statuses_order_by!] + + """filter the rows returned""" + where: e_game_plugin_install_statuses_bool_exp + ): e_game_plugin_install_statuses_aggregate! + + """ + fetch data from the table: "e_game_plugin_install_statuses" using primary key columns + """ + e_game_plugin_install_statuses_by_pk(value: String!): e_game_plugin_install_statuses + + """ + fetch data from the table in a streaming manner: "e_game_plugin_install_statuses" + """ + e_game_plugin_install_statuses_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_game_plugin_install_statuses_stream_cursor_input]! + + """filter the rows returned""" + where: e_game_plugin_install_statuses_bool_exp + ): [e_game_plugin_install_statuses!]! + + """ + fetch data from the table: "e_game_plugin_kinds" + """ + e_game_plugin_kinds( + """distinct select on columns""" + distinct_on: [e_game_plugin_kinds_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_game_plugin_kinds_order_by!] + + """filter the rows returned""" + where: e_game_plugin_kinds_bool_exp + ): [e_game_plugin_kinds!]! + + """ + fetch aggregated fields from the table: "e_game_plugin_kinds" + """ + e_game_plugin_kinds_aggregate( + """distinct select on columns""" + distinct_on: [e_game_plugin_kinds_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_game_plugin_kinds_order_by!] + + """filter the rows returned""" + where: e_game_plugin_kinds_bool_exp + ): e_game_plugin_kinds_aggregate! + + """ + fetch data from the table: "e_game_plugin_kinds" using primary key columns + """ + e_game_plugin_kinds_by_pk(value: String!): e_game_plugin_kinds + + """ + fetch data from the table in a streaming manner: "e_game_plugin_kinds" + """ + e_game_plugin_kinds_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_game_plugin_kinds_stream_cursor_input]! + + """filter the rows returned""" + where: e_game_plugin_kinds_bool_exp + ): [e_game_plugin_kinds!]! + """ fetch data from the table: "e_game_server_node_statuses" """ @@ -86433,6 +91554,356 @@ type subscription_root { where: friends_bool_exp ): [friends!]! + """ + fetch data from the table: "game_mode_plugins" + """ + game_mode_plugins( + """distinct select on columns""" + distinct_on: [game_mode_plugins_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: [game_mode_plugins_order_by!] + + """filter the rows returned""" + where: game_mode_plugins_bool_exp + ): [game_mode_plugins!]! + + """ + fetch aggregated fields from the table: "game_mode_plugins" + """ + game_mode_plugins_aggregate( + """distinct select on columns""" + distinct_on: [game_mode_plugins_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: [game_mode_plugins_order_by!] + + """filter the rows returned""" + where: game_mode_plugins_bool_exp + ): game_mode_plugins_aggregate! + + """ + fetch data from the table: "game_mode_plugins" using primary key columns + """ + game_mode_plugins_by_pk(game_mode_id: uuid!, plugin_slug: String!): game_mode_plugins + + """ + fetch data from the table in a streaming manner: "game_mode_plugins" + """ + game_mode_plugins_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [game_mode_plugins_stream_cursor_input]! + + """filter the rows returned""" + where: game_mode_plugins_bool_exp + ): [game_mode_plugins!]! + + """ + fetch data from the table: "game_modes" + """ + game_modes( + """distinct select on columns""" + distinct_on: [game_modes_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: [game_modes_order_by!] + + """filter the rows returned""" + where: game_modes_bool_exp + ): [game_modes!]! + + """ + fetch aggregated fields from the table: "game_modes" + """ + game_modes_aggregate( + """distinct select on columns""" + distinct_on: [game_modes_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: [game_modes_order_by!] + + """filter the rows returned""" + where: game_modes_bool_exp + ): game_modes_aggregate! + + """fetch data from the table: "game_modes" using primary key columns""" + game_modes_by_pk(id: uuid!): game_modes + + """ + fetch data from the table in a streaming manner: "game_modes" + """ + game_modes_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [game_modes_stream_cursor_input]! + + """filter the rows returned""" + where: game_modes_bool_exp + ): [game_modes!]! + + """ + fetch data from the table: "game_plugin_installs" + """ + game_plugin_installs( + """distinct select on columns""" + distinct_on: [game_plugin_installs_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: [game_plugin_installs_order_by!] + + """filter the rows returned""" + where: game_plugin_installs_bool_exp + ): [game_plugin_installs!]! + + """ + fetch aggregated fields from the table: "game_plugin_installs" + """ + game_plugin_installs_aggregate( + """distinct select on columns""" + distinct_on: [game_plugin_installs_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: [game_plugin_installs_order_by!] + + """filter the rows returned""" + where: game_plugin_installs_bool_exp + ): game_plugin_installs_aggregate! + + """ + fetch data from the table: "game_plugin_installs" using primary key columns + """ + game_plugin_installs_by_pk(plugin_slug: String!): game_plugin_installs + + """ + fetch data from the table in a streaming manner: "game_plugin_installs" + """ + game_plugin_installs_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [game_plugin_installs_stream_cursor_input]! + + """filter the rows returned""" + where: game_plugin_installs_bool_exp + ): [game_plugin_installs!]! + + """ + fetch data from the table: "game_plugin_versions" + """ + game_plugin_versions( + """distinct select on columns""" + distinct_on: [game_plugin_versions_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: [game_plugin_versions_order_by!] + + """filter the rows returned""" + where: game_plugin_versions_bool_exp + ): [game_plugin_versions!]! + + """ + fetch aggregated fields from the table: "game_plugin_versions" + """ + game_plugin_versions_aggregate( + """distinct select on columns""" + distinct_on: [game_plugin_versions_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: [game_plugin_versions_order_by!] + + """filter the rows returned""" + where: game_plugin_versions_bool_exp + ): game_plugin_versions_aggregate! + + """ + fetch data from the table: "game_plugin_versions" using primary key columns + """ + game_plugin_versions_by_pk(plugin_slug: String!, runtime: e_plugin_runtimes_enum!, version: String!): game_plugin_versions + + """ + fetch data from the table in a streaming manner: "game_plugin_versions" + """ + game_plugin_versions_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [game_plugin_versions_stream_cursor_input]! + + """filter the rows returned""" + where: game_plugin_versions_bool_exp + ): [game_plugin_versions!]! + + """ + fetch data from the table: "game_plugins" + """ + game_plugins( + """distinct select on columns""" + distinct_on: [game_plugins_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: [game_plugins_order_by!] + + """filter the rows returned""" + where: game_plugins_bool_exp + ): [game_plugins!]! + + """ + fetch aggregated fields from the table: "game_plugins" + """ + game_plugins_aggregate( + """distinct select on columns""" + distinct_on: [game_plugins_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: [game_plugins_order_by!] + + """filter the rows returned""" + where: game_plugins_bool_exp + ): game_plugins_aggregate! + + """fetch data from the table: "game_plugins" using primary key columns""" + game_plugins_by_pk(slug: String!): game_plugins + + """ + fetch data from the table in a streaming manner: "game_plugins" + """ + game_plugins_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [game_plugins_stream_cursor_input]! + + """filter the rows returned""" + where: game_plugins_bool_exp + ): [game_plugins!]! + + """ + fetch data from the table: "game_server_node_plugins" + """ + game_server_node_plugins( + """distinct select on columns""" + distinct_on: [game_server_node_plugins_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: [game_server_node_plugins_order_by!] + + """filter the rows returned""" + where: game_server_node_plugins_bool_exp + ): [game_server_node_plugins!]! + + """ + fetch aggregated fields from the table: "game_server_node_plugins" + """ + game_server_node_plugins_aggregate( + """distinct select on columns""" + distinct_on: [game_server_node_plugins_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: [game_server_node_plugins_order_by!] + + """filter the rows returned""" + where: game_server_node_plugins_bool_exp + ): game_server_node_plugins_aggregate! + + """ + fetch data from the table: "game_server_node_plugins" using primary key columns + """ + game_server_node_plugins_by_pk(id: uuid!): game_server_node_plugins + + """ + fetch data from the table in a streaming manner: "game_server_node_plugins" + """ + game_server_node_plugins_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [game_server_node_plugins_stream_cursor_input]! + + """filter the rows returned""" + where: game_server_node_plugins_bool_exp + ): [game_server_node_plugins!]! + """An array relationship""" game_server_nodes( """distinct select on columns""" @@ -88112,9 +93583,7 @@ type subscription_root { where: match_maps_bool_exp ): [match_maps!]! - """ - fetch data from the table: "match_options" - """ + """An array relationship""" match_options( """distinct select on columns""" distinct_on: [match_options_select_column!] @@ -88132,9 +93601,7 @@ type subscription_root { where: match_options_bool_exp ): [match_options!]! - """ - fetch aggregated fields from the table: "match_options" - """ + """An aggregate relationship""" match_options_aggregate( """distinct select on columns""" distinct_on: [match_options_select_column!] diff --git a/generated/schema.ts b/generated/schema.ts index f22e7c671..f72e7c19d 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -48,6 +48,14 @@ export interface ActiveQuery { __typename: 'ActiveQuery' } +export interface AddCustomGamePluginOutput { + name: Scalars['String'] + runtime: Scalars['String'] + slug: Scalars['String'] + version: Scalars['String'] + __typename: 'AddCustomGamePluginOutput' +} + export interface ApiKeyResponse { key: Scalars['String'] __typename: 'ApiKeyResponse' @@ -452,6 +460,14 @@ export interface PendingMatchImportActionOutput { __typename: 'PendingMatchImportActionOutput' } +export interface PluginReadmeOutput { + content: (Scalars['String'] | null) + format: (Scalars['String'] | null) + repo: (Scalars['String'] | null) + url: (Scalars['String'] | null) + __typename: 'PluginReadmeOutput' +} + export interface PodStats { cpu: (CpuStat | null) memory: (MemoryStat | null) @@ -460,6 +476,13 @@ export interface PodStats { __typename: 'PodStats' } +export interface PreviewGameModeOutput { + cfg: (Scalars['String'] | null) + enabledPlugins: Scalars['String'] + extraGameParams: (Scalars['String'] | null) + __typename: 'PreviewGameModeOutput' +} + export interface PreviewTournamentMatchResetOutput { impacts: TournamentMatchResetImpact[] __typename: 'PreviewTournamentMatchResetOutput' @@ -510,6 +533,11 @@ export interface RecomputeEloStatusOutput { __typename: 'RecomputeEloStatusOutput' } +export interface ReconcileNodePluginsOutput { + detected: Scalars['Int'] + __typename: 'ReconcileNodePluginsOutput' +} + export interface ReindexStartedOutput { running: Scalars['Boolean'] success: Scalars['Boolean'] @@ -655,6 +683,12 @@ export interface SuccessOutput { __typename: 'SuccessOutput' } +export interface SyncPluginRegistryOutput { + plugins: Scalars['Int'] + versions: Scalars['Int'] + __typename: 'SyncPluginRegistryOutput' +} + export interface TableIOStat { cache_hit_ratio: (Scalars['Float'] | null) heap_blks_hit: Scalars['Int'] @@ -734,6 +768,9 @@ export interface TelemetryFleetTotals { dedicatedServers: Scalars['Int'] eventTeams: Scalars['Int'] events: Scalars['Int'] + gameModes: Scalars['Int'] + gameModesEnabled: Scalars['Int'] + gameModesUnranked: Scalars['Int'] gameServerNodes: Scalars['Int'] gameServerNodesEnabled: Scalars['Int'] gameServerNodesOnline: Scalars['Int'] @@ -765,6 +802,10 @@ export interface TelemetryFleetTotals { playersKnown: Scalars['Int'] playersPlayed: Scalars['Int'] playersRegistered: Scalars['Int'] + pluginsBySlug: (Scalars['jsonb'] | null) + pluginsManual: Scalars['Int'] + pluginsReported: Scalars['Int'] + pluginsRequested: Scalars['Int'] publicServers: Scalars['Int'] regions: Scalars['Int'] scrimRequests: Scalars['Int'] @@ -1976,6 +2017,7 @@ export interface custom_pages { manifest_url: (Scalars['String'] | null) nav_group: (Scalars['String'] | null) nav_order: Scalars['Int'] + plugin_slug: (Scalars['String'] | null) profile_tab_label: (Scalars['String'] | null) remote_entry_url: Scalars['String'] remote_scope: Scalars['String'] @@ -2020,7 +2062,7 @@ export interface custom_pages_avg_fields { /** unique or primary key constraints on table "custom_pages" */ -export type custom_pages_constraint = 'custom_pages_pkey' | 'custom_pages_single_default_idx' | 'custom_pages_slug_key' +export type custom_pages_constraint = 'custom_pages_pkey' | 'custom_pages_plugin_slug_idx' | 'custom_pages_single_default_idx' | 'custom_pages_slug_key' /** aggregate max on columns */ @@ -2032,6 +2074,7 @@ export interface custom_pages_max_fields { manifest_url: (Scalars['String'] | null) nav_group: (Scalars['String'] | null) nav_order: (Scalars['Int'] | null) + plugin_slug: (Scalars['String'] | null) profile_tab_label: (Scalars['String'] | null) remote_entry_url: (Scalars['String'] | null) remote_scope: (Scalars['String'] | null) @@ -2051,6 +2094,7 @@ export interface custom_pages_min_fields { manifest_url: (Scalars['String'] | null) nav_group: (Scalars['String'] | null) nav_order: (Scalars['Int'] | null) + plugin_slug: (Scalars['String'] | null) profile_tab_label: (Scalars['String'] | null) remote_entry_url: (Scalars['String'] | null) remote_scope: (Scalars['String'] | null) @@ -2072,7 +2116,7 @@ export interface custom_pages_mutation_response { /** select columns of table "custom_pages" */ -export type custom_pages_select_column = 'created_at' | 'deployments' | 'enabled' | 'exposed_module' | 'icon' | 'id' | 'is_default' | 'manifest_url' | 'nav_group' | 'nav_order' | 'profile_tab_label' | 'remote_entry_url' | 'remote_scope' | 'required_role' | 'slug' | 'title' | 'updated_at' +export type custom_pages_select_column = 'created_at' | 'deployments' | 'enabled' | 'exposed_module' | 'icon' | 'id' | 'is_default' | 'manifest_url' | 'nav_group' | 'nav_order' | 'plugin_slug' | 'profile_tab_label' | 'remote_entry_url' | 'remote_scope' | 'required_role' | 'slug' | 'title' | 'updated_at' /** aggregate stddev on columns */ @@ -2104,7 +2148,7 @@ export interface custom_pages_sum_fields { /** update columns of table "custom_pages" */ -export type custom_pages_update_column = 'created_at' | 'deployments' | 'enabled' | 'exposed_module' | 'icon' | 'id' | 'is_default' | 'manifest_url' | 'nav_group' | 'nav_order' | 'profile_tab_label' | 'remote_entry_url' | 'remote_scope' | 'required_role' | 'slug' | 'title' | 'updated_at' +export type custom_pages_update_column = 'created_at' | 'deployments' | 'enabled' | 'exposed_module' | 'icon' | 'id' | 'is_default' | 'manifest_url' | 'nav_group' | 'nav_order' | 'plugin_slug' | 'profile_tab_label' | 'remote_entry_url' | 'remote_scope' | 'required_role' | 'slug' | 'title' | 'updated_at' /** aggregate var_pop on columns */ @@ -3937,6 +3981,201 @@ export type e_game_cfg_types_select_column = 'description' | 'value' export type e_game_cfg_types_update_column = 'description' | 'value' +/** columns and relationships of "e_game_plugin_channels" */ +export interface e_game_plugin_channels { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_game_plugin_channels' +} + + +/** aggregated selection of "e_game_plugin_channels" */ +export interface e_game_plugin_channels_aggregate { + aggregate: (e_game_plugin_channels_aggregate_fields | null) + nodes: e_game_plugin_channels[] + __typename: 'e_game_plugin_channels_aggregate' +} + + +/** aggregate fields of "e_game_plugin_channels" */ +export interface e_game_plugin_channels_aggregate_fields { + count: Scalars['Int'] + max: (e_game_plugin_channels_max_fields | null) + min: (e_game_plugin_channels_min_fields | null) + __typename: 'e_game_plugin_channels_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_game_plugin_channels" */ +export type e_game_plugin_channels_constraint = 'e_game_plugin_channels_pkey' + +export type e_game_plugin_channels_enum = 'Auto' | 'Pinned' + + +/** aggregate max on columns */ +export interface e_game_plugin_channels_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_game_plugin_channels_max_fields' +} + + +/** aggregate min on columns */ +export interface e_game_plugin_channels_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_game_plugin_channels_min_fields' +} + + +/** response of any mutation on the table "e_game_plugin_channels" */ +export interface e_game_plugin_channels_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_game_plugin_channels[] + __typename: 'e_game_plugin_channels_mutation_response' +} + + +/** select columns of table "e_game_plugin_channels" */ +export type e_game_plugin_channels_select_column = 'description' | 'value' + + +/** update columns of table "e_game_plugin_channels" */ +export type e_game_plugin_channels_update_column = 'description' | 'value' + + +/** columns and relationships of "e_game_plugin_install_statuses" */ +export interface e_game_plugin_install_statuses { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_game_plugin_install_statuses' +} + + +/** aggregated selection of "e_game_plugin_install_statuses" */ +export interface e_game_plugin_install_statuses_aggregate { + aggregate: (e_game_plugin_install_statuses_aggregate_fields | null) + nodes: e_game_plugin_install_statuses[] + __typename: 'e_game_plugin_install_statuses_aggregate' +} + + +/** aggregate fields of "e_game_plugin_install_statuses" */ +export interface e_game_plugin_install_statuses_aggregate_fields { + count: Scalars['Int'] + max: (e_game_plugin_install_statuses_max_fields | null) + min: (e_game_plugin_install_statuses_min_fields | null) + __typename: 'e_game_plugin_install_statuses_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_game_plugin_install_statuses" */ +export type e_game_plugin_install_statuses_constraint = 'e_game_plugin_install_statuses_pkey' + +export type e_game_plugin_install_statuses_enum = 'Failed' | 'Installed' | 'Installing' | 'Pending' | 'Removing' + + +/** aggregate max on columns */ +export interface e_game_plugin_install_statuses_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_game_plugin_install_statuses_max_fields' +} + + +/** aggregate min on columns */ +export interface e_game_plugin_install_statuses_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_game_plugin_install_statuses_min_fields' +} + + +/** response of any mutation on the table "e_game_plugin_install_statuses" */ +export interface e_game_plugin_install_statuses_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_game_plugin_install_statuses[] + __typename: 'e_game_plugin_install_statuses_mutation_response' +} + + +/** select columns of table "e_game_plugin_install_statuses" */ +export type e_game_plugin_install_statuses_select_column = 'description' | 'value' + + +/** update columns of table "e_game_plugin_install_statuses" */ +export type e_game_plugin_install_statuses_update_column = 'description' | 'value' + + +/** columns and relationships of "e_game_plugin_kinds" */ +export interface e_game_plugin_kinds { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_game_plugin_kinds' +} + + +/** aggregated selection of "e_game_plugin_kinds" */ +export interface e_game_plugin_kinds_aggregate { + aggregate: (e_game_plugin_kinds_aggregate_fields | null) + nodes: e_game_plugin_kinds[] + __typename: 'e_game_plugin_kinds_aggregate' +} + + +/** aggregate fields of "e_game_plugin_kinds" */ +export interface e_game_plugin_kinds_aggregate_fields { + count: Scalars['Int'] + max: (e_game_plugin_kinds_max_fields | null) + min: (e_game_plugin_kinds_min_fields | null) + __typename: 'e_game_plugin_kinds_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_game_plugin_kinds" */ +export type e_game_plugin_kinds_constraint = 'e_game_plugin_kinds_pkey' + +export type e_game_plugin_kinds_enum = 'bundle' | 'game' | 'panel' + + +/** aggregate max on columns */ +export interface e_game_plugin_kinds_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_game_plugin_kinds_max_fields' +} + + +/** aggregate min on columns */ +export interface e_game_plugin_kinds_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_game_plugin_kinds_min_fields' +} + + +/** response of any mutation on the table "e_game_plugin_kinds" */ +export interface e_game_plugin_kinds_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_game_plugin_kinds[] + __typename: 'e_game_plugin_kinds_mutation_response' +} + + +/** select columns of table "e_game_plugin_kinds" */ +export type e_game_plugin_kinds_select_column = 'description' | 'value' + + +/** update columns of table "e_game_plugin_kinds" */ +export type e_game_plugin_kinds_update_column = 'description' | 'value' + + /** columns and relationships of "e_game_server_node_statuses" */ export interface e_game_server_node_statuses { description: Scalars['String'] @@ -7253,5088 +7492,4947 @@ export interface friends_variance_fields { } -/** 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) - cpu_warnings: (Scalars['jsonb'] | 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 "game_mode_plugins" */ +export interface game_mode_plugins { + config: (Scalars['jsonb'] | null) /** 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) + game_mode: game_modes + game_mode_id: Scalars['uuid'] + load_order: Scalars['Int'] /** An object relationship */ - version: (game_versions | null) - __typename: 'game_server_nodes' + plugin: game_plugins + plugin_slug: Scalars['String'] + required: Scalars['Boolean'] + __typename: 'game_mode_plugins' } -/** 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 "game_mode_plugins" */ +export interface game_mode_plugins_aggregate { + aggregate: (game_mode_plugins_aggregate_fields | null) + nodes: game_mode_plugins[] + __typename: 'game_mode_plugins_aggregate' } -/** aggregate fields of "game_server_nodes" */ -export interface game_server_nodes_aggregate_fields { - avg: (game_server_nodes_avg_fields | null) +/** aggregate fields of "game_mode_plugins" */ +export interface game_mode_plugins_aggregate_fields { + avg: (game_mode_plugins_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: (game_mode_plugins_max_fields | null) + min: (game_mode_plugins_min_fields | null) + stddev: (game_mode_plugins_stddev_fields | null) + stddev_pop: (game_mode_plugins_stddev_pop_fields | null) + stddev_samp: (game_mode_plugins_stddev_samp_fields | null) + sum: (game_mode_plugins_sum_fields | null) + var_pop: (game_mode_plugins_var_pop_fields | null) + var_samp: (game_mode_plugins_var_samp_fields | null) + variance: (game_mode_plugins_variance_fields | null) + __typename: 'game_mode_plugins_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 game_mode_plugins_avg_fields { + load_order: (Scalars['Float'] | null) + __typename: 'game_mode_plugins_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 "game_mode_plugins" */ +export type game_mode_plugins_constraint = 'game_mode_plugins_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 game_mode_plugins_max_fields { + game_mode_id: (Scalars['uuid'] | null) + load_order: (Scalars['Int'] | null) + plugin_slug: (Scalars['String'] | null) + __typename: 'game_mode_plugins_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 game_mode_plugins_min_fields { + game_mode_id: (Scalars['uuid'] | null) + load_order: (Scalars['Int'] | null) + plugin_slug: (Scalars['String'] | null) + __typename: 'game_mode_plugins_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 "game_mode_plugins" */ +export interface game_mode_plugins_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: game_mode_plugins[] + __typename: 'game_mode_plugins_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' | 'cpu_warnings' | '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 columns of table "game_mode_plugins" */ +export type game_mode_plugins_select_column = 'config' | 'game_mode_id' | 'load_order' | 'plugin_slug' | 'required' -/** 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_mode_plugins_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_mode_plugins" */ +export type game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_and_arguments_columns = 'required' -/** 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 "game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns" columns of table "game_mode_plugins" */ +export type game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns = 'required' /** 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 game_mode_plugins_stddev_fields { + load_order: (Scalars['Float'] | null) + __typename: 'game_mode_plugins_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 game_mode_plugins_stddev_pop_fields { + load_order: (Scalars['Float'] | null) + __typename: 'game_mode_plugins_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 game_mode_plugins_stddev_samp_fields { + load_order: (Scalars['Float'] | null) + __typename: 'game_mode_plugins_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 game_mode_plugins_sum_fields { + load_order: (Scalars['Int'] | null) + __typename: 'game_mode_plugins_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' | 'cpu_warnings' | '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 "game_mode_plugins" */ +export type game_mode_plugins_update_column = 'config' | 'game_mode_id' | 'load_order' | 'plugin_slug' | 'required' /** 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 game_mode_plugins_var_pop_fields { + load_order: (Scalars['Float'] | null) + __typename: 'game_mode_plugins_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 game_mode_plugins_var_samp_fields { + load_order: (Scalars['Float'] | null) + __typename: 'game_mode_plugins_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 game_mode_plugins_variance_fields { + load_order: (Scalars['Float'] | null) + __typename: 'game_mode_plugins_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) +/** columns and relationships of "game_modes" */ +export interface game_modes { + archived_at: (Scalars['timestamptz'] | null) + cfg: (Scalars['String'] | null) + competitive_safe: Scalars['Boolean'] + created_at: Scalars['timestamptz'] + description: (Scalars['String'] | null) + enabled: Scalars['Boolean'] + extra_game_params: (Scalars['String'] | null) + icon: (Scalars['String'] | null) + id: Scalars['uuid'] + /** An array relationship */ + match_options: match_options[] + /** An aggregate relationship */ + match_options_aggregate: match_options_aggregate + name: Scalars['String'] + /** An array relationship */ + plugins: game_mode_plugins[] + /** An aggregate relationship */ + plugins_aggregate: game_mode_plugins_aggregate + /** Plugins in this mode with no build for the deployment's runtime */ + runtime_conflicts: (Scalars['jsonb'] | null) + slug: Scalars['String'] + /** Frameworks every plugin in this mode publishes for; empty means the selection cannot run */ + supported_runtimes: (Scalars['jsonb'] | null) updated_at: Scalars['timestamptz'] - version: Scalars['String'] - __typename: 'game_versions' + __typename: 'game_modes' } -/** aggregated selection of "game_versions" */ -export interface game_versions_aggregate { - aggregate: (game_versions_aggregate_fields | null) - nodes: game_versions[] - __typename: 'game_versions_aggregate' +/** aggregated selection of "game_modes" */ +export interface game_modes_aggregate { + aggregate: (game_modes_aggregate_fields | null) + nodes: game_modes[] + __typename: 'game_modes_aggregate' } -/** aggregate fields of "game_versions" */ -export interface game_versions_aggregate_fields { - avg: (game_versions_avg_fields | null) +/** aggregate fields of "game_modes" */ +export interface game_modes_aggregate_fields { 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' -} - - -/** aggregate avg on columns */ -export interface game_versions_avg_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_avg_fields' + max: (game_modes_max_fields | null) + min: (game_modes_min_fields | null) + __typename: 'game_modes_aggregate_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 "game_modes" */ +export type game_modes_constraint = 'game_modes_pkey' | 'game_modes_slug_key' /** aggregate max on columns */ -export interface game_versions_max_fields { - build_id: (Scalars['Int'] | null) +export interface game_modes_max_fields { + archived_at: (Scalars['timestamptz'] | null) + cfg: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) description: (Scalars['String'] | null) + extra_game_params: (Scalars['String'] | null) + icon: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + slug: (Scalars['String'] | null) updated_at: (Scalars['timestamptz'] | null) - version: (Scalars['String'] | null) - __typename: 'game_versions_max_fields' + __typename: 'game_modes_max_fields' } /** aggregate min on columns */ -export interface game_versions_min_fields { - build_id: (Scalars['Int'] | null) +export interface game_modes_min_fields { + archived_at: (Scalars['timestamptz'] | null) + cfg: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) description: (Scalars['String'] | null) + extra_game_params: (Scalars['String'] | null) + icon: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + slug: (Scalars['String'] | null) updated_at: (Scalars['timestamptz'] | null) - version: (Scalars['String'] | null) - __typename: 'game_versions_min_fields' + __typename: 'game_modes_min_fields' } -/** response of any mutation on the table "game_versions" */ -export interface game_versions_mutation_response { +/** response of any mutation on the table "game_modes" */ +export interface game_modes_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: game_modes[] + __typename: 'game_modes_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 "game_modes" */ +export type game_modes_select_column = 'archived_at' | 'cfg' | 'competitive_safe' | 'created_at' | 'description' | 'enabled' | 'extra_game_params' | 'icon' | 'id' | 'name' | 'slug' | 'updated_at' -/** aggregate stddev on columns */ -export interface game_versions_stddev_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_stddev_fields' +/** update columns of table "game_modes" */ +export type game_modes_update_column = 'archived_at' | 'cfg' | 'competitive_safe' | 'created_at' | 'description' | 'enabled' | 'extra_game_params' | 'icon' | 'id' | 'name' | 'slug' | 'updated_at' + + +/** columns and relationships of "game_plugin_installs" */ +export interface game_plugin_installs { + always_load: Scalars['Boolean'] + channel: e_game_plugin_channels_enum + created_at: Scalars['timestamptz'] + disable_server_guidelines: Scalars['Boolean'] + enabled: Scalars['Boolean'] + /** An object relationship */ + plugin: game_plugins + plugin_slug: Scalars['String'] + updated_at: Scalars['timestamptz'] + version: (Scalars['String'] | null) + __typename: 'game_plugin_installs' } -/** aggregate stddev_pop on columns */ -export interface game_versions_stddev_pop_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_stddev_pop_fields' +/** aggregated selection of "game_plugin_installs" */ +export interface game_plugin_installs_aggregate { + aggregate: (game_plugin_installs_aggregate_fields | null) + nodes: game_plugin_installs[] + __typename: 'game_plugin_installs_aggregate' } -/** aggregate stddev_samp on columns */ -export interface game_versions_stddev_samp_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_stddev_samp_fields' +/** aggregate fields of "game_plugin_installs" */ +export interface game_plugin_installs_aggregate_fields { + count: Scalars['Int'] + max: (game_plugin_installs_max_fields | null) + min: (game_plugin_installs_min_fields | null) + __typename: 'game_plugin_installs_aggregate_fields' } -/** aggregate sum on columns */ -export interface game_versions_sum_fields { - build_id: (Scalars['Int'] | null) - __typename: 'game_versions_sum_fields' -} +/** unique or primary key constraints on table "game_plugin_installs" */ +export type game_plugin_installs_constraint = 'game_plugin_installs_pkey' -/** update columns of table "game_versions" */ -export type game_versions_update_column = 'build_id' | 'current' | 'cvars' | 'description' | 'downloads' | 'updated_at' | 'version' +/** aggregate max on columns */ +export interface game_plugin_installs_max_fields { + created_at: (Scalars['timestamptz'] | null) + plugin_slug: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + version: (Scalars['String'] | null) + __typename: 'game_plugin_installs_max_fields' +} -/** aggregate var_pop on columns */ -export interface game_versions_var_pop_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_var_pop_fields' +/** aggregate min on columns */ +export interface game_plugin_installs_min_fields { + created_at: (Scalars['timestamptz'] | null) + plugin_slug: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + version: (Scalars['String'] | null) + __typename: 'game_plugin_installs_min_fields' } -/** aggregate var_samp on columns */ -export interface game_versions_var_samp_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_var_samp_fields' +/** response of any mutation on the table "game_plugin_installs" */ +export interface game_plugin_installs_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: game_plugin_installs[] + __typename: 'game_plugin_installs_mutation_response' } -/** aggregate variance on columns */ -export interface game_versions_variance_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_variance_fields' -} +/** select columns of table "game_plugin_installs" */ +export type game_plugin_installs_select_column = 'always_load' | 'channel' | 'created_at' | 'disable_server_guidelines' | 'enabled' | 'plugin_slug' | 'updated_at' | 'version' -/** columns and relationships of "gamedata_signature_validations" */ -export interface gamedata_signature_validations { - branch: Scalars['String'] - build_id: Scalars['Int'] +/** update columns of table "game_plugin_installs" */ +export type game_plugin_installs_update_column = 'always_load' | 'channel' | 'created_at' | 'disable_server_guidelines' | 'enabled' | 'plugin_slug' | 'updated_at' | 'version' + + +/** columns and relationships of "game_plugin_versions" */ +export interface game_plugin_versions { + install_path: (Scalars['String'] | null) + layout: Scalars['String'] /** 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' + plugin: game_plugins + plugin_slug: Scalars['String'] + prerelease: Scalars['Boolean'] + published_at: Scalars['timestamptz'] + runtime: e_plugin_runtimes_enum + sha256: Scalars['String'] + size: (Scalars['Int'] | null) + url: Scalars['String'] + version: Scalars['String'] + __typename: 'game_plugin_versions' } -/** 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 "game_plugin_versions" */ +export interface game_plugin_versions_aggregate { + aggregate: (game_plugin_versions_aggregate_fields | null) + nodes: game_plugin_versions[] + __typename: 'game_plugin_versions_aggregate' } -/** aggregate fields of "gamedata_signature_validations" */ -export interface gamedata_signature_validations_aggregate_fields { - avg: (gamedata_signature_validations_avg_fields | null) +/** aggregate fields of "game_plugin_versions" */ +export interface game_plugin_versions_aggregate_fields { + avg: (game_plugin_versions_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: (game_plugin_versions_max_fields | null) + min: (game_plugin_versions_min_fields | null) + stddev: (game_plugin_versions_stddev_fields | null) + stddev_pop: (game_plugin_versions_stddev_pop_fields | null) + stddev_samp: (game_plugin_versions_stddev_samp_fields | null) + sum: (game_plugin_versions_sum_fields | null) + var_pop: (game_plugin_versions_var_pop_fields | null) + var_samp: (game_plugin_versions_var_samp_fields | null) + variance: (game_plugin_versions_variance_fields | null) + __typename: 'game_plugin_versions_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 game_plugin_versions_avg_fields { + size: (Scalars['Float'] | null) + __typename: 'game_plugin_versions_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 "game_plugin_versions" */ +export type game_plugin_versions_constraint = 'game_plugin_versions_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 game_plugin_versions_max_fields { + install_path: (Scalars['String'] | null) + layout: (Scalars['String'] | null) + plugin_slug: (Scalars['String'] | null) + published_at: (Scalars['timestamptz'] | null) + sha256: (Scalars['String'] | null) + size: (Scalars['Int'] | null) + url: (Scalars['String'] | null) + version: (Scalars['String'] | null) + __typename: 'game_plugin_versions_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 game_plugin_versions_min_fields { + install_path: (Scalars['String'] | null) + layout: (Scalars['String'] | null) + plugin_slug: (Scalars['String'] | null) + published_at: (Scalars['timestamptz'] | null) + sha256: (Scalars['String'] | null) + size: (Scalars['Int'] | null) + url: (Scalars['String'] | null) + version: (Scalars['String'] | null) + __typename: 'game_plugin_versions_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 "game_plugin_versions" */ +export interface game_plugin_versions_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: game_plugin_versions[] + __typename: 'game_plugin_versions_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 "game_plugin_versions" */ +export type game_plugin_versions_select_column = 'install_path' | 'layout' | 'plugin_slug' | 'prerelease' | 'published_at' | 'runtime' | 'sha256' | 'size' | 'url' | 'version' + + +/** select "game_plugin_versions_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_plugin_versions" */ +export type game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_and_arguments_columns = 'prerelease' + + +/** select "game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns" columns of table "game_plugin_versions" */ +export type game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns = 'prerelease' /** aggregate stddev on columns */ -export interface gamedata_signature_validations_stddev_fields { - build_id: (Scalars['Float'] | null) - __typename: 'gamedata_signature_validations_stddev_fields' +export interface game_plugin_versions_stddev_fields { + size: (Scalars['Float'] | null) + __typename: 'game_plugin_versions_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 game_plugin_versions_stddev_pop_fields { + size: (Scalars['Float'] | null) + __typename: 'game_plugin_versions_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 game_plugin_versions_stddev_samp_fields { + size: (Scalars['Float'] | null) + __typename: 'game_plugin_versions_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 game_plugin_versions_sum_fields { + size: (Scalars['Int'] | null) + __typename: 'game_plugin_versions_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 "game_plugin_versions" */ +export type game_plugin_versions_update_column = 'install_path' | 'layout' | 'plugin_slug' | 'prerelease' | 'published_at' | 'runtime' | 'sha256' | 'size' | 'url' | 'version' /** 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 game_plugin_versions_var_pop_fields { + size: (Scalars['Float'] | null) + __typename: 'game_plugin_versions_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 game_plugin_versions_var_samp_fields { + size: (Scalars['Float'] | null) + __typename: 'game_plugin_versions_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 game_plugin_versions_variance_fields { + size: (Scalars['Float'] | null) + __typename: 'game_plugin_versions_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_custom_avatar_url: (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 "game_plugins" */ +export interface game_plugins { + author: Scalars['String'] + config_path: (Scalars['String'] | null) + config_schema: (Scalars['jsonb'] | null) + cvars: Scalars['String'][] + description: Scalars['String'] + /** An array relationship */ + game_modes: game_mode_plugins[] + /** An aggregate relationship */ + game_modes_aggregate: game_mode_plugins_aggregate + homepage: (Scalars['String'] | null) + hot_swappable: Scalars['Boolean'] + /** Installed | Partial | Pending | Failed | Manual | NotInstalled */ + install_state: (Scalars['String'] | null) + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + kind: e_game_plugin_kinds_enum + name: Scalars['String'] + /** An array relationship */ + node_installs: game_server_node_plugins[] + /** An aggregate relationship */ + node_installs_aggregate: game_server_node_plugins_aggregate + pairs_with: Scalars['String'][] + panel: (Scalars['jsonb'] | null) + requires_server_guidelines_disabled: Scalars['Boolean'] + requires_service: (Scalars['String'] | null) + slug: Scalars['String'] + source: Scalars['String'] + synced_at: Scalars['timestamptz'] + tags: Scalars['String'][] + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + verified: Scalars['Boolean'] + /** An array relationship */ + versions: game_plugin_versions[] + /** An aggregate relationship */ + versions_aggregate: game_plugin_versions_aggregate + wiring: (Scalars['jsonb'] | null) + __typename: 'game_plugins' } -export interface leaderboard_entries_aggregate { - aggregate: (leaderboard_entries_aggregate_fields | null) - nodes: leaderboard_entries[] - __typename: 'leaderboard_entries_aggregate' + +/** aggregated selection of "game_plugins" */ +export interface game_plugins_aggregate { + aggregate: (game_plugins_aggregate_fields | null) + nodes: game_plugins[] + __typename: 'game_plugins_aggregate' } -/** aggregate fields of "leaderboard_entries" */ -export interface leaderboard_entries_aggregate_fields { - avg: (leaderboard_entries_avg_fields | null) +/** aggregate fields of "game_plugins" */ +export interface game_plugins_aggregate_fields { + avg: (game_plugins_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' + max: (game_plugins_max_fields | null) + min: (game_plugins_min_fields | null) + stddev: (game_plugins_stddev_fields | null) + stddev_pop: (game_plugins_stddev_pop_fields | null) + stddev_samp: (game_plugins_stddev_samp_fields | null) + sum: (game_plugins_sum_fields | null) + var_pop: (game_plugins_var_pop_fields | null) + var_samp: (game_plugins_var_samp_fields | null) + variance: (game_plugins_variance_fields | null) + __typename: 'game_plugins_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' +export interface game_plugins_avg_fields { + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + __typename: 'game_plugins_avg_fields' } +/** unique or primary key constraints on table "game_plugins" */ +export type game_plugins_constraint = 'game_plugins_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_custom_avatar_url: (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 game_plugins_max_fields { + author: (Scalars['String'] | null) + config_path: (Scalars['String'] | null) + cvars: (Scalars['String'][] | null) + description: (Scalars['String'] | null) + homepage: (Scalars['String'] | null) + /** Installed | Partial | Pending | Failed | Manual | NotInstalled */ + install_state: (Scalars['String'] | null) + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + name: (Scalars['String'] | null) + pairs_with: (Scalars['String'][] | null) + requires_service: (Scalars['String'] | null) + slug: (Scalars['String'] | null) + source: (Scalars['String'] | null) + synced_at: (Scalars['timestamptz'] | null) + tags: (Scalars['String'][] | null) + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + __typename: 'game_plugins_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_custom_avatar_url: (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 game_plugins_min_fields { + author: (Scalars['String'] | null) + config_path: (Scalars['String'] | null) + cvars: (Scalars['String'][] | null) + description: (Scalars['String'] | null) + homepage: (Scalars['String'] | null) + /** Installed | Partial | Pending | Failed | Manual | NotInstalled */ + install_state: (Scalars['String'] | null) + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + name: (Scalars['String'] | null) + pairs_with: (Scalars['String'][] | null) + requires_service: (Scalars['String'] | null) + slug: (Scalars['String'] | null) + source: (Scalars['String'] | null) + synced_at: (Scalars['timestamptz'] | null) + tags: (Scalars['String'][] | null) + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + __typename: 'game_plugins_min_fields' } -/** response of any mutation on the table "leaderboard_entries" */ -export interface leaderboard_entries_mutation_response { +/** response of any mutation on the table "game_plugins" */ +export interface game_plugins_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: game_plugins[] + __typename: 'game_plugins_mutation_response' } -/** select columns of table "leaderboard_entries" */ -export type leaderboard_entries_select_column = 'matches_played' | 'player_avatar_url' | 'player_country' | 'player_custom_avatar_url' | 'player_name' | 'player_steam_id' | 'secondary_value' | 'tertiary_value' | 'value' +/** select columns of table "game_plugins" */ +export type game_plugins_select_column = 'author' | 'config_path' | 'config_schema' | 'cvars' | 'description' | 'homepage' | 'hot_swappable' | 'kind' | 'name' | 'pairs_with' | 'panel' | 'requires_server_guidelines_disabled' | 'requires_service' | 'slug' | 'source' | 'synced_at' | 'tags' | 'verified' | 'wiring' /** 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' +export interface game_plugins_stddev_fields { + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + __typename: 'game_plugins_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' +export interface game_plugins_stddev_pop_fields { + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + __typename: 'game_plugins_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' +export interface game_plugins_stddev_samp_fields { + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + __typename: 'game_plugins_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' +export interface game_plugins_sum_fields { + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + __typename: 'game_plugins_sum_fields' } +/** update columns of table "game_plugins" */ +export type game_plugins_update_column = 'author' | 'config_path' | 'config_schema' | 'cvars' | 'description' | 'homepage' | 'hot_swappable' | 'kind' | 'name' | 'pairs_with' | 'panel' | 'requires_server_guidelines_disabled' | 'requires_service' | 'slug' | 'source' | 'synced_at' | 'tags' | 'verified' | 'wiring' + + /** 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' +export interface game_plugins_var_pop_fields { + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + __typename: 'game_plugins_var_pop_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' +export interface game_plugins_var_samp_fields { + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + __typename: 'game_plugins_var_samp_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' +export interface game_plugins_variance_fields { + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + __typename: 'game_plugins_variance_fields' } -/** columns and relationships of "league_divisions" */ -export interface league_divisions { +/** columns and relationships of "game_server_node_plugins" */ +export interface game_server_node_plugins { + channel: e_game_plugin_channels_enum created_at: Scalars['timestamptz'] + detected: Scalars['Boolean'] + detected_version: (Scalars['String'] | null) + /** An object relationship */ + game_server_node: game_server_nodes + game_server_node_id: Scalars['String'] id: Scalars['uuid'] - 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' + installed_at: (Scalars['timestamptz'] | null) + last_error: (Scalars['String'] | null) + /** An object relationship */ + plugin: (game_plugins | null) + plugin_slug: Scalars['String'] + runtime: e_plugin_runtimes_enum + source: Scalars['String'] + status: e_game_plugin_install_statuses_enum + updated_at: Scalars['timestamptz'] + version: (Scalars['String'] | null) + __typename: 'game_server_node_plugins' } -/** 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 "game_server_node_plugins" */ +export interface game_server_node_plugins_aggregate { + aggregate: (game_server_node_plugins_aggregate_fields | null) + nodes: game_server_node_plugins[] + __typename: 'game_server_node_plugins_aggregate' } -/** aggregate fields of "league_divisions" */ -export interface league_divisions_aggregate_fields { - avg: (league_divisions_avg_fields | null) +/** aggregate fields of "game_server_node_plugins" */ +export interface game_server_node_plugins_aggregate_fields { 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' -} - - -/** aggregate avg on columns */ -export interface league_divisions_avg_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_avg_fields' + max: (game_server_node_plugins_max_fields | null) + min: (game_server_node_plugins_min_fields | null) + __typename: 'game_server_node_plugins_aggregate_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 "game_server_node_plugins" */ +export type game_server_node_plugins_constraint = 'game_server_node_plugins_node_plugin_key' | 'game_server_node_plugins_pkey' /** aggregate max on columns */ -export interface league_divisions_max_fields { +export interface game_server_node_plugins_max_fields { created_at: (Scalars['timestamptz'] | null) + detected_version: (Scalars['String'] | null) + game_server_node_id: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - tier: (Scalars['smallint'] | null) - __typename: 'league_divisions_max_fields' + installed_at: (Scalars['timestamptz'] | null) + last_error: (Scalars['String'] | null) + plugin_slug: (Scalars['String'] | null) + source: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + version: (Scalars['String'] | null) + __typename: 'game_server_node_plugins_max_fields' } /** aggregate min on columns */ -export interface league_divisions_min_fields { +export interface game_server_node_plugins_min_fields { created_at: (Scalars['timestamptz'] | null) + detected_version: (Scalars['String'] | null) + game_server_node_id: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - tier: (Scalars['smallint'] | null) - __typename: 'league_divisions_min_fields' + installed_at: (Scalars['timestamptz'] | null) + last_error: (Scalars['String'] | null) + plugin_slug: (Scalars['String'] | null) + source: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + version: (Scalars['String'] | null) + __typename: 'game_server_node_plugins_min_fields' } -/** response of any mutation on the table "league_divisions" */ -export interface league_divisions_mutation_response { +/** response of any mutation on the table "game_server_node_plugins" */ +export interface game_server_node_plugins_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: game_server_node_plugins[] + __typename: 'game_server_node_plugins_mutation_response' } -/** select columns of table "league_divisions" */ -export type league_divisions_select_column = 'created_at' | 'id' | 'name' | 'tier' +/** select columns of table "game_server_node_plugins" */ +export type game_server_node_plugins_select_column = 'channel' | 'created_at' | 'detected' | 'detected_version' | 'game_server_node_id' | 'id' | 'installed_at' | 'last_error' | 'plugin_slug' | 'runtime' | 'source' | 'status' | 'updated_at' | 'version' -/** aggregate stddev on columns */ -export interface league_divisions_stddev_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_stddev_fields' -} +/** select "game_server_node_plugins_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_server_node_plugins" */ +export type game_server_node_plugins_select_column_game_server_node_plugins_aggregate_bool_exp_bool_and_arguments_columns = 'detected' -/** aggregate stddev_pop on columns */ -export interface league_divisions_stddev_pop_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_stddev_pop_fields' -} +/** select "game_server_node_plugins_aggregate_bool_exp_bool_or_arguments_columns" columns of table "game_server_node_plugins" */ +export type game_server_node_plugins_select_column_game_server_node_plugins_aggregate_bool_exp_bool_or_arguments_columns = 'detected' -/** aggregate stddev_samp on columns */ -export interface league_divisions_stddev_samp_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_stddev_samp_fields' -} +/** update columns of table "game_server_node_plugins" */ +export type game_server_node_plugins_update_column = 'channel' | 'created_at' | 'detected' | 'detected_version' | 'game_server_node_id' | 'id' | 'installed_at' | 'last_error' | 'plugin_slug' | 'runtime' | 'source' | 'status' | 'updated_at' | 'version' -/** aggregate sum on columns */ -export interface league_divisions_sum_fields { - tier: (Scalars['smallint'] | null) - __typename: 'league_divisions_sum_fields' +/** 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) + cpu_warnings: (Scalars['jsonb'] | 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) + /** An object relationship */ + pinned_version: (game_versions | null) + /** A computed field, executes function "game_server_node_plugin_supported" */ + plugin_supported: (Scalars['Boolean'] | null) + /** An array relationship */ + plugins: game_server_node_plugins[] + /** An aggregate relationship */ + plugins_aggregate: game_server_node_plugins_aggregate + plugins_synced_at: (Scalars['timestamptz'] | 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 */ + version: (game_versions | null) + __typename: 'game_server_nodes' } -/** update columns of table "league_divisions" */ -export type league_divisions_update_column = 'created_at' | 'id' | 'name' | 'tier' +/** 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 var_pop on columns */ -export interface league_divisions_var_pop_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_var_pop_fields' +/** aggregate fields of "game_server_nodes" */ +export interface game_server_nodes_aggregate_fields { + avg: (game_server_nodes_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' } -/** aggregate var_samp on columns */ -export interface league_divisions_var_samp_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_var_samp_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' } -/** aggregate variance on columns */ -export interface league_divisions_variance_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_variance_fields' -} +/** unique or primary key constraints on table "game_server_nodes" */ +export type game_server_nodes_constraint = 'game_server_nodes_pkey' -/** 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 */ - season: league_seasons - week_number: Scalars['Int'] - __typename: 'league_match_weeks' -} - - -/** 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_match_weeks" */ -export interface league_match_weeks_aggregate_fields { - avg: (league_match_weeks_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' -} - - -/** aggregate avg on columns */ -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_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_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 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) + plugins_synced_at: (Scalars['timestamptz'] | 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_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 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) + plugins_synced_at: (Scalars['timestamptz'] | 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_match_weeks" */ -export interface league_match_weeks_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_match_weeks[] - __typename: 'league_match_weeks_mutation_response' + returning: game_server_nodes[] + __typename: 'game_server_nodes_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 "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' | 'cpu_warnings' | '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' | 'plugins_synced_at' | '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_match_weeks_stddev_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_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_match_weeks_stddev_pop_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_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_match_weeks_stddev_samp_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_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_match_weeks_sum_fields { - week_number: (Scalars['Int'] | null) - __typename: 'league_match_weeks_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_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 "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' | 'cpu_warnings' | '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' | 'plugins_synced_at' | '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_match_weeks_var_pop_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_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_match_weeks_var_samp_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_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_match_weeks_variance_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_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_relegation_playoffs" */ -export interface league_relegation_playoffs { - created_at: Scalars['timestamptz'] - /** An object relationship */ - higher_division: league_divisions - higher_division_id: Scalars['uuid'] - higher_slots: Scalars['Int'] - id: Scalars['uuid'] - league_season_id: Scalars['uuid'] - /** An object relationship */ - lower_division: league_divisions - lower_division_id: Scalars['uuid'] - resolved_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - season: league_seasons - /** An object relationship */ - tournament: (tournaments | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'league_relegation_playoffs' +/** 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_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_versions" */ +export interface game_versions_aggregate { + aggregate: (game_versions_aggregate_fields | null) + nodes: game_versions[] + __typename: 'game_versions_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_versions" */ +export interface game_versions_aggregate_fields { + avg: (game_versions_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_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_relegation_playoffs_avg_fields { - higher_slots: (Scalars['Float'] | null) - __typename: 'league_relegation_playoffs_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_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_versions" */ +export type game_versions_constraint = 'game_versions_pkey' | 'idx_game_versions_current' /** 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_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_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_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_relegation_playoffs" */ -export interface league_relegation_playoffs_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_relegation_playoffs[] - __typename: 'league_relegation_playoffs_mutation_response' + returning: game_versions[] + __typename: 'game_versions_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_versions" */ +export type game_versions_select_column = 'build_id' | 'current' | 'cvars' | 'description' | 'downloads' | 'updated_at' | 'version' /** 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_versions_stddev_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_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_versions_stddev_pop_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_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_versions_stddev_samp_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_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_versions_sum_fields { + build_id: (Scalars['Int'] | null) + __typename: 'game_versions_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_versions" */ +export type game_versions_update_column = 'build_id' | 'current' | 'cvars' | 'description' | 'downloads' | 'updated_at' | 'version' /** 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_versions_var_pop_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_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_versions_var_samp_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_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_versions_variance_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_variance_fields' } -/** columns and relationships of "league_scheduling_proposals" */ -export interface league_scheduling_proposals { - /** An object relationship */ - bracket: tournament_brackets - 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 */ - e_proposal_status: e_league_proposal_statuses + game_version: game_versions 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' + results: (Scalars['jsonb'] | null) + status: Scalars['String'] + validated_at: Scalars['timestamptz'] + __typename: 'gamedata_signature_validations' } -/** 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 "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_scheduling_proposals" */ -export interface league_scheduling_proposals_aggregate_fields { - avg: (league_scheduling_proposals_avg_fields | null) +/** 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_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: (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' } /** 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 gamedata_signature_validations_avg_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_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 "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_scheduling_proposals_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) - 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' + status: (Scalars['String'] | null) + validated_at: (Scalars['timestamptz'] | null) + __typename: 'gamedata_signature_validations_max_fields' } /** aggregate min on columns */ -export interface league_scheduling_proposals_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) - 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' + status: (Scalars['String'] | null) + validated_at: (Scalars['timestamptz'] | null) + __typename: 'gamedata_signature_validations_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 "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_scheduling_proposals[] - __typename: 'league_scheduling_proposals_mutation_response' + returning: gamedata_signature_validations[] + __typename: 'gamedata_signature_validations_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 "gamedata_signature_validations" */ +export type gamedata_signature_validations_select_column = 'branch' | 'build_id' | 'id' | 'results' | 'status' | 'validated_at' /** 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 gamedata_signature_validations_stddev_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_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 gamedata_signature_validations_stddev_pop_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_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 gamedata_signature_validations_stddev_samp_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_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 gamedata_signature_validations_sum_fields { + build_id: (Scalars['Int'] | null) + __typename: 'gamedata_signature_validations_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 "gamedata_signature_validations" */ +export type gamedata_signature_validations_update_column = 'branch' | 'build_id' | 'id' | 'results' | 'status' | 'validated_at' /** 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 gamedata_signature_validations_var_pop_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_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 gamedata_signature_validations_var_samp_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_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 gamedata_signature_validations_variance_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_variance_fields' } -/** columns and relationships of "league_season_divisions" */ -export interface league_season_divisions { - created_at: Scalars['timestamptz'] - /** An object relationship */ - division: league_divisions - 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' +/** 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_custom_avatar_url: (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' } - -/** 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' +export interface leaderboard_entries_aggregate { + aggregate: (leaderboard_entries_aggregate_fields | null) + nodes: leaderboard_entries[] + __typename: 'leaderboard_entries_aggregate' } -/** aggregate fields of "league_season_divisions" */ -export interface league_season_divisions_aggregate_fields { +/** aggregate fields of "leaderboard_entries" */ +export interface leaderboard_entries_aggregate_fields { + avg: (leaderboard_entries_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: (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' } -/** 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 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 max on columns */ -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' +export interface leaderboard_entries_max_fields { + matches_played: (Scalars['Int'] | null) + player_avatar_url: (Scalars['String'] | null) + player_country: (Scalars['String'] | null) + player_custom_avatar_url: (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 min on columns */ -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' +export interface leaderboard_entries_min_fields { + matches_played: (Scalars['Int'] | null) + player_avatar_url: (Scalars['String'] | null) + player_country: (Scalars['String'] | null) + player_custom_avatar_url: (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' } -/** response of any mutation on the table "league_season_divisions" */ -export interface league_season_divisions_mutation_response { +/** 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: league_season_divisions[] - __typename: 'league_season_divisions_mutation_response' + returning: leaderboard_entries[] + __typename: 'leaderboard_entries_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 "leaderboard_entries" */ +export type leaderboard_entries_select_column = 'matches_played' | 'player_avatar_url' | 'player_country' | 'player_custom_avatar_url' | 'player_name' | 'player_steam_id' | 'secondary_value' | 'tertiary_value' | 'value' -/** 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 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' +} -/** columns and relationships of "league_seasons" */ -export interface league_seasons { - auto_regular_season_format: Scalars['Boolean'] - /** An array relationship */ - awards: award_recipients[] - /** An aggregate relationship */ - awards_aggregate: award_recipients_aggregate - /** A computed field, executes function "can_register_for_league_season" */ - can_register: (Scalars['Boolean'] | null) +/** 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 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 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 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_divisions" */ +export interface league_divisions { 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' + tier: Scalars['smallint'] + __typename: 'league_divisions' } -/** aggregated selection of "league_seasons" */ -export interface league_seasons_aggregate { - aggregate: (league_seasons_aggregate_fields | null) - nodes: league_seasons[] - __typename: 'league_seasons_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_seasons" */ -export interface league_seasons_aggregate_fields { - avg: (league_seasons_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_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' + 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_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' +export interface league_divisions_avg_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_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' +/** 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_seasons_max_fields { +export interface league_divisions_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' + tier: (Scalars['smallint'] | null) + __typename: 'league_divisions_max_fields' } /** aggregate min on columns */ -export interface league_seasons_min_fields { +export interface league_divisions_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' + tier: (Scalars['smallint'] | null) + __typename: 'league_divisions_min_fields' } -/** response of any mutation on the table "league_seasons" */ -export interface league_seasons_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_seasons[] - __typename: 'league_seasons_mutation_response' + returning: league_divisions[] + __typename: 'league_divisions_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' +/** select columns of table "league_divisions" */ +export type league_divisions_select_column = 'created_at' | 'id' | 'name' | 'tier' /** 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' +export interface league_divisions_stddev_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_stddev_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' +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_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' +export interface league_divisions_stddev_samp_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_stddev_samp_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' +export interface league_divisions_sum_fields { + tier: (Scalars['smallint'] | null) + __typename: 'league_divisions_sum_fields' } -/** 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' +/** 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_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 league_divisions_var_pop_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_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 league_divisions_var_samp_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_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 league_divisions_variance_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_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_match_weeks" */ +export interface league_match_weeks { + closes_at: Scalars['timestamptz'] 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) + default_match_at: Scalars['timestamptz'] id: Scalars['uuid'] league_season_id: Scalars['uuid'] - /** An object relationship */ - league_team: league_teams - league_team_id: Scalars['uuid'] + opens_at: Scalars['timestamptz'] /** An object relationship */ season: league_seasons - type: e_league_movement_types_enum - __typename: 'league_team_movements' + week_number: Scalars['Int'] + __typename: 'league_match_weeks' } -/** 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_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_movements" */ -export interface league_team_movements_aggregate_fields { - avg: (league_team_movements_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_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_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_movements_avg_fields { - approved_by_steam_id: (Scalars['Float'] | null) - final_rank: (Scalars['Float'] | null) - __typename: 'league_team_movements_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_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_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_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_match_weeks_max_fields { + closes_at: (Scalars['timestamptz'] | null) created_at: (Scalars['timestamptz'] | null) - final_rank: (Scalars['Int'] | null) - final_to_division_id: (Scalars['uuid'] | null) - from_division_id: (Scalars['uuid'] | null) + default_match_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) league_season_id: (Scalars['uuid'] | null) - league_team_id: (Scalars['uuid'] | null) - __typename: 'league_team_movements_max_fields' + opens_at: (Scalars['timestamptz'] | null) + week_number: (Scalars['Int'] | null) + __typename: 'league_match_weeks_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_match_weeks_min_fields { + closes_at: (Scalars['timestamptz'] | null) created_at: (Scalars['timestamptz'] | null) - final_rank: (Scalars['Int'] | null) - final_to_division_id: (Scalars['uuid'] | null) - from_division_id: (Scalars['uuid'] | null) + default_match_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) league_season_id: (Scalars['uuid'] | null) - league_team_id: (Scalars['uuid'] | null) - __typename: 'league_team_movements_min_fields' + 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_movements" */ -export interface league_team_movements_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_movements[] - __typename: 'league_team_movements_mutation_response' + returning: league_match_weeks[] + __typename: 'league_match_weeks_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_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_movements_stddev_fields { - approved_by_steam_id: (Scalars['Float'] | null) - final_rank: (Scalars['Float'] | null) - __typename: 'league_team_movements_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_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_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_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_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_movements_sum_fields { - approved_by_steam_id: (Scalars['bigint'] | null) - final_rank: (Scalars['Int'] | null) - __typename: 'league_team_movements_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_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_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_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_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_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_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_movements_variance_fields { - approved_by_steam_id: (Scalars['Float'] | null) - final_rank: (Scalars['Float'] | null) - __typename: 'league_team_movements_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_rosters" */ -export interface league_team_rosters { - added_at: Scalars['timestamptz'] - league_team_season_id: Scalars['uuid'] +/** columns and relationships of "league_relegation_playoffs" */ +export interface league_relegation_playoffs { + created_at: Scalars['timestamptz'] /** 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 + higher_division: league_divisions + higher_division_id: Scalars['uuid'] + higher_slots: Scalars['Int'] + id: Scalars['uuid'] + league_season_id: Scalars['uuid'] /** An object relationship */ - team_season: league_team_seasons - __typename: 'league_team_rosters' + lower_division: league_divisions + lower_division_id: Scalars['uuid'] + resolved_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + season: league_seasons + /** An object relationship */ + tournament: (tournaments | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'league_relegation_playoffs' } -/** 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_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_rosters" */ -export interface league_team_rosters_aggregate_fields { - avg: (league_team_rosters_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_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_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_rosters_avg_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_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_rosters" */ -export type league_team_rosters_constraint = 'league_team_rosters_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_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_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' } /** 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_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' } -/** 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_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_rosters[] - __typename: 'league_team_rosters_mutation_response' + returning: league_relegation_playoffs[] + __typename: 'league_relegation_playoffs_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_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_rosters_stddev_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_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_rosters_stddev_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_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_rosters_stddev_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_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_rosters_sum_fields { - player_steam_id: (Scalars['bigint'] | null) - __typename: 'league_team_rosters_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_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_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_rosters_var_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_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_rosters_var_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_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_rosters_variance_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_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_team_seasons" */ -export interface league_team_seasons { - /** An object relationship */ - assigned_division: (league_divisions | null) - assigned_division_id: (Scalars['uuid'] | null) +/** columns and relationships of "league_scheduling_proposals" */ +export interface league_scheduling_proposals { /** An object relationship */ - captain: (players | null) - captain_steam_id: (Scalars['bigint'] | null) + bracket: tournament_brackets created_at: Scalars['timestamptz'] - decline_reason: (Scalars['String'] | null) /** An object relationship */ - e_registration_status: e_league_registration_statuses + e_proposal_status: e_league_proposal_statuses 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) + message: (Scalars['String'] | 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 + 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 */ - season: league_seasons - seed: (Scalars['Int'] | null) - status: e_league_registration_statuses_enum + responded_by: (players | null) + responded_by_steam_id: (Scalars['bigint'] | null) + status: e_league_proposal_statuses_enum /** An object relationship */ - tournament_team: (tournament_teams | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'league_team_seasons' + team_season: (league_team_seasons | null) + tournament_bracket_id: Scalars['uuid'] + __typename: 'league_scheduling_proposals' } -/** 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_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_team_seasons" */ -export interface league_team_seasons_aggregate_fields { - avg: (league_team_seasons_avg_fields | null) +/** 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_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_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' } /** 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_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_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_scheduling_proposals" */ +export type league_scheduling_proposals_constraint = 'league_scheduling_proposals_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_scheduling_proposals_max_fields { created_at: (Scalars['timestamptz'] | null) - decline_reason: (Scalars['String'] | 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' + 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_team_seasons_min_fields { - assigned_division_id: (Scalars['uuid'] | null) - captain_steam_id: (Scalars['bigint'] | null) +export interface league_scheduling_proposals_min_fields { created_at: (Scalars['timestamptz'] | null) - decline_reason: (Scalars['String'] | 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' + 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_team_seasons" */ -export interface league_team_seasons_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_team_seasons[] - __typename: 'league_team_seasons_mutation_response' + returning: league_scheduling_proposals[] + __typename: 'league_scheduling_proposals_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_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' /** 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_scheduling_proposals_stddev_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + responded_by_steam_id: (Scalars['Float'] | null) + __typename: 'league_scheduling_proposals_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_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' } /** 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_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 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_scheduling_proposals_sum_fields { + proposed_by_steam_id: (Scalars['bigint'] | null) + responded_by_steam_id: (Scalars['bigint'] | null) + __typename: 'league_scheduling_proposals_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_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 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_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 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_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' } /** 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_scheduling_proposals_variance_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + responded_by_steam_id: (Scalars['Float'] | null) + __typename: 'league_scheduling_proposals_variance_fields' } -/** columns and relationships of "league_teams" */ -export interface league_teams { +/** columns and relationships of "league_season_divisions" */ +export interface league_season_divisions { created_at: Scalars['timestamptz'] + /** An object relationship */ + division: league_divisions id: Scalars['uuid'] - /** An array relationship */ - movements: league_team_movements[] - /** An aggregate relationship */ - movements_aggregate: league_team_movements_aggregate + league_division_id: Scalars['uuid'] + league_season_id: Scalars['uuid'] /** An object relationship */ - team: teams - team_id: Scalars['uuid'] + season: league_seasons /** An array relationship */ - team_seasons: league_team_seasons[] + standings: v_league_division_standings[] /** An aggregate relationship */ - team_seasons_aggregate: league_team_seasons_aggregate - __typename: 'league_teams' + 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 "league_teams" */ -export interface league_teams_aggregate { - aggregate: (league_teams_aggregate_fields | null) - nodes: league_teams[] - __typename: 'league_teams_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 "league_teams" */ -export interface league_teams_aggregate_fields { +/** aggregate fields of "league_season_divisions" */ +export interface league_season_divisions_aggregate_fields { count: Scalars['Int'] - max: (league_teams_max_fields | null) - min: (league_teams_min_fields | null) - __typename: 'league_teams_aggregate_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 "league_teams" */ -export type league_teams_constraint = 'league_teams_pkey' | 'league_teams_team_id_key' +/** 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 league_teams_max_fields { +export interface league_season_divisions_max_fields { created_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'league_teams_max_fields' + 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 league_teams_min_fields { +export interface league_season_divisions_min_fields { created_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'league_teams_min_fields' + 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 "league_teams" */ -export interface league_teams_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: league_teams[] - __typename: 'league_teams_mutation_response' + returning: league_season_divisions[] + __typename: 'league_season_divisions_mutation_response' } -/** select columns of table "league_teams" */ -export type league_teams_select_column = 'created_at' | 'id' | 'team_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' -/** update columns of table "league_teams" */ -export type league_teams_update_column = 'created_at' | 'id' | 'team_id' +/** 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' -/** columns and relationships of "lobbies" */ -export interface lobbies { - access: e_lobby_access_enum +/** columns and relationships of "league_seasons" */ +export interface league_seasons { + auto_regular_season_format: Scalars['Boolean'] + /** An array relationship */ + awards: award_recipients[] + /** An aggregate relationship */ + awards_aggregate: award_recipients_aggregate + /** 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_lobby_access: e_lobby_access + 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 */ - players: lobby_players[] + match_weeks: league_match_weeks[] /** An aggregate relationship */ - players_aggregate: lobby_players_aggregate - __typename: 'lobbies' + 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 "lobbies" */ -export interface lobbies_aggregate { - aggregate: (lobbies_aggregate_fields | null) - nodes: lobbies[] - __typename: 'lobbies_aggregate' +/** 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 "lobbies" */ -export interface lobbies_aggregate_fields { +/** aggregate fields of "league_seasons" */ +export interface league_seasons_aggregate_fields { + avg: (league_seasons_avg_fields | null) count: Scalars['Int'] - max: (lobbies_max_fields | null) - min: (lobbies_min_fields | null) - __typename: 'lobbies_aggregate_fields' + 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' } -/** unique or primary key constraints on table "lobbies" */ -export type lobbies_constraint = 'lobbies_pkey' +/** 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 lobbies_max_fields { +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) - __typename: 'lobbies_max_fields' + 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 lobbies_min_fields { +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) - __typename: 'lobbies_min_fields' + 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 "lobbies" */ -export interface lobbies_mutation_response { +/** 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: lobbies[] - __typename: 'lobbies_mutation_response' + returning: league_seasons[] + __typename: 'league_seasons_mutation_response' } -/** select columns of table "lobbies" */ -export type lobbies_select_column = 'access' | 'created_at' | 'id' +/** 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' -/** update columns of table "lobbies" */ -export type lobbies_update_column = 'access' | 'created_at' | 'id' +/** 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' +} -/** columns and relationships of "lobby_players" */ -export interface lobby_players { - captain: Scalars['Boolean'] - invited_by_steam_id: (Scalars['bigint'] | null) - /** An object relationship */ - lobby: lobbies - lobby_id: Scalars['uuid'] - /** An object relationship */ - player: players - status: e_lobby_player_status_enum - steam_id: Scalars['bigint'] - __typename: 'lobby_players' +/** 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' } -/** aggregated selection of "lobby_players" */ -export interface lobby_players_aggregate { - aggregate: (lobby_players_aggregate_fields | null) - nodes: lobby_players[] - __typename: 'lobby_players_aggregate' +/** 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 fields of "lobby_players" */ -export interface lobby_players_aggregate_fields { - avg: (lobby_players_avg_fields | null) - 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 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' } -/** 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' +/** 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 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' } -/** unique or primary key constraints on table "lobby_players" */ -export type lobby_players_constraint = 'lobby_players_pkey' +/** 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' +} + + +/** 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' +} + + +/** 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) + 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' +} + + +/** 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 "league_team_movements" */ +export interface league_team_movements_aggregate_fields { + avg: (league_team_movements_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' +} + + +/** 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 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_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) + league_season_id: (Scalars['uuid'] | null) + league_team_id: (Scalars['uuid'] | null) + __typename: 'league_team_movements_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_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) + 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 "lobby_players" */ -export interface lobby_players_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: lobby_players[] - __typename: 'lobby_players_mutation_response' + returning: league_team_movements[] + __typename: 'league_team_movements_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 "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' +/** 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' /** 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_team_movements_stddev_fields { + approved_by_steam_id: (Scalars['Float'] | null) + final_rank: (Scalars['Float'] | null) + __typename: 'league_team_movements_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_team_movements_stddev_pop_fields { + approved_by_steam_id: (Scalars['Float'] | null) + final_rank: (Scalars['Float'] | null) + __typename: 'league_team_movements_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_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 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_team_movements_sum_fields { + approved_by_steam_id: (Scalars['bigint'] | null) + final_rank: (Scalars['Int'] | null) + __typename: 'league_team_movements_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_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 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_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 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_team_movements_var_samp_fields { + approved_by_steam_id: (Scalars['Float'] | null) + final_rank: (Scalars['Float'] | null) + __typename: 'league_team_movements_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_team_movements_variance_fields { + approved_by_steam_id: (Scalars['Float'] | null) + final_rank: (Scalars['Float'] | null) + __typename: 'league_team_movements_variance_fields' } -/** columns and relationships of "map_pools" */ -export interface map_pools { +/** 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 */ - e_type: e_map_pool_types - enabled: Scalars['Boolean'] - 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' + 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 */ + team_season: league_team_seasons + __typename: 'league_team_rosters' } -/** 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_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 "map_pools" */ -export interface map_pools_aggregate_fields { +/** aggregate fields of "league_team_rosters" */ +export interface league_team_rosters_aggregate_fields { + avg: (league_team_rosters_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_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' } -/** 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_rosters_avg_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_avg_fields' +} + + +/** 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 map_pools_max_fields { - id: (Scalars['uuid'] | null) - __typename: 'map_pools_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 map_pools_min_fields { - id: (Scalars['uuid'] | null) - __typename: 'map_pools_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 "map_pools" */ -export interface map_pools_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: map_pools[] - __typename: 'map_pools_mutation_response' + returning: league_team_rosters[] + __typename: 'league_team_rosters_mutation_response' } -/** select columns of table "map_pools" */ -export type map_pools_select_column = 'enabled' | 'id' | 'seed' | 'type' +/** 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' -/** update columns of table "map_pools" */ -export type map_pools_update_column = 'enabled' | 'id' | 'seed' | 'type' +/** aggregate stddev on columns */ +export interface league_team_rosters_stddev_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_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_rosters_stddev_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_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_rosters_stddev_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_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_rosters_sum_fields { + player_steam_id: (Scalars['bigint'] | null) + __typename: 'league_team_rosters_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_rosters" */ +export type league_team_rosters_update_column = 'added_at' | 'league_team_season_id' | 'player_steam_id' | 'removed_at' | 'removed_reason' | 'status' -/** 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_rosters_var_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_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_rosters_var_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_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_rosters_variance_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_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 { +/** 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'] - /** A computed field, executes function "clip_download_url" */ - download_url: (Scalars['String'] | null) - duration_ms: (Scalars['Int'] | null) - file: (Scalars['String'] | null) + decline_reason: (Scalars['String'] | null) + /** An object relationship */ + e_registration_status: e_league_registration_statuses id: Scalars['uuid'] - kills_count: (Scalars['Int'] | null) + league_season_id: Scalars['uuid'] /** An object relationship */ - match_map: match_maps + league_team: league_teams + league_team_id: Scalars['uuid'] /** An object relationship */ - match_map_demo: (match_map_demos | null) - match_map_demo_id: (Scalars['uuid'] | null) - match_map_id: Scalars['uuid'] + 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 */ - render_jobs: clip_render_jobs[] + roster: league_team_rosters[] /** An aggregate relationship */ - render_jobs_aggregate: clip_render_jobs_aggregate - round: (Scalars['Int'] | null) - size: Scalars['bigint'] + roster_aggregate: league_team_rosters_aggregate /** 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) + season: league_seasons + seed: (Scalars['Int'] | null) + status: e_league_registration_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' -} - - -/** aggregated selection of "match_clips" */ -export interface match_clips_aggregate { - aggregate: (match_clips_aggregate_fields | null) - nodes: match_clips[] - __typename: 'match_clips_aggregate' + tournament_team: (tournament_teams | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'league_team_seasons' } -/** aggregate fields of "match_clips" */ -export interface match_clips_aggregate_fields { - avg: (match_clips_avg_fields | null) +/** 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 "league_team_seasons" */ +export interface league_team_seasons_aggregate_fields { + avg: (league_team_seasons_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_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_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_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_clips" */ -export type match_clips_constraint = 'match_clips_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_clips_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) - /** A computed field, executes function "clip_download_url" */ - download_url: (Scalars['String'] | null) - duration_ms: (Scalars['Int'] | null) - file: (Scalars['String'] | null) + decline_reason: (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' + 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_clips_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) - /** A computed field, executes function "clip_download_url" */ - download_url: (Scalars['String'] | null) - duration_ms: (Scalars['Int'] | null) - file: (Scalars['String'] | null) + decline_reason: (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' + 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_clips" */ -export interface match_clips_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_clips[] - __typename: 'match_clips_mutation_response' + returning: league_team_seasons[] + __typename: 'league_team_seasons_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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' } -/** columns and relationships of "match_demo_sessions" */ -export interface match_demo_sessions { +/** columns and relationships of "league_teams" */ +export interface league_teams { created_at: Scalars['timestamptz'] - 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'] - 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_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 array relationship */ + movements: league_team_movements[] + /** An aggregate relationship */ + movements_aggregate: league_team_movements_aggregate /** An object relationship */ - watcher: players - watcher_steam_id: Scalars['bigint'] - __typename: 'match_demo_sessions' + 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_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_teams" */ +export interface league_teams_aggregate { + aggregate: (league_teams_aggregate_fields | null) + nodes: league_teams[] + __typename: 'league_teams_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_teams" */ +export interface league_teams_aggregate_fields { 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' -} - - -/** aggregate avg on columns */ -export interface match_demo_sessions_avg_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_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_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_teams" */ +export type league_teams_constraint = 'league_teams_pkey' | 'league_teams_team_id_key' /** aggregate max on columns */ -export interface match_demo_sessions_max_fields { +export interface league_teams_max_fields { 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_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' + team_id: (Scalars['uuid'] | null) + __typename: 'league_teams_max_fields' } /** aggregate min on columns */ -export interface match_demo_sessions_min_fields { +export interface league_teams_min_fields { 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_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' + team_id: (Scalars['uuid'] | null) + __typename: 'league_teams_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_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_demo_sessions[] - __typename: 'match_demo_sessions_mutation_response' + returning: league_teams[] + __typename: 'league_teams_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_teams" */ +export type league_teams_select_column = 'created_at' | 'id' | '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' -} +/** update columns of table "league_teams" */ +export type league_teams_update_column = 'created_at' | 'id' | 'team_id' -/** 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' +/** 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_samp on columns */ -export interface match_demo_sessions_stddev_samp_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_stddev_samp_fields' +/** aggregated selection of "lobbies" */ +export interface lobbies_aggregate { + aggregate: (lobbies_aggregate_fields | null) + nodes: lobbies[] + __typename: 'lobbies_aggregate' } -/** aggregate sum on columns */ -export interface match_demo_sessions_sum_fields { - watcher_steam_id: (Scalars['bigint'] | null) - __typename: 'match_demo_sessions_sum_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' } -/** 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' +/** unique or primary key constraints on table "lobbies" */ +export type lobbies_constraint = 'lobbies_pkey' -/** 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 max on columns */ +export interface lobbies_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + __typename: 'lobbies_max_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 min on columns */ +export interface lobbies_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + __typename: 'lobbies_min_fields' } -/** aggregate variance on columns */ -export interface match_demo_sessions_variance_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_variance_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' } -/** relational table for assigning a players to a match and lineup */ -export interface match_lineup_players { +/** 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'] - checked_in: Scalars['Boolean'] - discord_id: (Scalars['String'] | null) - id: Scalars['uuid'] - is_connected: Scalars['Boolean'] + invited_by_steam_id: (Scalars['bigint'] | null) /** An object relationship */ - lineup: match_lineups - match_lineup_id: Scalars['uuid'] - party_id: (Scalars['uuid'] | null) - party_source: (e_match_party_sources_enum | null) - placeholder_name: (Scalars['String'] | null) + lobby: lobbies + lobby_id: Scalars['uuid'] /** An object relationship */ - player: (players | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineup_players' + player: players + status: e_lobby_player_status_enum + steam_id: Scalars['bigint'] + __typename: 'lobby_players' } -/** 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 "lobby_players" */ +export interface lobby_players_aggregate { + aggregate: (lobby_players_aggregate_fields | null) + nodes: lobby_players[] + __typename: 'lobby_players_aggregate' } -/** aggregate fields of "match_lineup_players" */ -export interface match_lineup_players_aggregate_fields { - avg: (match_lineup_players_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_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' + 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_lineup_players_avg_fields { +export interface lobby_players_avg_fields { + invited_by_steam_id: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_avg_fields' + __typename: 'lobby_players_avg_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 "lobby_players" */ +export type lobby_players_constraint = 'lobby_players_pkey' /** aggregate max on columns */ -export interface match_lineup_players_max_fields { - discord_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - party_id: (Scalars['uuid'] | null) - placeholder_name: (Scalars['String'] | null) +export interface lobby_players_max_fields { + invited_by_steam_id: (Scalars['bigint'] | null) + lobby_id: (Scalars['uuid'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineup_players_max_fields' + __typename: 'lobby_players_max_fields' } /** aggregate min on columns */ -export interface match_lineup_players_min_fields { - discord_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - party_id: (Scalars['uuid'] | null) - placeholder_name: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineup_players_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_lineup_players" */ -export interface match_lineup_players_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_lineup_players[] - __typename: 'match_lineup_players_mutation_response' + returning: lobby_players[] + __typename: 'lobby_players_mutation_response' } -/** select columns of table "match_lineup_players" */ -export type match_lineup_players_select_column = 'captain' | 'checked_in' | 'discord_id' | 'id' | 'is_connected' | 'match_lineup_id' | 'party_id' | 'party_source' | 'placeholder_name' | 'steam_id' +/** select columns of table "lobby_players" */ +export type lobby_players_select_column = 'captain' | 'invited_by_steam_id' | 'lobby_id' | 'status' | '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' | 'is_connected' +/** 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 "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' | 'is_connected' +/** 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_lineup_players_stddev_fields { +export interface lobby_players_stddev_fields { + invited_by_steam_id: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_stddev_fields' + __typename: 'lobby_players_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface match_lineup_players_stddev_pop_fields { +export interface lobby_players_stddev_pop_fields { + invited_by_steam_id: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_stddev_pop_fields' + __typename: 'lobby_players_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface match_lineup_players_stddev_samp_fields { +export interface lobby_players_stddev_samp_fields { + invited_by_steam_id: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_stddev_samp_fields' + __typename: 'lobby_players_stddev_samp_fields' } /** aggregate sum on columns */ -export interface match_lineup_players_sum_fields { +export interface lobby_players_sum_fields { + invited_by_steam_id: (Scalars['bigint'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineup_players_sum_fields' + __typename: 'lobby_players_sum_fields' } -/** update columns of table "match_lineup_players" */ -export type match_lineup_players_update_column = 'captain' | 'checked_in' | 'discord_id' | 'id' | 'is_connected' | 'match_lineup_id' | 'party_id' | 'party_source' | 'placeholder_name' | 'steam_id' +/** 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_lineup_players_var_pop_fields { +export interface lobby_players_var_pop_fields { + invited_by_steam_id: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_var_pop_fields' + __typename: 'lobby_players_var_pop_fields' } /** aggregate var_samp on columns */ -export interface match_lineup_players_var_samp_fields { +export interface lobby_players_var_samp_fields { + invited_by_steam_id: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_var_samp_fields' + __typename: 'lobby_players_var_samp_fields' } /** aggregate variance on columns */ -export interface match_lineup_players_variance_fields { +export interface lobby_players_variance_fields { + invited_by_steam_id: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_variance_fields' + __typename: 'lobby_players_variance_fields' } -/** 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) +/** columns and relationships of "map_pools" */ +export interface map_pools { /** An object relationship */ - coach: (players | null) - coach_steam_id: (Scalars['bigint'] | null) + e_type: e_map_pool_types + enabled: Scalars['Boolean'] 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 - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) /** An array relationship */ - match_veto_picks: match_map_veto_picks[] + maps: v_pool_maps[] /** 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 */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - team_name: (Scalars['String'] | null) - __typename: 'match_lineups' + maps_aggregate: v_pool_maps_aggregate + seed: Scalars['Boolean'] + type: e_map_pool_types_enum + __typename: 'map_pools' } -/** 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 "map_pools" */ +export interface map_pools_aggregate { + aggregate: (map_pools_aggregate_fields | null) + nodes: map_pools[] + __typename: 'map_pools_aggregate' } -/** aggregate fields of "match_lineups" */ -export interface match_lineups_aggregate_fields { - avg: (match_lineups_avg_fields | null) +/** aggregate fields of "map_pools" */ +export interface map_pools_aggregate_fields { 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' -} - - -/** aggregate avg on columns */ -export interface match_lineups_avg_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_avg_fields' + max: (map_pools_max_fields | null) + min: (map_pools_min_fields | null) + __typename: 'map_pools_aggregate_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 "map_pools" */ +export type map_pools_constraint = 'map_pools_pkey' /** aggregate max on columns */ -export interface match_lineups_max_fields { - coach_steam_id: (Scalars['bigint'] | null) +export interface map_pools_max_fields { 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' + __typename: 'map_pools_max_fields' } /** aggregate min on columns */ -export interface match_lineups_min_fields { - coach_steam_id: (Scalars['bigint'] | null) +export interface map_pools_min_fields { 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' + __typename: 'map_pools_min_fields' } -/** response of any mutation on the table "match_lineups" */ -export interface match_lineups_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_lineups[] - __typename: 'match_lineups_mutation_response' + returning: map_pools[] + __typename: 'map_pools_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 "map_pools" */ +export type map_pools_select_column = 'enabled' | 'id' | 'seed' | 'type' -/** aggregate stddev on columns */ -export interface match_lineups_stddev_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_stddev_fields' -} +/** update columns of table "map_pools" */ +export type map_pools_update_column = 'enabled' | 'id' | 'seed' | 'type' -/** aggregate stddev_pop on columns */ -export interface match_lineups_stddev_pop_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_stddev_pop_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_samp on columns */ -export interface match_lineups_stddev_samp_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_stddev_samp_fields' +/** aggregated selection of "maps" */ +export interface maps_aggregate { + aggregate: (maps_aggregate_fields | null) + nodes: maps[] + __typename: 'maps_aggregate' } -/** aggregate sum on columns */ -export interface match_lineups_sum_fields { - coach_steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineups_sum_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' } -/** update columns of table "match_lineups" */ -export type match_lineups_update_column = 'coach_steam_id' | 'id' | 'match_id' | 'team_id' | 'team_name' +/** unique or primary key constraints on table "maps" */ +export type maps_constraint = 'maps_name_type_key' | 'maps_pkey' -/** aggregate var_pop on columns */ -export interface match_lineups_var_pop_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_var_pop_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' } -/** aggregate var_samp on columns */ -export interface match_lineups_var_samp_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_var_samp_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 variance on columns */ -export interface match_lineups_variance_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_variance_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' } -/** 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 +/** 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'] - 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" */ + /** A computed field, executes function "clip_download_url" */ download_url: (Scalars['String'] | null) - duration_seconds: (Scalars['Float'] | null) - file: Scalars['String'] - geometry_validated: (Scalars['Boolean'] | null) + duration_ms: (Scalars['Int'] | null) + file: (Scalars['String'] | null) id: Scalars['uuid'] - kills: (Scalars['jsonb'] | null) - map_name: (Scalars['String'] | null) + kills_count: (Scalars['Int'] | null) /** An object relationship */ - match: matches + 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 */ - match_clips: match_clips[] + render_jobs: clip_render_jobs[] /** An aggregate relationship */ - match_clips_aggregate: match_clips_aggregate - match_id: Scalars['uuid'] + render_jobs_aggregate: clip_render_jobs_aggregate + round: (Scalars['Int'] | null) + size: Scalars['bigint'] /** 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' + 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_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 "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_demos" */ -export interface match_map_demos_aggregate_fields { - avg: (match_map_demos_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_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: (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_demos_avg_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) +export interface match_clips_avg_fields { + duration_ms: (Scalars['Float'] | null) + kills_count: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) size: (Scalars['Float'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_avg_fields' + 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_demos" */ -export type match_map_demos_constraint = 'match_demos_pkey' | 'match_map_demos_match_map_id_file_key' +/** 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_demos_max_fields { +export interface match_clips_max_fields { created_at: (Scalars['timestamptz'] | null) - cs2_build: (Scalars['String'] | null) - /** A computed field, executes function "demo_download_url" */ + /** A computed field, executes function "clip_download_url" */ download_url: (Scalars['String'] | null) - duration_seconds: (Scalars['Float'] | null) + duration_ms: (Scalars['Int'] | null) file: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - map_name: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) + kills_count: (Scalars['Int'] | null) + match_map_demo_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' + 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' } /** aggregate min on columns */ -export interface match_map_demos_min_fields { +export interface match_clips_min_fields { created_at: (Scalars['timestamptz'] | null) - cs2_build: (Scalars['String'] | null) - /** A computed field, executes function "demo_download_url" */ + /** A computed field, executes function "clip_download_url" */ download_url: (Scalars['String'] | null) - duration_seconds: (Scalars['Float'] | null) + duration_ms: (Scalars['Int'] | null) file: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - map_name: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) + kills_count: (Scalars['Int'] | null) + match_map_demo_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' + 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' } -/** response of any mutation on the table "match_map_demos" */ -export interface match_map_demos_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_demos[] - __typename: 'match_map_demos_mutation_response' + returning: match_clips[] + __typename: 'match_clips_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 "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' - - -/** 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' +/** 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_demos_stddev_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) +export interface match_clips_stddev_fields { + duration_ms: (Scalars['Float'] | null) + kills_count: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) size: (Scalars['Float'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_stddev_fields' + 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_demos_stddev_pop_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) +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) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_stddev_pop_fields' + 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_demos_stddev_samp_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) +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) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_stddev_samp_fields' + 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_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' +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' } -/** 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' +/** 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_demos_var_pop_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) +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) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_var_pop_fields' + 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_demos_var_samp_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) +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) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_var_samp_fields' + 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_demos_variance_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) +export interface match_clips_variance_fields { + duration_ms: (Scalars['Float'] | null) + kills_count: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) size: (Scalars['Float'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_variance_fields' + 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_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) +/** columns and relationships of "match_demo_sessions" */ +export interface match_demo_sessions { created_at: Scalars['timestamptz'] - deleted_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "has_backup_file" */ - has_backup_file: (Scalars['Boolean'] | null) + 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'] - /** 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'] + 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_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' + 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' } -/** 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_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_map_rounds" */ -export interface match_map_rounds_aggregate_fields { - avg: (match_map_rounds_avg_fields | null) +/** 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_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_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' } /** 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' +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_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_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_rounds_max_fields { - backup_file: (Scalars['String'] | null) +export interface match_demo_sessions_max_fields { created_at: (Scalars['timestamptz'] | null) - deleted_at: (Scalars['timestamptz'] | null) + error_message: (Scalars['String'] | null) + game_server_node_id: (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) + 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) - round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - winning_side: (Scalars['String'] | null) - __typename: 'match_map_rounds_max_fields' + 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_rounds_min_fields { - backup_file: (Scalars['String'] | null) +export interface match_demo_sessions_min_fields { created_at: (Scalars['timestamptz'] | null) - deleted_at: (Scalars['timestamptz'] | null) + error_message: (Scalars['String'] | null) + game_server_node_id: (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) + 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) - round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - winning_side: (Scalars['String'] | null) - __typename: 'match_map_rounds_min_fields' + 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_rounds" */ -export interface match_map_rounds_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_rounds[] - __typename: 'match_map_rounds_mutation_response' + returning: match_demo_sessions[] + __typename: 'match_demo_sessions_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_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' /** 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) - round: (Scalars['Float'] | null) - __typename: 'match_map_rounds_stddev_fields' +export interface match_demo_sessions_stddev_fields { + watcher_steam_id: (Scalars['Float'] | null) + __typename: 'match_demo_sessions_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) - round: (Scalars['Float'] | null) - __typename: 'match_map_rounds_stddev_pop_fields' +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_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' +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_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' +export interface match_demo_sessions_sum_fields { + watcher_steam_id: (Scalars['bigint'] | null) + __typename: 'match_demo_sessions_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_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_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' +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_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' +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_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' +export interface match_demo_sessions_variance_fields { + watcher_steam_id: (Scalars['Float'] | null) + __typename: 'match_demo_sessions_variance_fields' } -/** columns and relationships of "match_map_veto_picks" */ -export interface match_map_veto_picks { - auto_picked: Scalars['Boolean'] - created_at: Scalars['timestamptz'] +/** 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'] + is_connected: Scalars['Boolean'] /** 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 + lineup: match_lineups match_lineup_id: Scalars['uuid'] - side: (Scalars['String'] | null) - type: e_veto_pick_types_enum - __typename: 'match_map_veto_picks' + party_id: (Scalars['uuid'] | null) + party_source: (e_match_party_sources_enum | null) + placeholder_name: (Scalars['String'] | null) + /** An object relationship */ + player: (players | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'match_lineup_players' } -/** 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' +/** 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_map_veto_picks" */ -export interface match_map_veto_picks_aggregate_fields { +/** 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_map_veto_picks_max_fields | null) - min: (match_map_veto_picks_min_fields | null) - __typename: 'match_map_veto_picks_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' } -/** 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_lineup_players_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_avg_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' /** aggregate max on columns */ -export interface match_map_veto_picks_max_fields { - created_at: (Scalars['timestamptz'] | null) +export interface match_lineup_players_max_fields { + discord_id: (Scalars['String'] | 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' + party_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_map_veto_picks_min_fields { - created_at: (Scalars['timestamptz'] | null) +export interface match_lineup_players_min_fields { + discord_id: (Scalars['String'] | 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' + party_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_map_veto_picks" */ -export interface match_map_veto_picks_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_map_veto_picks[] - __typename: 'match_map_veto_picks_mutation_response' + returning: match_lineup_players[] + __typename: 'match_lineup_players_mutation_response' } -/** select columns of table "match_map_veto_picks" */ -export type match_map_veto_picks_select_column = 'auto_picked' | 'created_at' | 'id' | 'map_id' | 'match_id' | 'match_lineup_id' | 'side' | 'type' +/** select columns of table "match_lineup_players" */ +export type match_lineup_players_select_column = 'captain' | 'checked_in' | 'discord_id' | 'id' | 'is_connected' | 'match_lineup_id' | 'party_id' | 'party_source' | 'placeholder_name' | 'steam_id' -/** select "match_map_veto_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_map_veto_picks" */ -export type match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_and_arguments_columns = 'auto_picked' +/** 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' | 'is_connected' -/** select "match_map_veto_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_map_veto_picks" */ -export type match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_or_arguments_columns = 'auto_picked' +/** 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' | 'is_connected' -/** update columns of table "match_map_veto_picks" */ -export type match_map_veto_picks_update_column = 'auto_picked' | 'created_at' | 'id' | 'map_id' | 'match_id' | 'match_lineup_id' | 'side' | 'type' +/** aggregate stddev on columns */ +export interface match_lineup_players_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_stddev_fields' +} -/** columns and relationships of "match_maps" */ -export interface match_maps { - clips_count: Scalars['Int'] - created_at: Scalars['timestamptz'] - demo_processing_started_at: (Scalars['timestamptz'] | null) - /** 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 - 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'] - /** 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 +/** 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 stddev_samp on columns */ +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_lineup_players_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'match_lineup_players_sum_fields' +} + + +/** update columns of table "match_lineup_players" */ +export type match_lineup_players_update_column = 'captain' | 'checked_in' | 'discord_id' | 'id' | 'is_connected' | 'match_lineup_id' | 'party_id' | 'party_source' | 'placeholder_name' | 'steam_id' + + +/** 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' +} + + +/** 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' +} + + +/** aggregate variance on columns */ +export interface match_lineup_players_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_variance_fields' +} + + +/** 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 */ - utility: player_utility[] + lineup_players: match_lineup_players[] /** An aggregate relationship */ - utility_aggregate: player_utility_aggregate + lineup_players_aggregate: match_lineup_players_aggregate + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) /** An array relationship */ - vetos: match_map_veto_picks[] + match_veto_picks: match_map_veto_picks[] /** An aggregate relationship */ - vetos_aggregate: match_map_veto_picks_aggregate - winning_lineup_id: (Scalars['uuid'] | null) - __typename: 'match_maps' + match_veto_picks_aggregate: match_map_veto_picks_aggregate + /** A computed field, executes function "get_team_name" */ + name: (Scalars['String'] | null) + /** An object relationship */ + team: (teams | null) + team_id: (Scalars['uuid'] | null) + team_name: (Scalars['String'] | null) + __typename: 'match_lineups' } -/** 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_lineups" */ +export interface match_lineups_aggregate { + aggregate: (match_lineups_aggregate_fields | null) + nodes: match_lineups[] + __typename: 'match_lineups_aggregate' } -/** aggregate fields of "match_maps" */ -export interface match_maps_aggregate_fields { - avg: (match_maps_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_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_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_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_lineups_avg_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_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_lineups" */ +export type match_lineups_constraint = 'match_teams_pkey' /** aggregate max on columns */ -export interface match_maps_max_fields { - clips_count: (Scalars['Int'] | null) - created_at: (Scalars['timestamptz'] | null) - demo_processing_started_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_lineups_max_fields { + coach_steam_id: (Scalars['bigint'] | 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' + /** 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_maps_min_fields { - clips_count: (Scalars['Int'] | null) - created_at: (Scalars['timestamptz'] | null) - demo_processing_started_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_lineups_min_fields { + coach_steam_id: (Scalars['bigint'] | 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' + /** 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_maps" */ -export interface match_maps_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_maps[] - __typename: 'match_maps_mutation_response' + returning: match_lineups[] + __typename: 'match_lineups_mutation_response' } -/** select columns of table "match_maps" */ -export type match_maps_select_column = 'clips_count' | 'created_at' | 'demo_processing_started_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_lineups" */ +export type match_lineups_select_column = 'coach_steam_id' | 'id' | 'match_id' | 'team_id' | 'team_name' /** 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_lineups_stddev_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_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_lineups_stddev_pop_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_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_lineups_stddev_samp_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_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_lineups_sum_fields { + coach_steam_id: (Scalars['bigint'] | null) + __typename: 'match_lineups_sum_fields' } -/** update columns of table "match_maps" */ -export type match_maps_update_column = 'clips_count' | 'created_at' | 'demo_processing_started_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_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_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_lineups_var_pop_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_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_lineups_var_samp_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_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_lineups_variance_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_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'] - camera_allow_teammates: Scalars['Boolean'] - camera_required: Scalars['Boolean'] - check_in_setting: e_check_in_settings_enum - coaches: Scalars['Boolean'] - default_models: (Scalars['Boolean'] | null) - halftime_pausematch: Scalars['Boolean'] - /** A computed field, executes function "has_active_matches" */ - has_active_matches: (Scalars['Boolean'] | null) +/** 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'] - invite_code: (Scalars['String'] | null) - knife_round: Scalars['Boolean'] - live_match_timeout: (Scalars['Int'] | null) + kills: (Scalars['jsonb'] | null) + map_name: (Scalars['String'] | null) /** An object relationship */ - map_pool: map_pools - map_pool_id: Scalars['uuid'] - map_veto: Scalars['Boolean'] - match_mode: e_match_mode_enum + match: matches /** An array relationship */ - matches: matches[] + match_clips: match_clips[] /** 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) - round_restart_delay: (Scalars['Int'] | 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) + match_clips_aggregate: match_clips_aggregate + match_id: Scalars['uuid'] /** An object relationship */ - tournament_stage: (tournament_stages | null) - tv_delay: Scalars['Int'] - type: e_match_types_enum - veto_pick_timeout: Scalars['Int'] - __typename: 'match_options' + 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_options" */ -export interface match_options_aggregate { - aggregate: (match_options_aggregate_fields | null) - nodes: match_options[] - __typename: 'match_options_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_options" */ -export interface match_options_aggregate_fields { - avg: (match_options_avg_fields | null) +/** 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_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_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' } /** 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) - round_restart_delay: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - veto_pick_timeout: (Scalars['Float'] | null) - __typename: 'match_options_avg_fields' +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_options" */ -export type match_options_constraint = 'match_options_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 match_options_max_fields { - auto_cancel_duration: (Scalars['Int'] | null) - best_of: (Scalars['Int'] | null) +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) - 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) - round_restart_delay: (Scalars['Int'] | null) - tv_delay: (Scalars['Int'] | null) - veto_pick_timeout: (Scalars['Int'] | null) - __typename: 'match_options_max_fields' + 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_options_min_fields { - auto_cancel_duration: (Scalars['Int'] | null) - best_of: (Scalars['Int'] | null) +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) - 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) - round_restart_delay: (Scalars['Int'] | null) - tv_delay: (Scalars['Int'] | null) - veto_pick_timeout: (Scalars['Int'] | null) - __typename: 'match_options_min_fields' + 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' } -/** response of any mutation on the table "match_options" */ -export interface match_options_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_options[] - __typename: 'match_options_mutation_response' + returning: match_map_demos[] + __typename: 'match_map_demos_mutation_response' } -/** select columns of table "match_options" */ -export type match_options_select_column = 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'camera_allow_teammates' | 'camera_required' | 'check_in_setting' | 'coaches' | 'default_models' | 'halftime_pausematch' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'round_restart_delay' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' | 'veto_pick_timeout' +/** 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 "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' + + +/** 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_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) - round_restart_delay: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - veto_pick_timeout: (Scalars['Float'] | null) - __typename: 'match_options_stddev_fields' +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' } /** 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) - round_restart_delay: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - veto_pick_timeout: (Scalars['Float'] | null) - __typename: 'match_options_stddev_pop_fields' +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 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) - round_restart_delay: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - veto_pick_timeout: (Scalars['Float'] | null) - __typename: 'match_options_stddev_samp_fields' +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 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) - round_restart_delay: (Scalars['Int'] | null) - tv_delay: (Scalars['Int'] | null) - veto_pick_timeout: (Scalars['Int'] | null) - __typename: 'match_options_sum_fields' +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' } -/** update columns of table "match_options" */ -export type match_options_update_column = 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'camera_allow_teammates' | 'camera_required' | 'check_in_setting' | 'coaches' | 'default_models' | 'halftime_pausematch' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'round_restart_delay' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' | 'veto_pick_timeout' +/** 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 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) - round_restart_delay: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - veto_pick_timeout: (Scalars['Float'] | null) - __typename: 'match_options_var_pop_fields' +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 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) - round_restart_delay: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - veto_pick_timeout: (Scalars['Float'] | null) - __typename: 'match_options_var_samp_fields' +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' } /** 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) - round_restart_delay: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - veto_pick_timeout: (Scalars['Float'] | null) - __typename: 'match_options_variance_fields' +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' } -/** columns and relationships of "match_region_veto_picks" */ -export interface match_region_veto_picks { - auto_picked: Scalars['Boolean'] +/** 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: 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' + 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' } -/** 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_rounds" */ +export interface match_map_rounds_aggregate { + aggregate: (match_map_rounds_aggregate_fields | null) + nodes: match_map_rounds[] + __typename: 'match_map_rounds_aggregate' } -/** aggregate fields of "match_region_veto_picks" */ -export interface match_region_veto_picks_aggregate_fields { +/** 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_region_veto_picks_max_fields | null) - min: (match_region_veto_picks_min_fields | null) - __typename: 'match_region_veto_picks_aggregate_fields' + 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' } -/** 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_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_region_veto_picks_max_fields { +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) - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - region: (Scalars['String'] | null) - __typename: 'match_region_veto_picks_max_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) + 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_region_veto_picks_min_fields { +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) - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - region: (Scalars['String'] | null) - __typename: 'match_region_veto_picks_min_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) + 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_region_veto_picks" */ -export interface match_region_veto_picks_mutation_response { +/** 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_region_veto_picks[] - __typename: 'match_region_veto_picks_mutation_response' + returning: match_map_rounds[] + __typename: 'match_map_rounds_mutation_response' } -/** select columns of table "match_region_veto_picks" */ -export type match_region_veto_picks_select_column = 'auto_picked' | 'created_at' | 'id' | 'match_id' | 'match_lineup_id' | 'region' | 'type' +/** 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 "match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_region_veto_picks" */ -export type match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns = 'auto_picked' +/** 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) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_stddev_fields' +} -/** select "match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_region_veto_picks" */ -export type match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns = 'auto_picked' +/** 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) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_stddev_pop_fields' +} -/** update columns of table "match_region_veto_picks" */ -export type match_region_veto_picks_update_column = 'auto_picked' | 'created_at' | 'id' | 'match_id' | 'match_lineup_id' | 'region' | 'type' +/** 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) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_stddev_samp_fields' +} -/** 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) +/** 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) + round: (Scalars['Int'] | null) + __typename: 'match_map_rounds_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' + + +/** 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) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_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) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_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) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_variance_fields' +} + + +/** columns and relationships of "match_map_veto_picks" */ +export interface match_map_veto_picks { + auto_picked: Scalars['Boolean'] + created_at: Scalars['timestamptz'] 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 */ + map: maps + map_id: Scalars['uuid'] /** 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' + /** 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_streams" */ -export interface match_streams_aggregate { - aggregate: (match_streams_aggregate_fields | null) - nodes: match_streams[] - __typename: 'match_streams_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_streams" */ -export interface match_streams_aggregate_fields { - avg: (match_streams_avg_fields | null) +/** aggregate fields of "match_map_veto_picks" */ +export interface match_map_veto_picks_aggregate_fields { 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' + 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_streams" */ -export type match_streams_constraint = 'match_streams_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_streams_max_fields { - error_message: (Scalars['String'] | null) - game_server_node_id: (Scalars['String'] | null) +export interface match_map_veto_picks_max_fields { + created_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) - k8s_service_name: (Scalars['String'] | null) - last_status_at: (Scalars['timestamptz'] | null) - link: (Scalars['String'] | null) + map_id: (Scalars['uuid'] | 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' + match_lineup_id: (Scalars['uuid'] | null) + side: (Scalars['String'] | null) + __typename: 'match_map_veto_picks_max_fields' } /** aggregate min on columns */ -export interface match_streams_min_fields { - error_message: (Scalars['String'] | null) - game_server_node_id: (Scalars['String'] | null) +export interface match_map_veto_picks_min_fields { + created_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) - k8s_service_name: (Scalars['String'] | null) - last_status_at: (Scalars['timestamptz'] | null) - link: (Scalars['String'] | null) + map_id: (Scalars['uuid'] | 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' + 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_streams" */ -export interface match_streams_mutation_response { - /** number of rows affected by the mutation */ +/** 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_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' + returning: match_map_veto_picks[] + __typename: 'match_map_veto_picks_mutation_response' } -/** aggregate min on columns */ -export interface match_type_cfgs_min_fields { - cfg: (Scalars['String'] | null) - __typename: 'match_type_cfgs_min_fields' -} +/** select columns of table "match_map_veto_picks" */ +export type match_map_veto_picks_select_column = 'auto_picked' | 'created_at' | 'id' | 'map_id' | 'match_id' | 'match_lineup_id' | 'side' | 'type' -/** 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 "match_map_veto_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_map_veto_picks" */ +export type match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_and_arguments_columns = 'auto_picked' -/** select columns of table "match_type_cfgs" */ -export type match_type_cfgs_select_column = 'cfg' | 'type' +/** select "match_map_veto_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_map_veto_picks" */ +export type match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_or_arguments_columns = 'auto_picked' -/** 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 = 'auto_picked' | '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) + demo_processing_started_at: (Scalars['timestamptz'] | 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 */ @@ -12344,599 +12442,1581 @@ 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_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) - share_code: (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) - veto_pick_expires_at: (Scalars['timestamptz'] | 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' + 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' } /** 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' +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 "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' +/** 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) + demo_processing_started_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_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) - share_code: (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) - veto_pick_expires_at: (Scalars['timestamptz'] | 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) + demo_processing_started_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_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) - share_code: (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) - veto_pick_expires_at: (Scalars['timestamptz'] | 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' | 'share_code' | 'source' | 'started_at' | 'status' | 'veto_pick_expires_at' | 'winning_lineup_id' +/** select columns of table "match_maps" */ +export type match_maps_select_column = 'clips_count' | 'created_at' | 'demo_processing_started_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' | 'share_code' | 'source' | 'started_at' | 'status' | 'veto_pick_expires_at' | 'winning_lineup_id' +/** update columns of table "match_maps" */ +export type match_maps_update_column = 'clips_count' | 'created_at' | 'demo_processing_started_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'] + camera_allow_teammates: Scalars['Boolean'] + camera_required: Scalars['Boolean'] + check_in_setting: e_check_in_settings_enum + coaches: Scalars['Boolean'] + default_models: (Scalars['Boolean'] | null) + /** An object relationship */ + game_mode: (game_modes | null) + game_mode_id: (Scalars['uuid'] | null) + halftime_pausematch: Scalars['Boolean'] + /** 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) + round_restart_delay: (Scalars['Int'] | 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 + veto_pick_timeout: Scalars['Int'] + __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) + round_restart_delay: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + veto_pick_timeout: (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) + game_mode_id: (Scalars['uuid'] | 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) + round_restart_delay: (Scalars['Int'] | null) + tv_delay: (Scalars['Int'] | null) + veto_pick_timeout: (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) + game_mode_id: (Scalars['uuid'] | 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) + round_restart_delay: (Scalars['Int'] | null) + tv_delay: (Scalars['Int'] | null) + veto_pick_timeout: (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' | 'camera_allow_teammates' | 'camera_required' | 'check_in_setting' | 'coaches' | 'default_models' | 'game_mode_id' | 'halftime_pausematch' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'round_restart_delay' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' | 'veto_pick_timeout' -/** update columns of table "migration_hashes.hashes" */ -export type migration_hashes_hashes_update_column = 'hash' | 'name' +/** select "match_options_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_options" */ +export type match_options_select_column_match_options_aggregate_bool_exp_bool_and_arguments_columns = 'auto_cancellation' | 'camera_allow_teammates' | 'camera_required' | 'coaches' | 'default_models' | 'halftime_pausematch' | 'knife_round' | 'map_veto' | 'overtime' | 'prefer_dedicated_server' | 'region_veto' -/** 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) - /** Spawn a clip-render pod that produces an mp4 from a demo and uploads it */ - createClipRender: (CreateClipRenderOutput | null) - createClips: (SuccessOutput | null) - /** createDraftGame */ - createDraftGame: (CreateDraftGameOutput | null) - /** createScheduledMatch */ - createScheduledMatch: (CreateScheduledMatchOutput | null) - /** Create directory on game server */ - createServerDirectory: (SuccessOutput | null) - /** Delete a catalog award */ - deleteAward: (SuccessOutput | null) - /** Delete a saved clip and its underlying S3 object */ - deleteClip: (SuccessOutput | null) - deleteMatch: (SuccessOutput | null) - /** Delete a news post. Caller role is verified against public.post_news_role. */ - deleteNewsPost: (SuccessOutput | null) - /** Delete orphaned S3 objects found by the last scan (admin only). Each key is re-verified against the database before removal. */ - deleteOrphanedDemos: (DeleteOrphansOutput | null) - /** Delete file or directory on game server */ - deleteServerItem: (SuccessOutput | null) - /** Delete a tournament and clean up demo files */ - deleteTournament: (SuccessOutput | null) - /** delete data from the table: "_map_pool" */ - delete__map_pool: (_map_pool_mutation_response | null) - /** delete single row from the table: "_map_pool" */ - delete__map_pool_by_pk: (_map_pool | null) - /** delete data from the table: "abandoned_matches" */ - delete_abandoned_matches: (abandoned_matches_mutation_response | null) - /** delete single row from the table: "abandoned_matches" */ - delete_abandoned_matches_by_pk: (abandoned_matches | null) - /** delete data from the table: "api_keys" */ - delete_api_keys: (api_keys_mutation_response | null) - /** delete single row from the table: "api_keys" */ - delete_api_keys_by_pk: (api_keys | null) - /** delete data from the table: "award_recipients" */ - delete_award_recipients: (award_recipients_mutation_response | null) - /** delete single row from the table: "award_recipients" */ - delete_award_recipients_by_pk: (award_recipients | null) - /** delete data from the table: "awards" */ - delete_awards: (awards_mutation_response | null) - /** delete single row from the table: "awards" */ - delete_awards_by_pk: (awards | null) - /** delete data from the table: "chat_read_state" */ - delete_chat_read_state: (chat_read_state_mutation_response | null) - /** delete single row from the table: "chat_read_state" */ - delete_chat_read_state_by_pk: (chat_read_state | null) - /** delete data from the table: "clip_render_jobs" */ - delete_clip_render_jobs: (clip_render_jobs_mutation_response | null) - /** delete single row from the table: "clip_render_jobs" */ - delete_clip_render_jobs_by_pk: (clip_render_jobs | null) - /** delete data from the table: "custom_pages" */ - delete_custom_pages: (custom_pages_mutation_response | null) - /** delete single row from the table: "custom_pages" */ - delete_custom_pages_by_pk: (custom_pages | null) - /** delete data from the table: "db_backups" */ - delete_db_backups: (db_backups_mutation_response | null) - /** delete single row from the table: "db_backups" */ - delete_db_backups_by_pk: (db_backups | null) - /** delete data from the table: "direct_conversations" */ - delete_direct_conversations: (direct_conversations_mutation_response | null) - /** delete single row from the table: "direct_conversations" */ - delete_direct_conversations_by_pk: (direct_conversations | null) - /** delete data from the table: "direct_messages" */ - delete_direct_messages: (direct_messages_mutation_response | null) - /** delete single row from the table: "direct_messages" */ - delete_direct_messages_by_pk: (direct_messages | null) - /** delete data from the table: "draft_game_picks" */ - delete_draft_game_picks: (draft_game_picks_mutation_response | null) - /** delete single row from the table: "draft_game_picks" */ - delete_draft_game_picks_by_pk: (draft_game_picks | null) - /** delete data from the table: "draft_game_players" */ - delete_draft_game_players: (draft_game_players_mutation_response | null) - /** delete single row from the table: "draft_game_players" */ - delete_draft_game_players_by_pk: (draft_game_players | null) - /** delete data from the table: "draft_games" */ - delete_draft_games: (draft_games_mutation_response | null) - /** delete single row from the table: "draft_games" */ - delete_draft_games_by_pk: (draft_games | null) - /** delete data from the table: "e_award_sources" */ - delete_e_award_sources: (e_award_sources_mutation_response | null) - /** delete single row from the table: "e_award_sources" */ - delete_e_award_sources_by_pk: (e_award_sources | null) - /** delete data from the table: "e_award_tiers" */ - delete_e_award_tiers: (e_award_tiers_mutation_response | null) - /** delete single row from the table: "e_award_tiers" */ - delete_e_award_tiers_by_pk: (e_award_tiers | null) - /** delete data from the table: "e_check_in_settings" */ - delete_e_check_in_settings: (e_check_in_settings_mutation_response | null) - /** delete single row from the table: "e_check_in_settings" */ - delete_e_check_in_settings_by_pk: (e_check_in_settings | null) - /** delete data from the table: "e_draft_game_captain_selection" */ - delete_e_draft_game_captain_selection: (e_draft_game_captain_selection_mutation_response | null) - /** delete single row from the table: "e_draft_game_captain_selection" */ - delete_e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) - /** delete data from the table: "e_draft_game_draft_order" */ - delete_e_draft_game_draft_order: (e_draft_game_draft_order_mutation_response | null) - /** delete single row from the table: "e_draft_game_draft_order" */ - delete_e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) - /** delete data from the table: "e_draft_game_mode" */ - delete_e_draft_game_mode: (e_draft_game_mode_mutation_response | null) - /** delete single row from the table: "e_draft_game_mode" */ - delete_e_draft_game_mode_by_pk: (e_draft_game_mode | null) - /** delete data from the table: "e_draft_game_player_status" */ - delete_e_draft_game_player_status: (e_draft_game_player_status_mutation_response | null) - /** delete single row from the table: "e_draft_game_player_status" */ - delete_e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) - /** delete data from the table: "e_draft_game_status" */ - delete_e_draft_game_status: (e_draft_game_status_mutation_response | null) - /** delete single row from the table: "e_draft_game_status" */ - delete_e_draft_game_status_by_pk: (e_draft_game_status | null) - /** delete data from the table: "e_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" */ - delete_e_friend_status_by_pk: (e_friend_status | null) - /** delete data from the table: "e_game_cfg_types" */ - delete_e_game_cfg_types: (e_game_cfg_types_mutation_response | null) - /** delete single row from the table: "e_game_cfg_types" */ - delete_e_game_cfg_types_by_pk: (e_game_cfg_types | null) - /** delete data from the table: "e_game_server_node_statuses" */ - delete_e_game_server_node_statuses: (e_game_server_node_statuses_mutation_response | null) - /** delete single row from the table: "e_game_server_node_statuses" */ - delete_e_game_server_node_statuses_by_pk: (e_game_server_node_statuses | null) - /** delete data from the table: "e_league_movement_types" */ - delete_e_league_movement_types: (e_league_movement_types_mutation_response | null) - /** delete single row from the table: "e_league_movement_types" */ - delete_e_league_movement_types_by_pk: (e_league_movement_types | null) - /** delete data from the table: "e_league_proposal_statuses" */ - delete_e_league_proposal_statuses: (e_league_proposal_statuses_mutation_response | null) - /** delete single row from the table: "e_league_proposal_statuses" */ - delete_e_league_proposal_statuses_by_pk: (e_league_proposal_statuses | null) - /** delete data from the table: "e_league_registration_statuses" */ - delete_e_league_registration_statuses: (e_league_registration_statuses_mutation_response | null) - /** delete single row from the table: "e_league_registration_statuses" */ - delete_e_league_registration_statuses_by_pk: (e_league_registration_statuses | null) - /** delete data from the table: "e_league_season_statuses" */ - delete_e_league_season_statuses: (e_league_season_statuses_mutation_response | null) - /** delete single row from the table: "e_league_season_statuses" */ - delete_e_league_season_statuses_by_pk: (e_league_season_statuses | null) - /** delete data from the table: "e_lobby_access" */ - delete_e_lobby_access: (e_lobby_access_mutation_response | null) - /** delete single row from the table: "e_lobby_access" */ - delete_e_lobby_access_by_pk: (e_lobby_access | null) - /** delete data from the table: "e_lobby_player_status" */ - delete_e_lobby_player_status: (e_lobby_player_status_mutation_response | null) - /** delete single row from the table: "e_lobby_player_status" */ - delete_e_lobby_player_status_by_pk: (e_lobby_player_status | null) - /** delete data from the table: "e_map_pool_types" */ - delete_e_map_pool_types: (e_map_pool_types_mutation_response | null) - /** delete single row from the table: "e_map_pool_types" */ - delete_e_map_pool_types_by_pk: (e_map_pool_types | null) - /** delete data from the table: "e_match_clip_visibility" */ - delete_e_match_clip_visibility: (e_match_clip_visibility_mutation_response | null) - /** delete single row from the table: "e_match_clip_visibility" */ - delete_e_match_clip_visibility_by_pk: (e_match_clip_visibility | null) - /** delete data from the table: "e_match_map_status" */ - delete_e_match_map_status: (e_match_map_status_mutation_response | null) - /** delete single row from the table: "e_match_map_status" */ - delete_e_match_map_status_by_pk: (e_match_map_status | null) - /** delete data from the table: "e_match_mode" */ - delete_e_match_mode: (e_match_mode_mutation_response | null) - /** delete single row from the table: "e_match_mode" */ +/** select "match_options_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_options" */ +export type match_options_select_column_match_options_aggregate_bool_exp_bool_or_arguments_columns = 'auto_cancellation' | 'camera_allow_teammates' | 'camera_required' | 'coaches' | 'default_models' | 'halftime_pausematch' | 'knife_round' | 'map_veto' | 'overtime' | 'prefer_dedicated_server' | 'region_veto' + + +/** 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) + round_restart_delay: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + veto_pick_timeout: (Scalars['Float'] | null) + __typename: 'match_options_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) + round_restart_delay: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + veto_pick_timeout: (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) + round_restart_delay: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + veto_pick_timeout: (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) + round_restart_delay: (Scalars['Int'] | null) + tv_delay: (Scalars['Int'] | null) + veto_pick_timeout: (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' | 'camera_allow_teammates' | 'camera_required' | 'check_in_setting' | 'coaches' | 'default_models' | 'game_mode_id' | 'halftime_pausematch' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'round_restart_delay' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' | 'veto_pick_timeout' + + +/** 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) + round_restart_delay: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + veto_pick_timeout: (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) + round_restart_delay: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + veto_pick_timeout: (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) + round_restart_delay: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + veto_pick_timeout: (Scalars['Float'] | null) + __typename: 'match_options_variance_fields' +} + + +/** columns and relationships of "match_region_veto_picks" */ +export interface match_region_veto_picks { + auto_picked: Scalars['Boolean'] + 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 = 'auto_picked' | 'created_at' | 'id' | 'match_id' | 'match_lineup_id' | 'region' | 'type' + + +/** select "match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_region_veto_picks" */ +export type match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns = 'auto_picked' + + +/** select "match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_region_veto_picks" */ +export type match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns = 'auto_picked' + + +/** update columns of table "match_region_veto_picks" */ +export type match_region_veto_picks_update_column = 'auto_picked' | '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) + counts_toward_ranking: Scalars['Boolean'] + 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) + share_code: (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) + veto_pick_expires_at: (Scalars['timestamptz'] | 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) + share_code: (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) + veto_pick_expires_at: (Scalars['timestamptz'] | 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) + share_code: (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) + veto_pick_expires_at: (Scalars['timestamptz'] | 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' | 'counts_toward_ranking' | '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' | 'share_code' | 'source' | 'started_at' | 'status' | 'veto_pick_expires_at' | 'winning_lineup_id' + + +/** select "matches_aggregate_bool_exp_bool_and_arguments_columns" columns of table "matches" */ +export type matches_select_column_matches_aggregate_bool_exp_bool_and_arguments_columns = 'counts_toward_ranking' + + +/** select "matches_aggregate_bool_exp_bool_or_arguments_columns" columns of table "matches" */ +export type matches_select_column_matches_aggregate_bool_exp_bool_or_arguments_columns = 'counts_toward_ranking' + + +/** 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' | 'counts_toward_ranking' | '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' | 'share_code' | 'source' | 'started_at' | 'status' | 'veto_pick_expires_at' | '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) + /** Add a game plugin the registry does not carry, from a release URL */ + addCustomGamePlugin: (AddCustomGamePluginOutput | 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) + /** Spawn a clip-render pod that produces an mp4 from a demo and uploads it */ + createClipRender: (CreateClipRenderOutput | null) + createClips: (SuccessOutput | null) + /** createDraftGame */ + createDraftGame: (CreateDraftGameOutput | null) + /** createScheduledMatch */ + createScheduledMatch: (CreateScheduledMatchOutput | null) + /** Create directory on game server */ + createServerDirectory: (SuccessOutput | null) + /** Delete a catalog award */ + deleteAward: (SuccessOutput | null) + /** Delete a saved clip and its underlying S3 object */ + deleteClip: (SuccessOutput | null) + deleteMatch: (SuccessOutput | null) + /** Delete a news post. Caller role is verified against public.post_news_role. */ + deleteNewsPost: (SuccessOutput | null) + /** Delete orphaned S3 objects found by the last scan (admin only). Each key is re-verified against the database before removal. */ + deleteOrphanedDemos: (DeleteOrphansOutput | null) + /** Delete file or directory on game server */ + deleteServerItem: (SuccessOutput | null) + /** Delete a tournament and clean up demo files */ + deleteTournament: (SuccessOutput | null) + /** delete data from the table: "_map_pool" */ + delete__map_pool: (_map_pool_mutation_response | null) + /** delete single row from the table: "_map_pool" */ + delete__map_pool_by_pk: (_map_pool | null) + /** delete data from the table: "abandoned_matches" */ + delete_abandoned_matches: (abandoned_matches_mutation_response | null) + /** delete single row from the table: "abandoned_matches" */ + delete_abandoned_matches_by_pk: (abandoned_matches | null) + /** delete data from the table: "api_keys" */ + delete_api_keys: (api_keys_mutation_response | null) + /** delete single row from the table: "api_keys" */ + delete_api_keys_by_pk: (api_keys | null) + /** delete data from the table: "award_recipients" */ + delete_award_recipients: (award_recipients_mutation_response | null) + /** delete single row from the table: "award_recipients" */ + delete_award_recipients_by_pk: (award_recipients | null) + /** delete data from the table: "awards" */ + delete_awards: (awards_mutation_response | null) + /** delete single row from the table: "awards" */ + delete_awards_by_pk: (awards | null) + /** delete data from the table: "chat_read_state" */ + delete_chat_read_state: (chat_read_state_mutation_response | null) + /** delete single row from the table: "chat_read_state" */ + delete_chat_read_state_by_pk: (chat_read_state | null) + /** delete data from the table: "clip_render_jobs" */ + delete_clip_render_jobs: (clip_render_jobs_mutation_response | null) + /** delete single row from the table: "clip_render_jobs" */ + delete_clip_render_jobs_by_pk: (clip_render_jobs | null) + /** delete data from the table: "custom_pages" */ + delete_custom_pages: (custom_pages_mutation_response | null) + /** delete single row from the table: "custom_pages" */ + delete_custom_pages_by_pk: (custom_pages | null) + /** delete data from the table: "db_backups" */ + delete_db_backups: (db_backups_mutation_response | null) + /** delete single row from the table: "db_backups" */ + delete_db_backups_by_pk: (db_backups | null) + /** delete data from the table: "direct_conversations" */ + delete_direct_conversations: (direct_conversations_mutation_response | null) + /** delete single row from the table: "direct_conversations" */ + delete_direct_conversations_by_pk: (direct_conversations | null) + /** delete data from the table: "direct_messages" */ + delete_direct_messages: (direct_messages_mutation_response | null) + /** delete single row from the table: "direct_messages" */ + delete_direct_messages_by_pk: (direct_messages | null) + /** delete data from the table: "draft_game_picks" */ + delete_draft_game_picks: (draft_game_picks_mutation_response | null) + /** delete single row from the table: "draft_game_picks" */ + delete_draft_game_picks_by_pk: (draft_game_picks | null) + /** delete data from the table: "draft_game_players" */ + delete_draft_game_players: (draft_game_players_mutation_response | null) + /** delete single row from the table: "draft_game_players" */ + delete_draft_game_players_by_pk: (draft_game_players | null) + /** delete data from the table: "draft_games" */ + delete_draft_games: (draft_games_mutation_response | null) + /** delete single row from the table: "draft_games" */ + delete_draft_games_by_pk: (draft_games | null) + /** delete data from the table: "e_award_sources" */ + delete_e_award_sources: (e_award_sources_mutation_response | null) + /** delete single row from the table: "e_award_sources" */ + delete_e_award_sources_by_pk: (e_award_sources | null) + /** delete data from the table: "e_award_tiers" */ + delete_e_award_tiers: (e_award_tiers_mutation_response | null) + /** delete single row from the table: "e_award_tiers" */ + delete_e_award_tiers_by_pk: (e_award_tiers | null) + /** delete data from the table: "e_check_in_settings" */ + delete_e_check_in_settings: (e_check_in_settings_mutation_response | null) + /** delete single row from the table: "e_check_in_settings" */ + delete_e_check_in_settings_by_pk: (e_check_in_settings | null) + /** delete data from the table: "e_draft_game_captain_selection" */ + delete_e_draft_game_captain_selection: (e_draft_game_captain_selection_mutation_response | null) + /** delete single row from the table: "e_draft_game_captain_selection" */ + delete_e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) + /** delete data from the table: "e_draft_game_draft_order" */ + delete_e_draft_game_draft_order: (e_draft_game_draft_order_mutation_response | null) + /** delete single row from the table: "e_draft_game_draft_order" */ + delete_e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) + /** delete data from the table: "e_draft_game_mode" */ + delete_e_draft_game_mode: (e_draft_game_mode_mutation_response | null) + /** delete single row from the table: "e_draft_game_mode" */ + delete_e_draft_game_mode_by_pk: (e_draft_game_mode | null) + /** delete data from the table: "e_draft_game_player_status" */ + delete_e_draft_game_player_status: (e_draft_game_player_status_mutation_response | null) + /** delete single row from the table: "e_draft_game_player_status" */ + delete_e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) + /** delete data from the table: "e_draft_game_status" */ + delete_e_draft_game_status: (e_draft_game_status_mutation_response | null) + /** delete single row from the table: "e_draft_game_status" */ + delete_e_draft_game_status_by_pk: (e_draft_game_status | null) + /** delete data from the table: "e_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" */ + delete_e_friend_status_by_pk: (e_friend_status | null) + /** delete data from the table: "e_game_cfg_types" */ + delete_e_game_cfg_types: (e_game_cfg_types_mutation_response | null) + /** delete single row from the table: "e_game_cfg_types" */ + delete_e_game_cfg_types_by_pk: (e_game_cfg_types | null) + /** delete data from the table: "e_game_plugin_channels" */ + delete_e_game_plugin_channels: (e_game_plugin_channels_mutation_response | null) + /** delete single row from the table: "e_game_plugin_channels" */ + delete_e_game_plugin_channels_by_pk: (e_game_plugin_channels | null) + /** delete data from the table: "e_game_plugin_install_statuses" */ + delete_e_game_plugin_install_statuses: (e_game_plugin_install_statuses_mutation_response | null) + /** delete single row from the table: "e_game_plugin_install_statuses" */ + delete_e_game_plugin_install_statuses_by_pk: (e_game_plugin_install_statuses | null) + /** delete data from the table: "e_game_plugin_kinds" */ + delete_e_game_plugin_kinds: (e_game_plugin_kinds_mutation_response | null) + /** delete single row from the table: "e_game_plugin_kinds" */ + delete_e_game_plugin_kinds_by_pk: (e_game_plugin_kinds | null) + /** delete data from the table: "e_game_server_node_statuses" */ + delete_e_game_server_node_statuses: (e_game_server_node_statuses_mutation_response | null) + /** delete single row from the table: "e_game_server_node_statuses" */ + delete_e_game_server_node_statuses_by_pk: (e_game_server_node_statuses | null) + /** delete data from the table: "e_league_movement_types" */ + delete_e_league_movement_types: (e_league_movement_types_mutation_response | null) + /** delete single row from the table: "e_league_movement_types" */ + delete_e_league_movement_types_by_pk: (e_league_movement_types | null) + /** delete data from the table: "e_league_proposal_statuses" */ + delete_e_league_proposal_statuses: (e_league_proposal_statuses_mutation_response | null) + /** delete single row from the table: "e_league_proposal_statuses" */ + delete_e_league_proposal_statuses_by_pk: (e_league_proposal_statuses | null) + /** delete data from the table: "e_league_registration_statuses" */ + delete_e_league_registration_statuses: (e_league_registration_statuses_mutation_response | null) + /** delete single row from the table: "e_league_registration_statuses" */ + delete_e_league_registration_statuses_by_pk: (e_league_registration_statuses | null) + /** delete data from the table: "e_league_season_statuses" */ + delete_e_league_season_statuses: (e_league_season_statuses_mutation_response | null) + /** delete single row from the table: "e_league_season_statuses" */ + delete_e_league_season_statuses_by_pk: (e_league_season_statuses | null) + /** delete data from the table: "e_lobby_access" */ + delete_e_lobby_access: (e_lobby_access_mutation_response | null) + /** delete single row from the table: "e_lobby_access" */ + delete_e_lobby_access_by_pk: (e_lobby_access | null) + /** delete data from the table: "e_lobby_player_status" */ + delete_e_lobby_player_status: (e_lobby_player_status_mutation_response | null) + /** delete single row from the table: "e_lobby_player_status" */ + delete_e_lobby_player_status_by_pk: (e_lobby_player_status | null) + /** delete data from the table: "e_map_pool_types" */ + delete_e_map_pool_types: (e_map_pool_types_mutation_response | null) + /** delete single row from the table: "e_map_pool_types" */ + delete_e_map_pool_types_by_pk: (e_map_pool_types | null) + /** delete data from the table: "e_match_clip_visibility" */ + delete_e_match_clip_visibility: (e_match_clip_visibility_mutation_response | null) + /** delete single row from the table: "e_match_clip_visibility" */ + delete_e_match_clip_visibility_by_pk: (e_match_clip_visibility | null) + /** delete data from the table: "e_match_map_status" */ + delete_e_match_map_status: (e_match_map_status_mutation_response | null) + /** delete single row from the table: "e_match_map_status" */ + delete_e_match_map_status_by_pk: (e_match_map_status | null) + /** delete data from the table: "e_match_mode" */ + delete_e_match_mode: (e_match_mode_mutation_response | null) + /** delete single row from the table: "e_match_mode" */ delete_e_match_mode_by_pk: (e_match_mode | null) /** delete data from the table: "e_match_party_sources" */ delete_e_match_party_sources: (e_match_party_sources_mutation_response | null) @@ -13062,6 +14142,30 @@ export interface mutation_root { delete_friends: (friends_mutation_response | null) /** delete single row from the table: "friends" */ delete_friends_by_pk: (friends | null) + /** delete data from the table: "game_mode_plugins" */ + delete_game_mode_plugins: (game_mode_plugins_mutation_response | null) + /** delete single row from the table: "game_mode_plugins" */ + delete_game_mode_plugins_by_pk: (game_mode_plugins | null) + /** delete data from the table: "game_modes" */ + delete_game_modes: (game_modes_mutation_response | null) + /** delete single row from the table: "game_modes" */ + delete_game_modes_by_pk: (game_modes | null) + /** delete data from the table: "game_plugin_installs" */ + delete_game_plugin_installs: (game_plugin_installs_mutation_response | null) + /** delete single row from the table: "game_plugin_installs" */ + delete_game_plugin_installs_by_pk: (game_plugin_installs | null) + /** delete data from the table: "game_plugin_versions" */ + delete_game_plugin_versions: (game_plugin_versions_mutation_response | null) + /** delete single row from the table: "game_plugin_versions" */ + delete_game_plugin_versions_by_pk: (game_plugin_versions | null) + /** delete data from the table: "game_plugins" */ + delete_game_plugins: (game_plugins_mutation_response | null) + /** delete single row from the table: "game_plugins" */ + delete_game_plugins_by_pk: (game_plugins | null) + /** delete data from the table: "game_server_node_plugins" */ + delete_game_server_node_plugins: (game_server_node_plugins_mutation_response | null) + /** delete single row from the table: "game_server_node_plugins" */ + delete_game_server_node_plugins_by_pk: (game_server_node_plugins | null) /** delete data from the table: "game_server_nodes" */ delete_game_server_nodes: (game_server_nodes_mutation_response | null) /** delete single row from the table: "game_server_nodes" */ @@ -13429,6 +14533,8 @@ export interface mutation_root { forfeitMatch: (SuccessOutput | null) /** Live pod GSI snapshot — slots, sides, alive/dead. Drives the stream-deck. */ getLiveStreamSpecState: (LiveStreamSpecState | null) + /** Fetch a plugin's README from its repository */ + getPluginReadme: (PluginReadmeOutput | null) getTestUploadLink: GetTestUploadResponse /** Grant an award to a player or team */ grantAward: (AwardRecipient | null) @@ -13536,6 +14642,18 @@ export interface mutation_root { insert_e_game_cfg_types: (e_game_cfg_types_mutation_response | null) /** insert a single row into the table: "e_game_cfg_types" */ insert_e_game_cfg_types_one: (e_game_cfg_types | null) + /** insert data into the table: "e_game_plugin_channels" */ + insert_e_game_plugin_channels: (e_game_plugin_channels_mutation_response | null) + /** insert a single row into the table: "e_game_plugin_channels" */ + insert_e_game_plugin_channels_one: (e_game_plugin_channels | null) + /** insert data into the table: "e_game_plugin_install_statuses" */ + insert_e_game_plugin_install_statuses: (e_game_plugin_install_statuses_mutation_response | null) + /** insert a single row into the table: "e_game_plugin_install_statuses" */ + insert_e_game_plugin_install_statuses_one: (e_game_plugin_install_statuses | null) + /** insert data into the table: "e_game_plugin_kinds" */ + insert_e_game_plugin_kinds: (e_game_plugin_kinds_mutation_response | null) + /** insert a single row into the table: "e_game_plugin_kinds" */ + insert_e_game_plugin_kinds_one: (e_game_plugin_kinds | null) /** insert data into the table: "e_game_server_node_statuses" */ insert_e_game_server_node_statuses: (e_game_server_node_statuses_mutation_response | null) /** insert a single row into the table: "e_game_server_node_statuses" */ @@ -13704,6 +14822,30 @@ export interface mutation_root { insert_friends: (friends_mutation_response | null) /** insert a single row into the table: "friends" */ insert_friends_one: (friends | null) + /** insert data into the table: "game_mode_plugins" */ + insert_game_mode_plugins: (game_mode_plugins_mutation_response | null) + /** insert a single row into the table: "game_mode_plugins" */ + insert_game_mode_plugins_one: (game_mode_plugins | null) + /** insert data into the table: "game_modes" */ + insert_game_modes: (game_modes_mutation_response | null) + /** insert a single row into the table: "game_modes" */ + insert_game_modes_one: (game_modes | null) + /** insert data into the table: "game_plugin_installs" */ + insert_game_plugin_installs: (game_plugin_installs_mutation_response | null) + /** insert a single row into the table: "game_plugin_installs" */ + insert_game_plugin_installs_one: (game_plugin_installs | null) + /** insert data into the table: "game_plugin_versions" */ + insert_game_plugin_versions: (game_plugin_versions_mutation_response | null) + /** insert a single row into the table: "game_plugin_versions" */ + insert_game_plugin_versions_one: (game_plugin_versions | null) + /** insert data into the table: "game_plugins" */ + insert_game_plugins: (game_plugins_mutation_response | null) + /** insert a single row into the table: "game_plugins" */ + insert_game_plugins_one: (game_plugins | null) + /** insert data into the table: "game_server_node_plugins" */ + insert_game_server_node_plugins: (game_server_node_plugins_mutation_response | null) + /** insert a single row into the table: "game_server_node_plugins" */ + insert_game_server_node_plugins_one: (game_server_node_plugins | null) /** insert data into the table: "game_server_nodes" */ insert_game_server_nodes: (game_server_nodes_mutation_response | null) /** insert a single row into the table: "game_server_nodes" */ @@ -14080,6 +15222,8 @@ export interface mutation_root { insert_v_team_stage_results: (v_team_stage_results_mutation_response | null) /** insert a single row into the table: "v_team_stage_results" */ insert_v_team_stage_results_one: (v_team_stage_results | null) + /** Install a game plugin into a node's plugin store */ + installGamePlugin: (SuccessOutput | null) /** joinDraftGame */ joinDraftGame: (SuccessOutput | null) /** joinDraftGameAsParty */ @@ -14102,6 +15246,8 @@ export interface mutation_root { pollSteamMatchHistory: (SteamMatchHistoryPollOutput | null) /** previewDraftGame */ previewDraftGame: (DraftGamePreviewOutput | null) + /** Resolve a game mode into the plugins and cfg a server would load */ + previewGameMode: (PreviewGameModeOutput | null) /** Build a multi-segment ClipSpec from a player+preset and queue it via the batch render path (no live demo session required) */ queueClipFromPreset: (CreateClipRenderOutput | null) randomizeTeams: (SuccessOutput | null) @@ -14112,6 +15258,8 @@ export interface mutation_root { recomputePlayerElo: (RecomputeEloStartedOutput | null) /** Return the progress of the ELO recompute run (admin only). */ recomputePlayerEloStatus: (RecomputeEloStatusOutput | null) + /** Re-read which plugins are actually on a node */ + reconcileNodePlugins: (ReconcileNodePluginsOutput | null) reconnectLive: (SuccessOutput | null) /** Reindex every player into the Typesense search index (admin only). Runs in the background; track via refreshAllPlayersStatus. */ refreshAllPlayers: (ReindexStartedOutput | null) @@ -14200,10 +15348,14 @@ export interface mutation_root { swapLineups: (SuccessOutput | null) switchLineup: (SuccessOutput | null) switchLiveMatch: (SuccessOutput | null) + /** Pull the game plugin registry into this panel's catalog */ + syncPluginRegistry: (SyncPluginRegistryOutput | null) syncSteamFriends: (SuccessOutput | null) /** Test FACEIT Data + Downloads API connectivity for the current admin */ testFaceitIntegration: (FaceitTestOutput | null) testUpload: (TestUploadResponse | null) + /** Remove a game plugin from a node's plugin store */ + uninstallGamePlugin: (SuccessOutput | null) unlinkDiscord: (SuccessOutput | null) unlinkSteamMatchHistory: (SuccessOutput | null) unsanctionServerPlayer: SanctionResult @@ -14369,6 +15521,24 @@ export interface mutation_root { update_e_game_cfg_types_by_pk: (e_game_cfg_types | null) /** update multiples rows of table: "e_game_cfg_types" */ update_e_game_cfg_types_many: ((e_game_cfg_types_mutation_response | null)[] | null) + /** update data of the table: "e_game_plugin_channels" */ + update_e_game_plugin_channels: (e_game_plugin_channels_mutation_response | null) + /** update single row of the table: "e_game_plugin_channels" */ + update_e_game_plugin_channels_by_pk: (e_game_plugin_channels | null) + /** update multiples rows of table: "e_game_plugin_channels" */ + update_e_game_plugin_channels_many: ((e_game_plugin_channels_mutation_response | null)[] | null) + /** update data of the table: "e_game_plugin_install_statuses" */ + update_e_game_plugin_install_statuses: (e_game_plugin_install_statuses_mutation_response | null) + /** update single row of the table: "e_game_plugin_install_statuses" */ + update_e_game_plugin_install_statuses_by_pk: (e_game_plugin_install_statuses | null) + /** update multiples rows of table: "e_game_plugin_install_statuses" */ + update_e_game_plugin_install_statuses_many: ((e_game_plugin_install_statuses_mutation_response | null)[] | null) + /** update data of the table: "e_game_plugin_kinds" */ + update_e_game_plugin_kinds: (e_game_plugin_kinds_mutation_response | null) + /** update single row of the table: "e_game_plugin_kinds" */ + update_e_game_plugin_kinds_by_pk: (e_game_plugin_kinds | null) + /** update multiples rows of table: "e_game_plugin_kinds" */ + update_e_game_plugin_kinds_many: ((e_game_plugin_kinds_mutation_response | null)[] | null) /** update data of the table: "e_game_server_node_statuses" */ update_e_game_server_node_statuses: (e_game_server_node_statuses_mutation_response | null) /** update single row of the table: "e_game_server_node_statuses" */ @@ -14621,6 +15791,42 @@ export interface mutation_root { update_friends_by_pk: (friends | null) /** update multiples rows of table: "friends" */ update_friends_many: ((friends_mutation_response | null)[] | null) + /** update data of the table: "game_mode_plugins" */ + update_game_mode_plugins: (game_mode_plugins_mutation_response | null) + /** update single row of the table: "game_mode_plugins" */ + update_game_mode_plugins_by_pk: (game_mode_plugins | null) + /** update multiples rows of table: "game_mode_plugins" */ + update_game_mode_plugins_many: ((game_mode_plugins_mutation_response | null)[] | null) + /** update data of the table: "game_modes" */ + update_game_modes: (game_modes_mutation_response | null) + /** update single row of the table: "game_modes" */ + update_game_modes_by_pk: (game_modes | null) + /** update multiples rows of table: "game_modes" */ + update_game_modes_many: ((game_modes_mutation_response | null)[] | null) + /** update data of the table: "game_plugin_installs" */ + update_game_plugin_installs: (game_plugin_installs_mutation_response | null) + /** update single row of the table: "game_plugin_installs" */ + update_game_plugin_installs_by_pk: (game_plugin_installs | null) + /** update multiples rows of table: "game_plugin_installs" */ + update_game_plugin_installs_many: ((game_plugin_installs_mutation_response | null)[] | null) + /** update data of the table: "game_plugin_versions" */ + update_game_plugin_versions: (game_plugin_versions_mutation_response | null) + /** update single row of the table: "game_plugin_versions" */ + update_game_plugin_versions_by_pk: (game_plugin_versions | null) + /** update multiples rows of table: "game_plugin_versions" */ + update_game_plugin_versions_many: ((game_plugin_versions_mutation_response | null)[] | null) + /** update data of the table: "game_plugins" */ + update_game_plugins: (game_plugins_mutation_response | null) + /** update single row of the table: "game_plugins" */ + update_game_plugins_by_pk: (game_plugins | null) + /** update multiples rows of table: "game_plugins" */ + update_game_plugins_many: ((game_plugins_mutation_response | null)[] | null) + /** update data of the table: "game_server_node_plugins" */ + update_game_server_node_plugins: (game_server_node_plugins_mutation_response | null) + /** update single row of the table: "game_server_node_plugins" */ + update_game_server_node_plugins_by_pk: (game_server_node_plugins | null) + /** update multiples rows of table: "game_server_node_plugins" */ + update_game_server_node_plugins_many: ((game_server_node_plugins_mutation_response | null)[] | null) /** update data of the table: "game_server_nodes" */ update_game_server_nodes: (game_server_nodes_mutation_response | null) /** update single row of the table: "game_server_nodes" */ @@ -23763,6 +24969,24 @@ export interface query_root { e_game_cfg_types_aggregate: e_game_cfg_types_aggregate /** fetch data from the table: "e_game_cfg_types" using primary key columns */ e_game_cfg_types_by_pk: (e_game_cfg_types | null) + /** fetch data from the table: "e_game_plugin_channels" */ + e_game_plugin_channels: e_game_plugin_channels[] + /** fetch aggregated fields from the table: "e_game_plugin_channels" */ + e_game_plugin_channels_aggregate: e_game_plugin_channels_aggregate + /** fetch data from the table: "e_game_plugin_channels" using primary key columns */ + e_game_plugin_channels_by_pk: (e_game_plugin_channels | null) + /** fetch data from the table: "e_game_plugin_install_statuses" */ + e_game_plugin_install_statuses: e_game_plugin_install_statuses[] + /** fetch aggregated fields from the table: "e_game_plugin_install_statuses" */ + e_game_plugin_install_statuses_aggregate: e_game_plugin_install_statuses_aggregate + /** fetch data from the table: "e_game_plugin_install_statuses" using primary key columns */ + e_game_plugin_install_statuses_by_pk: (e_game_plugin_install_statuses | null) + /** fetch data from the table: "e_game_plugin_kinds" */ + e_game_plugin_kinds: e_game_plugin_kinds[] + /** fetch aggregated fields from the table: "e_game_plugin_kinds" */ + e_game_plugin_kinds_aggregate: e_game_plugin_kinds_aggregate + /** fetch data from the table: "e_game_plugin_kinds" using primary key columns */ + e_game_plugin_kinds_by_pk: (e_game_plugin_kinds | null) /** fetch data from the table: "e_game_server_node_statuses" */ e_game_server_node_statuses: e_game_server_node_statuses[] /** fetch aggregated fields from the table: "e_game_server_node_statuses" */ @@ -24015,6 +25239,42 @@ export interface query_root { friends_aggregate: friends_aggregate /** fetch data from the table: "friends" using primary key columns */ friends_by_pk: (friends | null) + /** fetch data from the table: "game_mode_plugins" */ + game_mode_plugins: game_mode_plugins[] + /** fetch aggregated fields from the table: "game_mode_plugins" */ + game_mode_plugins_aggregate: game_mode_plugins_aggregate + /** fetch data from the table: "game_mode_plugins" using primary key columns */ + game_mode_plugins_by_pk: (game_mode_plugins | null) + /** fetch data from the table: "game_modes" */ + game_modes: game_modes[] + /** fetch aggregated fields from the table: "game_modes" */ + game_modes_aggregate: game_modes_aggregate + /** fetch data from the table: "game_modes" using primary key columns */ + game_modes_by_pk: (game_modes | null) + /** fetch data from the table: "game_plugin_installs" */ + game_plugin_installs: game_plugin_installs[] + /** fetch aggregated fields from the table: "game_plugin_installs" */ + game_plugin_installs_aggregate: game_plugin_installs_aggregate + /** fetch data from the table: "game_plugin_installs" using primary key columns */ + game_plugin_installs_by_pk: (game_plugin_installs | null) + /** fetch data from the table: "game_plugin_versions" */ + game_plugin_versions: game_plugin_versions[] + /** fetch aggregated fields from the table: "game_plugin_versions" */ + game_plugin_versions_aggregate: game_plugin_versions_aggregate + /** fetch data from the table: "game_plugin_versions" using primary key columns */ + game_plugin_versions_by_pk: (game_plugin_versions | null) + /** fetch data from the table: "game_plugins" */ + game_plugins: game_plugins[] + /** fetch aggregated fields from the table: "game_plugins" */ + game_plugins_aggregate: game_plugins_aggregate + /** fetch data from the table: "game_plugins" using primary key columns */ + game_plugins_by_pk: (game_plugins | null) + /** fetch data from the table: "game_server_node_plugins" */ + game_server_node_plugins: game_server_node_plugins[] + /** fetch aggregated fields from the table: "game_server_node_plugins" */ + game_server_node_plugins_aggregate: game_server_node_plugins_aggregate + /** fetch data from the table: "game_server_node_plugins" using primary key columns */ + game_server_node_plugins_by_pk: (game_server_node_plugins | null) /** An array relationship */ game_server_nodes: game_server_nodes[] /** An aggregate relationship */ @@ -24221,9 +25481,9 @@ export interface query_root { match_maps_aggregate: match_maps_aggregate /** fetch data from the table: "match_maps" using primary key columns */ match_maps_by_pk: (match_maps | null) - /** fetch data from the table: "match_options" */ + /** An array relationship */ match_options: match_options[] - /** fetch aggregated fields from the table: "match_options" */ + /** An aggregate relationship */ match_options_aggregate: match_options_aggregate /** fetch data from the table: "match_options" using primary key columns */ match_options_by_pk: (match_options | null) @@ -25109,12 +26369,16 @@ export interface servers { enabled: Scalars['Boolean'] game: (Scalars['String'] | null) /** An object relationship */ + game_mode: (game_modes | null) + game_mode_id: (Scalars['uuid'] | null) + /** An object relationship */ game_server_node: (game_server_nodes | null) game_server_node_id: (Scalars['String'] | null) host: Scalars['String'] id: Scalars['uuid'] is_dedicated: Scalars['Boolean'] label: Scalars['String'] + loaded_plugins: (Scalars['jsonb'] | null) /** An array relationship */ matches: matches[] /** An aggregate relationship */ @@ -25123,6 +26387,7 @@ export interface servers { offline_at: (Scalars['timestamptz'] | null) plugin_runtime: (e_plugin_runtimes_enum | null) plugin_version: (Scalars['String'] | null) + plugins_checked_at: (Scalars['timestamptz'] | null) port: Scalars['Int'] rcon_password: Scalars['bytea'] rcon_status: (Scalars['Boolean'] | null) @@ -25187,6 +26452,7 @@ export interface servers_max_fields { /** A computed field, executes function "get_server_connection_string" */ connection_string: (Scalars['String'] | null) game: (Scalars['String'] | null) + game_mode_id: (Scalars['uuid'] | null) game_server_node_id: (Scalars['String'] | null) host: (Scalars['String'] | null) id: (Scalars['uuid'] | null) @@ -25194,6 +26460,7 @@ export interface servers_max_fields { max_players: (Scalars['Int'] | null) offline_at: (Scalars['timestamptz'] | null) plugin_version: (Scalars['String'] | null) + plugins_checked_at: (Scalars['timestamptz'] | null) port: (Scalars['Int'] | null) region: (Scalars['String'] | null) reserved_by_match_id: (Scalars['uuid'] | null) @@ -25215,6 +26482,7 @@ export interface servers_min_fields { /** A computed field, executes function "get_server_connection_string" */ connection_string: (Scalars['String'] | null) game: (Scalars['String'] | null) + game_mode_id: (Scalars['uuid'] | null) game_server_node_id: (Scalars['String'] | null) host: (Scalars['String'] | null) id: (Scalars['uuid'] | null) @@ -25222,6 +26490,7 @@ export interface servers_min_fields { max_players: (Scalars['Int'] | null) offline_at: (Scalars['timestamptz'] | null) plugin_version: (Scalars['String'] | null) + plugins_checked_at: (Scalars['timestamptz'] | null) port: (Scalars['Int'] | null) region: (Scalars['String'] | null) reserved_by_match_id: (Scalars['uuid'] | null) @@ -25243,7 +26512,7 @@ export interface servers_mutation_response { /** select columns of table "servers" */ -export type servers_select_column = 'api_password' | 'boot_status' | 'boot_status_detail' | 'connect_password' | 'connected' | 'enabled' | 'game' | 'game_server_node_id' | 'host' | 'id' | 'is_dedicated' | 'label' | 'max_players' | 'offline_at' | 'plugin_runtime' | 'plugin_version' | 'port' | 'rcon_password' | 'rcon_status' | 'region' | 'reserved_by_match_id' | 'steam_relay' | 'tv_port' | 'type' | 'updated_at' +export type servers_select_column = 'api_password' | 'boot_status' | 'boot_status_detail' | 'connect_password' | 'connected' | 'enabled' | 'game' | 'game_mode_id' | 'game_server_node_id' | 'host' | 'id' | 'is_dedicated' | 'label' | 'loaded_plugins' | 'max_players' | 'offline_at' | 'plugin_runtime' | 'plugin_version' | 'plugins_checked_at' | 'port' | 'rcon_password' | 'rcon_status' | 'region' | 'reserved_by_match_id' | 'steam_relay' | 'tv_port' | 'type' | 'updated_at' /** select "servers_aggregate_bool_exp_bool_and_arguments_columns" columns of table "servers" */ @@ -25291,7 +26560,7 @@ export interface servers_sum_fields { /** update columns of table "servers" */ -export type servers_update_column = 'api_password' | 'boot_status' | 'boot_status_detail' | 'connect_password' | 'connected' | 'enabled' | 'game' | 'game_server_node_id' | 'host' | 'id' | 'is_dedicated' | 'label' | 'max_players' | 'offline_at' | 'plugin_runtime' | 'plugin_version' | 'port' | 'rcon_password' | 'rcon_status' | 'region' | 'reserved_by_match_id' | 'steam_relay' | 'tv_port' | 'type' | 'updated_at' +export type servers_update_column = 'api_password' | 'boot_status' | 'boot_status_detail' | 'connect_password' | 'connected' | 'enabled' | 'game' | 'game_mode_id' | 'game_server_node_id' | 'host' | 'id' | 'is_dedicated' | 'label' | 'loaded_plugins' | 'max_players' | 'offline_at' | 'plugin_runtime' | 'plugin_version' | 'plugins_checked_at' | 'port' | 'rcon_password' | 'rcon_status' | 'region' | 'reserved_by_match_id' | 'steam_relay' | 'tv_port' | 'type' | 'updated_at' /** aggregate var_pop on columns */ @@ -25844,6 +27113,30 @@ export interface subscription_root { e_game_cfg_types_by_pk: (e_game_cfg_types | null) /** fetch data from the table in a streaming manner: "e_game_cfg_types" */ e_game_cfg_types_stream: e_game_cfg_types[] + /** fetch data from the table: "e_game_plugin_channels" */ + e_game_plugin_channels: e_game_plugin_channels[] + /** fetch aggregated fields from the table: "e_game_plugin_channels" */ + e_game_plugin_channels_aggregate: e_game_plugin_channels_aggregate + /** fetch data from the table: "e_game_plugin_channels" using primary key columns */ + e_game_plugin_channels_by_pk: (e_game_plugin_channels | null) + /** fetch data from the table in a streaming manner: "e_game_plugin_channels" */ + e_game_plugin_channels_stream: e_game_plugin_channels[] + /** fetch data from the table: "e_game_plugin_install_statuses" */ + e_game_plugin_install_statuses: e_game_plugin_install_statuses[] + /** fetch aggregated fields from the table: "e_game_plugin_install_statuses" */ + e_game_plugin_install_statuses_aggregate: e_game_plugin_install_statuses_aggregate + /** fetch data from the table: "e_game_plugin_install_statuses" using primary key columns */ + e_game_plugin_install_statuses_by_pk: (e_game_plugin_install_statuses | null) + /** fetch data from the table in a streaming manner: "e_game_plugin_install_statuses" */ + e_game_plugin_install_statuses_stream: e_game_plugin_install_statuses[] + /** fetch data from the table: "e_game_plugin_kinds" */ + e_game_plugin_kinds: e_game_plugin_kinds[] + /** fetch aggregated fields from the table: "e_game_plugin_kinds" */ + e_game_plugin_kinds_aggregate: e_game_plugin_kinds_aggregate + /** fetch data from the table: "e_game_plugin_kinds" using primary key columns */ + e_game_plugin_kinds_by_pk: (e_game_plugin_kinds | null) + /** fetch data from the table in a streaming manner: "e_game_plugin_kinds" */ + e_game_plugin_kinds_stream: e_game_plugin_kinds[] /** fetch data from the table: "e_game_server_node_statuses" */ e_game_server_node_statuses: e_game_server_node_statuses[] /** fetch aggregated fields from the table: "e_game_server_node_statuses" */ @@ -26180,6 +27473,54 @@ export interface subscription_root { friends_by_pk: (friends | null) /** fetch data from the table in a streaming manner: "friends" */ friends_stream: friends[] + /** fetch data from the table: "game_mode_plugins" */ + game_mode_plugins: game_mode_plugins[] + /** fetch aggregated fields from the table: "game_mode_plugins" */ + game_mode_plugins_aggregate: game_mode_plugins_aggregate + /** fetch data from the table: "game_mode_plugins" using primary key columns */ + game_mode_plugins_by_pk: (game_mode_plugins | null) + /** fetch data from the table in a streaming manner: "game_mode_plugins" */ + game_mode_plugins_stream: game_mode_plugins[] + /** fetch data from the table: "game_modes" */ + game_modes: game_modes[] + /** fetch aggregated fields from the table: "game_modes" */ + game_modes_aggregate: game_modes_aggregate + /** fetch data from the table: "game_modes" using primary key columns */ + game_modes_by_pk: (game_modes | null) + /** fetch data from the table in a streaming manner: "game_modes" */ + game_modes_stream: game_modes[] + /** fetch data from the table: "game_plugin_installs" */ + game_plugin_installs: game_plugin_installs[] + /** fetch aggregated fields from the table: "game_plugin_installs" */ + game_plugin_installs_aggregate: game_plugin_installs_aggregate + /** fetch data from the table: "game_plugin_installs" using primary key columns */ + game_plugin_installs_by_pk: (game_plugin_installs | null) + /** fetch data from the table in a streaming manner: "game_plugin_installs" */ + game_plugin_installs_stream: game_plugin_installs[] + /** fetch data from the table: "game_plugin_versions" */ + game_plugin_versions: game_plugin_versions[] + /** fetch aggregated fields from the table: "game_plugin_versions" */ + game_plugin_versions_aggregate: game_plugin_versions_aggregate + /** fetch data from the table: "game_plugin_versions" using primary key columns */ + game_plugin_versions_by_pk: (game_plugin_versions | null) + /** fetch data from the table in a streaming manner: "game_plugin_versions" */ + game_plugin_versions_stream: game_plugin_versions[] + /** fetch data from the table: "game_plugins" */ + game_plugins: game_plugins[] + /** fetch aggregated fields from the table: "game_plugins" */ + game_plugins_aggregate: game_plugins_aggregate + /** fetch data from the table: "game_plugins" using primary key columns */ + game_plugins_by_pk: (game_plugins | null) + /** fetch data from the table in a streaming manner: "game_plugins" */ + game_plugins_stream: game_plugins[] + /** fetch data from the table: "game_server_node_plugins" */ + game_server_node_plugins: game_server_node_plugins[] + /** fetch aggregated fields from the table: "game_server_node_plugins" */ + game_server_node_plugins_aggregate: game_server_node_plugins_aggregate + /** fetch data from the table: "game_server_node_plugins" using primary key columns */ + game_server_node_plugins_by_pk: (game_server_node_plugins | null) + /** fetch data from the table in a streaming manner: "game_server_node_plugins" */ + game_server_node_plugins_stream: game_server_node_plugins[] /** An array relationship */ game_server_nodes: game_server_nodes[] /** An aggregate relationship */ @@ -26402,9 +27743,9 @@ export interface subscription_root { match_maps_by_pk: (match_maps | null) /** fetch data from the table in a streaming manner: "match_maps" */ match_maps_stream: match_maps[] - /** fetch data from the table: "match_options" */ + /** An array relationship */ match_options: match_options[] - /** fetch aggregated fields from the table: "match_options" */ + /** An aggregate relationship */ match_options_aggregate: match_options_aggregate /** fetch data from the table: "match_options" using primary key columns */ match_options_by_pk: (match_options | null) @@ -33351,7940 +34692,9261 @@ export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_argu 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' | 'rating_for_expected' | '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' | 'rating_for_expected' | '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' | 'rating_for_expected' | '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' | 'rating_for_expected' | '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' | 'rating_for_expected' | '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' | 'rating_for_expected' | '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' | 'rating_for_expected' | 'team_avg_kda' + + +/** aggregate stddev on columns */ +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) + rating_for_expected: (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_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) + rating_for_expected: (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_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) + rating_for_expected: (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_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) + rating_for_expected: (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_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) + rating_for_expected: (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_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) + rating_for_expected: (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_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) + rating_for_expected: (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_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_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_player_map_losses" */ +export interface v_player_map_losses_aggregate_fields { + avg: (v_player_map_losses_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' +} + + +/** aggregate avg on columns */ +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_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_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_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_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_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_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_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_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_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_player_map_losses_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_map_losses_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) + match_id: (Scalars['uuid'] | null) + started_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_map_wins' +} + + +/** 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_player_map_wins" */ +export interface v_player_map_wins_aggregate_fields { + avg: (v_player_map_wins_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' +} + + +/** aggregate avg on columns */ +export interface v_player_map_wins_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_map_wins_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_player_map_wins_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_wins_max_fields' +} + + +/** aggregate min on columns */ +export interface v_player_map_wins_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_wins_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' + + +/** aggregate stddev on columns */ +export interface v_player_map_wins_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_map_wins_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' +} + + +/** 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' +} + + +/** aggregate sum on columns */ +export interface v_player_map_wins_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_map_wins_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' +} + + +/** 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' +} + + +/** aggregate variance on columns */ +export interface v_player_map_wins_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_map_wins_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) + 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' +} + + +/** 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_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_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' +} -/** 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' | 'rating_for_expected' | 'team_avg_kda' +/** 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) + hits: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + __typename: 'v_player_match_head_to_head_avg_fields' +} -/** 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' | 'rating_for_expected' | 'team_avg_kda' +/** 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) + hits: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) + match_id: (Scalars['uuid'] | null) + __typename: 'v_player_match_head_to_head_max_fields' +} -/** 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' | 'rating_for_expected' | 'team_avg_kda' +/** 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) + hits: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) + match_id: (Scalars['uuid'] | null) + __typename: 'v_player_match_head_to_head_min_fields' +} -/** 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' | 'rating_for_expected' | 'team_avg_kda' +/** 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_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) +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) - 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) - rating_for_expected: (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_head_to_head_stddev_fields' } /** aggregate stddev_pop on columns */ -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) +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) - 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) - rating_for_expected: (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_head_to_head_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -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) +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) - 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) - rating_for_expected: (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_head_to_head_stddev_samp_fields' } /** aggregate sum on columns */ -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) - rating_for_expected: (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' +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_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) +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) - 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) - rating_for_expected: (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_head_to_head_var_pop_fields' } /** aggregate var_samp on columns */ -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) +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) - 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) - rating_for_expected: (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_head_to_head_var_samp_fields' } /** aggregate variance on columns */ -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) +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) - 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) - rating_for_expected: (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_head_to_head_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_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) - started_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | 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_map_hltv' } -/** 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_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_map_losses" */ -export interface v_player_map_losses_aggregate_fields { - avg: (v_player_map_losses_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_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_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_map_losses_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_map_losses_avg_fields' + __typename: 'v_player_match_map_hltv_avg_fields' } /** aggregate max on columns */ -export interface v_player_map_losses_max_fields { - map_id: (Scalars['uuid'] | null) +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) - started_at: (Scalars['timestamptz'] | null) + match_map_id: (Scalars['uuid'] | null) + rounds_played: (Scalars['Int'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_map_losses_max_fields' + __typename: 'v_player_match_map_hltv_max_fields' } /** aggregate min on columns */ -export interface v_player_map_losses_min_fields { - map_id: (Scalars['uuid'] | null) +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) - started_at: (Scalars['timestamptz'] | null) + match_map_id: (Scalars['uuid'] | null) + rounds_played: (Scalars['Int'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_map_losses_min_fields' + __typename: 'v_player_match_map_hltv_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' +/** 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_map_losses_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_map_losses_stddev_fields' + __typename: 'v_player_match_map_hltv_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_player_map_losses_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_map_losses_stddev_pop_fields' + __typename: 'v_player_match_map_hltv_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_player_map_losses_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_map_losses_stddev_samp_fields' + __typename: 'v_player_match_map_hltv_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_player_map_losses_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_map_losses_sum_fields' + __typename: 'v_player_match_map_hltv_sum_fields' } /** aggregate var_pop on columns */ -export interface v_player_map_losses_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_map_losses_var_pop_fields' + __typename: 'v_player_match_map_hltv_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_player_map_losses_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_map_losses_var_samp_fields' + __typename: 'v_player_match_map_hltv_var_samp_fields' } /** aggregate variance on columns */ -export interface v_player_map_losses_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_map_losses_variance_fields' + __typename: 'v_player_match_map_hltv_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) +/** 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) - started_at: (Scalars['timestamptz'] | 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) + role: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_map_wins' + 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_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_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_map_wins" */ -export interface v_player_map_wins_aggregate_fields { - avg: (v_player_map_wins_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_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_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_map_wins_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) - __typename: 'v_player_map_wins_avg_fields' + 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_map_wins_max_fields { - map_id: (Scalars['uuid'] | null) +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) - started_at: (Scalars['timestamptz'] | 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) - __typename: 'v_player_map_wins_max_fields' + 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_map_wins_min_fields { - map_id: (Scalars['uuid'] | null) +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) - started_at: (Scalars['timestamptz'] | 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) - __typename: 'v_player_map_wins_min_fields' + 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_map_wins" */ -export type v_player_map_wins_select_column = 'map_id' | 'match_id' | 'started_at' | 'steam_id' +/** 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_map_wins_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) - __typename: 'v_player_map_wins_stddev_fields' + 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_map_wins_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) - __typename: 'v_player_map_wins_stddev_pop_fields' + 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_map_wins_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) - __typename: 'v_player_map_wins_stddev_samp_fields' + 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_map_wins_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) - __typename: 'v_player_map_wins_sum_fields' + 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_map_wins_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) - __typename: 'v_player_map_wins_var_pop_fields' + 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_map_wins_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) - __typename: 'v_player_map_wins_var_samp_fields' + 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_map_wins_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) - __typename: 'v_player_map_wins_variance_fields' + 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_match_head_to_head" */ -export interface v_player_match_head_to_head { - /** An object relationship */ - attacked: (players | null) - attacked_steam_id: (Scalars['bigint'] | null) +/** 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 */ - 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) + 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) - __typename: 'v_player_match_head_to_head' + match_result: (Scalars['String'] | null) + player_steam_id: (Scalars['bigint'] | null) + source: (Scalars['String'] | null) + type: (Scalars['String'] | null) + __typename: 'v_player_match_performance' } -/** 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_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_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_match_performance" */ +export interface v_player_match_performance_aggregate_fields { + avg: (v_player_match_performance_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_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_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) +export interface v_player_match_performance_avg_fields { + assists: (Scalars['Float'] | null) + deaths: (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_match_performance_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) - hits: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) +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) - __typename: 'v_player_match_head_to_head_max_fields' + 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' } /** 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) - hits: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) +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) - __typename: 'v_player_match_head_to_head_min_fields' + 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' } -/** 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' +/** 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_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) +export interface v_player_match_performance_stddev_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_stddev_fields' + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_performance_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) +export interface v_player_match_performance_stddev_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_stddev_pop_fields' + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_performance_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) +export interface v_player_match_performance_stddev_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_stddev_samp_fields' + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_performance_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_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' } /** 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) +export interface v_player_match_performance_var_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_var_pop_fields' + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_performance_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) +export interface v_player_match_performance_var_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_var_samp_fields' + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_performance_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) +export interface v_player_match_performance_variance_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_variance_fields' + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_performance_variance_fields' } -/** columns and relationships of "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv { +/** columns and relationships of "v_player_match_rating" */ +export interface v_player_match_rating { 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) + match_id: (Scalars['uuid'] | null) /** An object relationship */ player: (players | null) rounds_played: (Scalars['Int'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_map_hltv' + __typename: 'v_player_match_rating' } -/** 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_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_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_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_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' + 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_match_map_hltv_avg_fields { +export interface v_player_match_rating_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' + __typename: 'v_player_match_rating_avg_fields' } /** aggregate max on columns */ -export interface v_player_match_map_hltv_max_fields { +export interface v_player_match_rating_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' + __typename: 'v_player_match_rating_max_fields' } /** aggregate min on columns */ -export interface v_player_match_map_hltv_min_fields { +export interface v_player_match_rating_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' -} - - -/** 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' + __typename: 'v_player_match_rating_min_fields' } -/** 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_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_match_map_hltv_stddev_fields { +export interface v_player_match_rating_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' + __typename: 'v_player_match_rating_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_player_match_map_hltv_stddev_pop_fields { +export interface v_player_match_rating_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' + __typename: 'v_player_match_rating_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_player_match_map_hltv_stddev_samp_fields { +export interface v_player_match_rating_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' + __typename: 'v_player_match_rating_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_player_match_map_hltv_sum_fields { +export interface v_player_match_rating_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' + __typename: 'v_player_match_rating_sum_fields' } /** aggregate var_pop on columns */ -export interface v_player_match_map_hltv_var_pop_fields { +export interface v_player_match_rating_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' + __typename: 'v_player_match_rating_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_player_match_map_hltv_var_samp_fields { +export interface v_player_match_rating_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' + __typename: 'v_player_match_rating_var_samp_fields' } /** aggregate variance on columns */ -export interface v_player_match_map_hltv_variance_fields { +export interface v_player_match_rating_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' + __typename: 'v_player_match_rating_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) +/** 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' +} + + +/** 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_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 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 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' +} + + +/** 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' +} + + +/** 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_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_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_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_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_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_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_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_queue_partners" */ +export interface v_player_queue_partners { + first_played_at: (Scalars['timestamptz'] | null) + last_played_at: (Scalars['timestamptz'] | null) + matches_together: (Scalars['Int'] | 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) + partner: (players | null) + partner_steam_id: (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' + wins_together: (Scalars['Int'] | null) + __typename: 'v_player_queue_partners' } -/** 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_player_queue_partners" */ +export interface v_player_queue_partners_aggregate { + aggregate: (v_player_queue_partners_aggregate_fields | null) + nodes: v_player_queue_partners[] + __typename: 'v_player_queue_partners_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_player_queue_partners" */ +export interface v_player_queue_partners_aggregate_fields { + avg: (v_player_queue_partners_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_player_queue_partners_max_fields | null) + min: (v_player_queue_partners_min_fields | null) + stddev: (v_player_queue_partners_stddev_fields | null) + stddev_pop: (v_player_queue_partners_stddev_pop_fields | null) + stddev_samp: (v_player_queue_partners_stddev_samp_fields | null) + sum: (v_player_queue_partners_sum_fields | null) + var_pop: (v_player_queue_partners_var_pop_fields | null) + var_samp: (v_player_queue_partners_var_samp_fields | null) + variance: (v_player_queue_partners_variance_fields | null) + __typename: 'v_player_queue_partners_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) +export interface v_player_queue_partners_avg_fields { + matches_together: (Scalars['Float'] | null) + partner_steam_id: (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' + wins_together: (Scalars['Float'] | null) + __typename: 'v_player_queue_partners_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) +export interface v_player_queue_partners_max_fields { + first_played_at: (Scalars['timestamptz'] | null) + last_played_at: (Scalars['timestamptz'] | null) + matches_together: (Scalars['Int'] | null) + partner_steam_id: (Scalars['bigint'] | 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' + wins_together: (Scalars['Int'] | null) + __typename: 'v_player_queue_partners_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) +export interface v_player_queue_partners_min_fields { + first_played_at: (Scalars['timestamptz'] | null) + last_played_at: (Scalars['timestamptz'] | null) + matches_together: (Scalars['Int'] | null) + partner_steam_id: (Scalars['bigint'] | 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' + wins_together: (Scalars['Int'] | null) + __typename: 'v_player_queue_partners_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_player_queue_partners" */ +export type v_player_queue_partners_select_column = 'first_played_at' | 'last_played_at' | 'matches_together' | 'partner_steam_id' | 'steam_id' | 'wins_together' /** 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) +export interface v_player_queue_partners_stddev_fields { + matches_together: (Scalars['Float'] | null) + partner_steam_id: (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' + wins_together: (Scalars['Float'] | null) + __typename: 'v_player_queue_partners_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) +export interface v_player_queue_partners_stddev_pop_fields { + matches_together: (Scalars['Float'] | null) + partner_steam_id: (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' + wins_together: (Scalars['Float'] | null) + __typename: 'v_player_queue_partners_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) +export interface v_player_queue_partners_stddev_samp_fields { + matches_together: (Scalars['Float'] | null) + partner_steam_id: (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' + wins_together: (Scalars['Float'] | null) + __typename: 'v_player_queue_partners_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_player_queue_partners_sum_fields { + matches_together: (Scalars['Int'] | null) + partner_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + wins_together: (Scalars['Int'] | null) + __typename: 'v_player_queue_partners_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) +export interface v_player_queue_partners_var_pop_fields { + matches_together: (Scalars['Float'] | null) + partner_steam_id: (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' + wins_together: (Scalars['Float'] | null) + __typename: 'v_player_queue_partners_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) +export interface v_player_queue_partners_var_samp_fields { + matches_together: (Scalars['Float'] | null) + partner_steam_id: (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' + wins_together: (Scalars['Float'] | null) + __typename: 'v_player_queue_partners_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) +export interface v_player_queue_partners_variance_fields { + matches_together: (Scalars['Float'] | null) + partner_steam_id: (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' + wins_together: (Scalars['Float'] | null) + __typename: 'v_player_queue_partners_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) - /** An object relationship */ - match: (matches | null) - match_created_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_result: (Scalars['String'] | null) +/** 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) - __typename: 'v_player_match_performance' + with: (Scalars['String'] | null) + __typename: 'v_player_weapon_damage' } -/** 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_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_performance" */ -export interface v_player_match_performance_aggregate_fields { - avg: (v_player_match_performance_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_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_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_performance_avg_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) +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_match_performance_avg_fields' + __typename: 'v_player_weapon_damage_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) +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) - __typename: 'v_player_match_performance_max_fields' + with: (Scalars['String'] | null) + __typename: 'v_player_weapon_damage_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) +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) - __typename: 'v_player_match_performance_min_fields' + with: (Scalars['String'] | null) + __typename: 'v_player_weapon_damage_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_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_match_performance_stddev_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) +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_match_performance_stddev_fields' + __typename: 'v_player_weapon_damage_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) +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_match_performance_stddev_pop_fields' + __typename: 'v_player_weapon_damage_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) +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_match_performance_stddev_samp_fields' + __typename: 'v_player_weapon_damage_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) +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_match_performance_sum_fields' + __typename: 'v_player_weapon_damage_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) +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_match_performance_var_pop_fields' + __typename: 'v_player_weapon_damage_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) +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_match_performance_var_samp_fields' + __typename: 'v_player_weapon_damage_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) +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_match_performance_variance_fields' + __typename: 'v_player_weapon_damage_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) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - player: (players | null) - rounds_played: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_rating' +/** 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_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_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_match_rating" */ -export interface v_player_match_rating_aggregate_fields { - avg: (v_player_match_rating_avg_fields | null) +/** 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_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_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_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_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_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_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' } /** 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_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_match_rating" */ -export type v_player_match_rating_select_column = 'adr' | 'dpr' | 'hltv_rating' | 'kast_pct' | 'kpr' | 'match_id' | 'rounds_played' | 'steam_id' +/** 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_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' +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_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' +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_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' +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_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' +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_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_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_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_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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' } -/** 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 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' -/** 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_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' -/** 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_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_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' +/** 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_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' +/** 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_player_multi_kills" */ -export interface v_player_multi_kills_aggregate_fields { - avg: (v_player_multi_kills_avg_fields | null) +/** 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_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' + 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_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' +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_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' +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_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' +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_player_multi_kills" */ -export type v_player_multi_kills_select_column = 'attacker_steam_id' | 'kills' | 'match_id' | 'round' +/** 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_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' +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_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' +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_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' +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_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' +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_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' +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_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' +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_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' +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_queue_partners" */ -export interface v_player_queue_partners { - first_played_at: (Scalars['timestamptz'] | null) - last_played_at: (Scalars['timestamptz'] | null) - matches_together: (Scalars['Int'] | null) - /** An object relationship */ - partner: (players | null) - partner_steam_id: (Scalars['bigint'] | null) +/** columns and relationships of "v_team_ranks" */ +export interface v_team_ranks { + avg_duel_elo: (Scalars['Int'] | null) + avg_elo: (Scalars['Int'] | null) + avg_faceit_elo: (Scalars['Int'] | null) + avg_faceit_level: (Scalars['float8'] | null) + avg_premier: (Scalars['Int'] | null) + avg_wingman_elo: (Scalars['Int'] | null) + max_elo: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + roster_size: (Scalars['bigint'] | null) /** An object relationship */ - player: (players | null) - steam_id: (Scalars['bigint'] | null) - wins_together: (Scalars['Int'] | null) - __typename: 'v_player_queue_partners' + team: (teams | null) + team_id: (Scalars['uuid'] | null) + __typename: 'v_team_ranks' } -/** aggregated selection of "v_player_queue_partners" */ -export interface v_player_queue_partners_aggregate { - aggregate: (v_player_queue_partners_aggregate_fields | null) - nodes: v_player_queue_partners[] - __typename: 'v_player_queue_partners_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_queue_partners" */ -export interface v_player_queue_partners_aggregate_fields { - avg: (v_player_queue_partners_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_queue_partners_max_fields | null) - min: (v_player_queue_partners_min_fields | null) - stddev: (v_player_queue_partners_stddev_fields | null) - stddev_pop: (v_player_queue_partners_stddev_pop_fields | null) - stddev_samp: (v_player_queue_partners_stddev_samp_fields | null) - sum: (v_player_queue_partners_sum_fields | null) - var_pop: (v_player_queue_partners_var_pop_fields | null) - var_samp: (v_player_queue_partners_var_samp_fields | null) - variance: (v_player_queue_partners_variance_fields | null) - __typename: 'v_player_queue_partners_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_queue_partners_avg_fields { - matches_together: (Scalars['Float'] | null) - partner_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - wins_together: (Scalars['Float'] | null) - __typename: 'v_player_queue_partners_avg_fields' +export interface v_team_ranks_avg_fields { + avg_duel_elo: (Scalars['Float'] | null) + avg_elo: (Scalars['Float'] | null) + avg_faceit_elo: (Scalars['Float'] | null) + avg_faceit_level: (Scalars['Float'] | null) + avg_premier: (Scalars['Float'] | null) + avg_wingman_elo: (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_queue_partners_max_fields { - first_played_at: (Scalars['timestamptz'] | null) - last_played_at: (Scalars['timestamptz'] | null) - matches_together: (Scalars['Int'] | null) - partner_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - wins_together: (Scalars['Int'] | null) - __typename: 'v_player_queue_partners_max_fields' +export interface v_team_ranks_max_fields { + avg_duel_elo: (Scalars['Int'] | null) + avg_elo: (Scalars['Int'] | null) + avg_faceit_elo: (Scalars['Int'] | null) + avg_faceit_level: (Scalars['float8'] | null) + avg_premier: (Scalars['Int'] | null) + avg_wingman_elo: (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_queue_partners_min_fields { - first_played_at: (Scalars['timestamptz'] | null) - last_played_at: (Scalars['timestamptz'] | null) - matches_together: (Scalars['Int'] | null) - partner_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - wins_together: (Scalars['Int'] | null) - __typename: 'v_player_queue_partners_min_fields' +export interface v_team_ranks_min_fields { + avg_duel_elo: (Scalars['Int'] | null) + avg_elo: (Scalars['Int'] | null) + avg_faceit_elo: (Scalars['Int'] | null) + avg_faceit_level: (Scalars['float8'] | null) + avg_premier: (Scalars['Int'] | null) + avg_wingman_elo: (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_queue_partners" */ -export type v_player_queue_partners_select_column = 'first_played_at' | 'last_played_at' | 'matches_together' | 'partner_steam_id' | 'steam_id' | 'wins_together' +/** select columns of table "v_team_ranks" */ +export type v_team_ranks_select_column = 'avg_duel_elo' | 'avg_elo' | 'avg_faceit_elo' | 'avg_faceit_level' | 'avg_premier' | 'avg_wingman_elo' | 'max_elo' | 'min_elo' | 'roster_size' | 'team_id' /** aggregate stddev on columns */ -export interface v_player_queue_partners_stddev_fields { - matches_together: (Scalars['Float'] | null) - partner_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - wins_together: (Scalars['Float'] | null) - __typename: 'v_player_queue_partners_stddev_fields' +export interface v_team_ranks_stddev_fields { + avg_duel_elo: (Scalars['Float'] | null) + avg_elo: (Scalars['Float'] | null) + avg_faceit_elo: (Scalars['Float'] | null) + avg_faceit_level: (Scalars['Float'] | null) + avg_premier: (Scalars['Float'] | null) + avg_wingman_elo: (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_queue_partners_stddev_pop_fields { - matches_together: (Scalars['Float'] | null) - partner_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - wins_together: (Scalars['Float'] | null) - __typename: 'v_player_queue_partners_stddev_pop_fields' +export interface v_team_ranks_stddev_pop_fields { + avg_duel_elo: (Scalars['Float'] | null) + avg_elo: (Scalars['Float'] | null) + avg_faceit_elo: (Scalars['Float'] | null) + avg_faceit_level: (Scalars['Float'] | null) + avg_premier: (Scalars['Float'] | null) + avg_wingman_elo: (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_queue_partners_stddev_samp_fields { - matches_together: (Scalars['Float'] | null) - partner_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - wins_together: (Scalars['Float'] | null) - __typename: 'v_player_queue_partners_stddev_samp_fields' +export interface v_team_ranks_stddev_samp_fields { + avg_duel_elo: (Scalars['Float'] | null) + avg_elo: (Scalars['Float'] | null) + avg_faceit_elo: (Scalars['Float'] | null) + avg_faceit_level: (Scalars['Float'] | null) + avg_premier: (Scalars['Float'] | null) + avg_wingman_elo: (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_queue_partners_sum_fields { - matches_together: (Scalars['Int'] | null) - partner_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - wins_together: (Scalars['Int'] | null) - __typename: 'v_player_queue_partners_sum_fields' +export interface v_team_ranks_sum_fields { + avg_duel_elo: (Scalars['Int'] | null) + avg_elo: (Scalars['Int'] | null) + avg_faceit_elo: (Scalars['Int'] | null) + avg_faceit_level: (Scalars['float8'] | null) + avg_premier: (Scalars['Int'] | null) + avg_wingman_elo: (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_queue_partners_var_pop_fields { - matches_together: (Scalars['Float'] | null) - partner_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - wins_together: (Scalars['Float'] | null) - __typename: 'v_player_queue_partners_var_pop_fields' +export interface v_team_ranks_var_pop_fields { + avg_duel_elo: (Scalars['Float'] | null) + avg_elo: (Scalars['Float'] | null) + avg_faceit_elo: (Scalars['Float'] | null) + avg_faceit_level: (Scalars['Float'] | null) + avg_premier: (Scalars['Float'] | null) + avg_wingman_elo: (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_queue_partners_var_samp_fields { - matches_together: (Scalars['Float'] | null) - partner_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - wins_together: (Scalars['Float'] | null) - __typename: 'v_player_queue_partners_var_samp_fields' +export interface v_team_ranks_var_samp_fields { + avg_duel_elo: (Scalars['Float'] | null) + avg_elo: (Scalars['Float'] | null) + avg_faceit_elo: (Scalars['Float'] | null) + avg_faceit_level: (Scalars['Float'] | null) + avg_premier: (Scalars['Float'] | null) + avg_wingman_elo: (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_queue_partners_variance_fields { - matches_together: (Scalars['Float'] | null) - partner_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - wins_together: (Scalars['Float'] | null) - __typename: 'v_player_queue_partners_variance_fields' +export interface v_team_ranks_variance_fields { + avg_duel_elo: (Scalars['Float'] | null) + avg_elo: (Scalars['Float'] | null) + avg_faceit_elo: (Scalars['Float'] | null) + avg_faceit_level: (Scalars['Float'] | null) + avg_premier: (Scalars['Float'] | null) + avg_wingman_elo: (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_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' +/** 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' } -/** 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' +/** 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_weapon_damage" */ -export interface v_player_weapon_damage_aggregate_fields { - avg: (v_player_weapon_damage_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_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' + 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_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' +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_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' +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_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' +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_weapon_damage" */ -export type v_player_weapon_damage_select_column = 'damage' | 'hits' | 'player_steam_id' | 'source' | 'type' | 'with' +/** 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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' +/** 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' } -/** 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_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_weapon_kills" */ -export interface v_player_weapon_kills_aggregate_fields { - avg: (v_player_weapon_kills_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_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_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_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' +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_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' +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_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' +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_weapon_kills" */ -export type v_player_weapon_kills_select_column = 'kill_count' | 'player_steam_id' | 'rounds' | 'source' | 'type' | 'with' +/** 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' +} + + +/** 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' + + +/** 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' + + +/** 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' + + +/** 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' + + +/** 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' + + +/** 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' + + +/** 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' + + +/** 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_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' +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 stddev_pop on columns */ -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' +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 stddev_samp on columns */ -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' +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 sum on columns */ -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' +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' } +/** 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_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' +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 var_samp on columns */ -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' +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' } /** aggregate variance on columns */ -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' +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' } -/** 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) +/** 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 */ - 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' + 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' } -/** 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' +/** 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 fields of "v_pool_maps" */ -export interface v_pool_maps_aggregate_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_pool_maps_max_fields | null) - min: (v_pool_maps_min_fields | null) - __typename: 'v_pool_maps_aggregate_fields' + 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 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' +/** 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 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' +/** 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' } -/** 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' +/** 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' } -/** 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 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' -/** 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' +/** 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' -/** 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' -} +/** 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' -/** 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' -} +/** 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 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' -} +/** 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 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' -} +/** 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 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' -} +/** 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' -/** 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 "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 columns of table "v_steam_account_pool_status" */ -export type v_steam_account_pool_status_select_column = 'busy_accounts' | 'free_accounts' | 'id' | 'total_accounts' +/** 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_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 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_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 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_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 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_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 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_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 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_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 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_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 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_team_ranks" */ -export interface v_team_ranks { - avg_duel_elo: (Scalars['Int'] | null) - avg_elo: (Scalars['Int'] | null) - avg_faceit_elo: (Scalars['Int'] | null) - avg_faceit_level: (Scalars['float8'] | null) - avg_premier: (Scalars['Int'] | null) - avg_wingman_elo: (Scalars['Int'] | null) - max_elo: (Scalars['Int'] | null) - min_elo: (Scalars['Int'] | null) - roster_size: (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 */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - __typename: 'v_team_ranks' + 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' } -/** 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' +/** 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_team_ranks" */ -export interface v_team_ranks_aggregate_fields { - avg: (v_team_ranks_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_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' + 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_team_ranks_avg_fields { - avg_duel_elo: (Scalars['Float'] | null) - avg_elo: (Scalars['Float'] | null) - avg_faceit_elo: (Scalars['Float'] | null) - avg_faceit_level: (Scalars['Float'] | null) - avg_premier: (Scalars['Float'] | null) - avg_wingman_elo: (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 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 max on columns */ -export interface v_team_ranks_max_fields { - avg_duel_elo: (Scalars['Int'] | null) - avg_elo: (Scalars['Int'] | null) - avg_faceit_elo: (Scalars['Int'] | null) - avg_faceit_level: (Scalars['float8'] | null) - avg_premier: (Scalars['Int'] | null) - avg_wingman_elo: (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 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 min on columns */ -export interface v_team_ranks_min_fields { - avg_duel_elo: (Scalars['Int'] | null) - avg_elo: (Scalars['Int'] | null) - avg_faceit_elo: (Scalars['Int'] | null) - avg_faceit_level: (Scalars['float8'] | null) - avg_premier: (Scalars['Int'] | null) - avg_wingman_elo: (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 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' } -/** select columns of table "v_team_ranks" */ -export type v_team_ranks_select_column = 'avg_duel_elo' | 'avg_elo' | 'avg_faceit_elo' | 'avg_faceit_level' | 'avg_premier' | 'avg_wingman_elo' | 'max_elo' | 'min_elo' | 'roster_size' | 'team_id' +/** 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' -/** aggregate stddev on columns */ -export interface v_team_ranks_stddev_fields { - avg_duel_elo: (Scalars['Float'] | null) - avg_elo: (Scalars['Float'] | null) - avg_faceit_elo: (Scalars['Float'] | null) - avg_faceit_level: (Scalars['Float'] | null) - avg_premier: (Scalars['Float'] | null) - avg_wingman_elo: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - roster_size: (Scalars['Float'] | null) - __typename: 'v_team_ranks_stddev_fields' +/** 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_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' } /** aggregate stddev_pop on columns */ -export interface v_team_ranks_stddev_pop_fields { - avg_duel_elo: (Scalars['Float'] | null) - avg_elo: (Scalars['Float'] | null) - avg_faceit_elo: (Scalars['Float'] | null) - avg_faceit_level: (Scalars['Float'] | null) - avg_premier: (Scalars['Float'] | null) - avg_wingman_elo: (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 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' } /** aggregate stddev_samp on columns */ -export interface v_team_ranks_stddev_samp_fields { - avg_duel_elo: (Scalars['Float'] | null) - avg_elo: (Scalars['Float'] | null) - avg_faceit_elo: (Scalars['Float'] | null) - avg_faceit_level: (Scalars['Float'] | null) - avg_premier: (Scalars['Float'] | null) - avg_wingman_elo: (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 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' } /** aggregate sum on columns */ -export interface v_team_ranks_sum_fields { - avg_duel_elo: (Scalars['Int'] | null) - avg_elo: (Scalars['Int'] | null) - avg_faceit_elo: (Scalars['Int'] | null) - avg_faceit_level: (Scalars['float8'] | null) - avg_premier: (Scalars['Int'] | null) - avg_wingman_elo: (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 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' } /** aggregate var_pop on columns */ -export interface v_team_ranks_var_pop_fields { - avg_duel_elo: (Scalars['Float'] | null) - avg_elo: (Scalars['Float'] | null) - avg_faceit_elo: (Scalars['Float'] | null) - avg_faceit_level: (Scalars['Float'] | null) - avg_premier: (Scalars['Float'] | null) - avg_wingman_elo: (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' +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' } /** aggregate var_samp on columns */ -export interface v_team_ranks_var_samp_fields { - avg_duel_elo: (Scalars['Float'] | null) - avg_elo: (Scalars['Float'] | null) - avg_faceit_elo: (Scalars['Float'] | null) - avg_faceit_level: (Scalars['Float'] | null) - avg_premier: (Scalars['Float'] | null) - avg_wingman_elo: (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 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' } /** aggregate variance on columns */ -export interface v_team_ranks_variance_fields { - avg_duel_elo: (Scalars['Float'] | null) - avg_elo: (Scalars['Float'] | null) - avg_faceit_elo: (Scalars['Float'] | null) - avg_faceit_level: (Scalars['Float'] | null) - avg_premier: (Scalars['Float'] | null) - avg_wingman_elo: (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 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 type Query = query_root +export type Mutation = mutation_root +export type Subscription = subscription_root -/** 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 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 } - -/** 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 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 } - -/** 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 AddCustomGamePluginOutputGenqlSelection{ + name?: boolean | number + runtime?: boolean | number + slug?: boolean | number + version?: 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 ApiKeyResponseGenqlSelection{ + key?: 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 AwardGenqlSelection{ + allow_multiple?: boolean | number + created_at?: boolean | number + created_by_steam_id?: boolean | number + description?: boolean | number + event_id?: boolean | number + id?: boolean | number + image_url?: boolean | number + league_season_id?: boolean | number + name?: boolean | number + season_id?: boolean | number + silhouette?: boolean | number + system_key?: boolean | number + tier?: boolean | number + tournament_id?: boolean | number + updated_at?: 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 AwardRecipientGenqlSelection{ + award_id?: boolean | number + awarded_by_steam_id?: boolean | number + created_at?: boolean | number + id?: boolean | number + note?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number + source?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + tournament_team_id?: boolean | number + __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' +/** 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)} -/** 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 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']} -/** 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 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)} -/** 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 ConnectionByStateGenqlSelection{ + count?: boolean | number + state?: boolean | number + wait_event_type?: boolean | number + waiting_count?: 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 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 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 CpuStatGenqlSelection{ + time?: boolean | number + total?: boolean | number + used?: boolean | number + window?: 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 CreateClipRenderOutputGenqlSelection{ + job_id?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface CreateDraftGameOutputGenqlSelection{ + draftGameId?: 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 CreateScheduledMatchOutputGenqlSelection{ + matchId?: 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 + __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 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 } +export interface DedicatedSeverInfoGenqlSelection{ + id?: boolean | number + lastPing?: boolean | number + map?: boolean | number + players?: boolean | number + __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 DeleteOrphansOutputGenqlSelection{ + bytes_freed?: boolean | number + deleted?: boolean | number + remaining_orphans?: boolean | number + success?: 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 + __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 DiskStatsGenqlSelection{ + disks?: DiskStatGenqlSelection + time?: 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 + id?: boolean | number + mode?: boolean | number + players?: DraftGamePreviewPlayerGenqlSelection + require_approval?: boolean | number + status?: boolean | number + type?: boolean | number + __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 DraftGamePreviewPlayerGenqlSelection{ + avatar_url?: boolean | number + name?: boolean | number + status?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface FaceitTestOutputGenqlSelection{ + dataApi?: FaceitTestResultGenqlSelection + downloadApi?: FaceitTestResultGenqlSelection + __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' +export interface FaceitTestResultGenqlSelection{ + detail?: boolean | number + ok?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} +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_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' +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 } +export interface FileListResponseGenqlSelection{ + currentPath?: boolean | number + items?: FileItemGenqlSelection + __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' + +/** 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 } +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 +} -/** 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 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 +} -/** 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 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 +} -/** 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 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 +} -/** 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' +/** 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 +} -/** 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' +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 +} -/** 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' +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 +} -/** 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' +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 +} -/** 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' +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 +} -/** 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' +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 +} -/** 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' +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 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' +export interface PendingMatchImportActionOutputGenqlSelection{ + error?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface PluginReadmeOutputGenqlSelection{ + content?: boolean | number + format?: boolean | number + repo?: boolean | number + url?: 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' +export interface PodStatsGenqlSelection{ + cpu?: CpuStatGenqlSelection + memory?: MemoryStatGenqlSelection + name?: boolean | number + node?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface PreviewGameModeOutputGenqlSelection{ + cfg?: boolean | number + enabledPlugins?: boolean | number + extraGameParams?: boolean | number + __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' +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 +} -/** 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' +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 +} -/** 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' +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 ReconcileNodePluginsOutputGenqlSelection{ + detected?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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' +export interface ReindexStartedOutputGenqlSelection{ + running?: boolean | number + success?: 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 + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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' +export interface ReparseAllStartedOutputGenqlSelection{ + running?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** 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' +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 +} -/** 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' +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)} -/** 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' +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 } +export interface ServerPlayerGenqlSelection{ + name?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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 SetupGameServeOutputGenqlSelection{ + gameServerId?: boolean | number + link?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface SteamMatchHistoryLinkOutputGenqlSelection{ + error?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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 SteamMatchHistoryPollOutputGenqlSelection{ + collected?: boolean | number + error?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface SteamPresenceAdminStatusOutputGenqlSelection{ + bots?: SteamPresenceBotGenqlSelection + enabled?: boolean | number + pool?: SteamPresencePoolGenqlSelection + __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' +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 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' +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 +} -/** 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' +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 +} -/** 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' +/** 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)} -/** 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' +/** 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 +} -/** 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' +export interface SyncPluginRegistryOutputGenqlSelection{ + plugins?: boolean | number + versions?: 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 +} -/** 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' +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 +} -/** 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' +export interface TeamCalendarOutputGenqlSelection{ + url?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} +export interface TelemetryActivityPointGenqlSelection{ + day?: boolean | number + installs?: boolean | number + matches?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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' +export interface TelemetryCountryCountGenqlSelection{ + country?: boolean | number + installs?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} +export interface TelemetryFeatureAdoptionGenqlSelection{ + counted?: boolean | number + enabled?: boolean | number + flagged?: boolean | number + installsUsing?: boolean | number + key?: boolean | number + kind?: boolean | number + reporting?: boolean | number + total?: boolean | number + __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' +export interface TelemetryFleetTotalsGenqlSelection{ + appearancesReported?: boolean | number + competitionReported?: boolean | number + dedicatedServers?: boolean | number + eventTeams?: boolean | number + events?: boolean | number + gameModes?: boolean | number + gameModesEnabled?: boolean | number + gameModesUnranked?: boolean | number + gameServerNodes?: boolean | number + gameServerNodesEnabled?: boolean | number + gameServerNodesOnline?: boolean | number + gpuNodes?: boolean | number + leagueRegistrations?: boolean | number + leagueSeasons?: boolean | number + leagueSeasonsFinished?: boolean | number + leagueTeams?: boolean | number + mapsPlayed?: boolean | number + matches?: boolean | number + matchesAbandoned?: boolean | number + matchesCreated?: boolean | number + matchesFinished?: boolean | number + matchesImported?: boolean | number + matchesImportedMonth?: boolean | number + matchesImportedYear?: boolean | number + matchesLeague?: boolean | number + matchesLive?: boolean | number + matchesMonth?: boolean | number + matchesScrim?: boolean | number + matchesTournament?: boolean | number + matchesWeek?: boolean | number + matchesYear?: boolean | number + outcomesReported?: boolean | number + panels?: boolean | number + playerAppearances?: boolean | number + playersActive30d?: boolean | number + playersActive7d?: boolean | number + playersKnown?: boolean | number + playersPlayed?: boolean | number + playersRegistered?: boolean | number + pluginsBySlug?: boolean | number + pluginsManual?: boolean | number + pluginsReported?: boolean | number + pluginsRequested?: boolean | number + publicServers?: boolean | number + regions?: boolean | number + scrimRequests?: boolean | number + servers?: boolean | number + serversEnabled?: boolean | number + teams?: boolean | number + tournamentTeams?: boolean | number + tournaments?: boolean | number + tournamentsFinished?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} +export interface TelemetryGrowthPointGenqlSelection{ + installs?: boolean | number + month?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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' +export interface TelemetryInstallCountsGenqlSelection{ + active24h?: boolean | number + active30d?: boolean | number + active7d?: boolean | number + new30d?: boolean | number + retained180d?: boolean | number + total?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} +export interface TelemetryMatchSourceCountGenqlSelection{ + matches?: boolean | number + source?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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 TelemetryMatchTypeCountGenqlSelection{ + matches?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface TelemetryRuntimeCountGenqlSelection{ + installs?: boolean | number + runtime?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface TelemetryStatsGenqlSelection{ + activity?: TelemetryActivityPointGenqlSelection + countries?: TelemetryCountryCountGenqlSelection + features?: TelemetryFeatureAdoptionGenqlSelection + growth?: TelemetryGrowthPointGenqlSelection + installs?: TelemetryInstallCountsGenqlSelection + matchSources?: TelemetryMatchSourceCountGenqlSelection + matchTypes?: TelemetryMatchTypeCountGenqlSelection + online?: boolean | number + runtimes?: TelemetryRuntimeCountGenqlSelection + totals?: TelemetryFleetTotalsGenqlSelection + versions?: TelemetryVersionCountGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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 TelemetryVersionCountGenqlSelection{ + installs?: boolean | number + rank?: boolean | number + since?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface TestUploadResponseGenqlSelection{ + error?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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 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 TimescaleStatsGenqlSelection{ + chunks_count?: boolean | number + hypertables?: HypertableInfoGenqlSelection + jobs?: TimescaleJobGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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 TournamentAwardGenqlSelection{ + award_id?: boolean | number + custom_name?: boolean | number + id?: boolean | number + image_url?: boolean | number + placement?: boolean | number + silhouette?: boolean | number + tournament_id?: boolean | number + __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 +} -/** 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 WatchDemoOutputGenqlSelection{ + match_map_id?: boolean | number + session_id?: boolean | number + stream_url?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface WebPushPlatformCountGenqlSelection{ + devices?: boolean | number + platform?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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 WebPushStatusOutputGenqlSelection{ + active_7d?: boolean | number + configured?: boolean | number + last_delivered_at?: boolean | number + managed_by_environment?: boolean | number + never_delivered?: boolean | number + new_7d?: boolean | number + platforms?: WebPushPlatformCountGenqlSelection + players?: boolean | number + subscriptions?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } -/** 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' +/** 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 } -/** 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' +/** aggregated selection of "_map_pool" */ +export interface _map_pool_aggregateGenqlSelection{ + aggregate?: _map_pool_aggregate_fieldsGenqlSelection + nodes?: _map_poolGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number } -/** 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 "_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 } -/** 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' -} +/** 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)} -/** 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' -} +/** 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)} /** 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' +export interface _map_pool_max_fieldsGenqlSelection{ + map_id?: boolean | number + map_pool_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' +export interface _map_pool_min_fieldsGenqlSelection{ + map_id?: boolean | number + map_pool_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } -/** 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' - +/** 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 +} -/** 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' +/** 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)} -/** 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' +/** 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)} -/** 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' +/** primary key columns input for table: _map_pool */ +export interface _map_pool_pk_columns_input {map_id: Scalars['uuid'],map_pool_id: Scalars['uuid']} -/** 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' +/** 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)} -/** 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' +/** 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)} -/** 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' +/** 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)} -/** 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' +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} -/** 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' +/** columns and relationships of "abandoned_matches" */ +export interface abandoned_matchesGenqlSelection{ + abandoned_at?: boolean | number + id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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' +/** 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 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 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 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' +/** 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 } -/** 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' -} +/** 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)} -/** 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' -} +/** 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 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' +/** aggregate avg on columns */ +export interface abandoned_matches_avg_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' -} +/** order by avg() on columns of table "abandoned_matches" */ +export interface abandoned_matches_avg_order_by {steam_id?: (order_by | null)} -export type Query = query_root -export type Mutation = mutation_root -export type Subscription = subscription_root -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 -} +/** 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),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} -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 -} -export interface ApiKeyResponseGenqlSelection{ - key?: boolean | number +/** input type for incrementing numeric columns in table "abandoned_matches" */ +export interface abandoned_matches_inc_input {steam_id?: (Scalars['bigint'] | 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),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface abandoned_matches_max_fieldsGenqlSelection{ + abandoned_at?: boolean | number + id?: boolean | number + match_id?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface AwardGenqlSelection{ - allow_multiple?: boolean | number - created_at?: boolean | number - created_by_steam_id?: boolean | number - description?: boolean | number - event_id?: 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),match_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 - image_url?: boolean | number - league_season_id?: boolean | number - name?: boolean | number - season_id?: boolean | number - silhouette?: boolean | number - system_key?: boolean | number - tier?: boolean | number - tournament_id?: boolean | number - updated_at?: boolean | number + match_id?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface AwardRecipientGenqlSelection{ - award_id?: boolean | number - awarded_by_steam_id?: boolean | number - created_at?: boolean | number - id?: boolean | number - note?: boolean | number - placement?: boolean | number - player_steam_id?: boolean | number - source?: boolean | number - team_id?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: 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),match_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** 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 } -/** 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)} +/** 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)} -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']} +/** Ordering options when selecting data from "abandoned_matches". */ +export interface abandoned_matches_order_by {abandoned_at?: (order_by | null),id?: (order_by | null),match?: (matches_order_by | null),match_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']} -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 updating data in table "abandoned_matches" */ +export interface abandoned_matches_set_input {abandoned_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | 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 stddev on columns */ +export interface abandoned_matches_stddev_fieldsGenqlSelection{ + 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 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 abandoned_matches_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface CreateClipRenderOutputGenqlSelection{ - job_id?: boolean | number - success?: 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 abandoned_matches_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface CreateDraftGameOutputGenqlSelection{ - draftGameId?: 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),match_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface abandoned_matches_sum_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface CreateScheduledMatchOutputGenqlSelection{ - matchId?: 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 abandoned_matches_var_pop_fieldsGenqlSelection{ + 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 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 abandoned_matches_var_samp_fieldsGenqlSelection{ + 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 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 abandoned_matches_variance_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface DedicatedSeverInfoGenqlSelection{ + +/** order by variance() on columns of table "abandoned_matches" */ +export interface abandoned_matches_variance_order_by {steam_id?: (order_by | null)} + + +/** columns and relationships of "api_keys" */ +export interface api_keysGenqlSelection{ + created_at?: boolean | number id?: boolean | number - lastPing?: boolean | number - map?: boolean | number - players?: boolean | number + label?: boolean | number + last_used_at?: boolean | number + 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 + +/** aggregated selection of "api_keys" */ +export interface api_keys_aggregateGenqlSelection{ + aggregate?: api_keys_aggregate_fieldsGenqlSelection + nodes?: api_keysGenqlSelection __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 + +/** 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 } -export interface DiskStatsGenqlSelection{ - disks?: DiskStatGenqlSelection - time?: boolean | number + +/** aggregate avg on columns */ +export interface api_keys_avg_fieldsGenqlSelection{ + 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 + +/** 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)} + + +/** input type for incrementing numeric columns in table "api_keys" */ +export interface api_keys_inc_input {steam_id?: (Scalars['bigint'] | 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)} + + +/** aggregate max on columns */ +export interface api_keys_max_fieldsGenqlSelection{ + created_at?: boolean | number id?: boolean | number - mode?: boolean | number - players?: DraftGamePreviewPlayerGenqlSelection - require_approval?: boolean | number - status?: boolean | number - type?: boolean | number + label?: boolean | number + last_used_at?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface DraftGamePreviewPlayerGenqlSelection{ - avatar_url?: boolean | number - name?: boolean | number - status?: 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 __typename?: boolean | number __scalar?: boolean | number } -export interface FaceitTestOutputGenqlSelection{ - dataApi?: FaceitTestResultGenqlSelection - downloadApi?: FaceitTestResultGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} -export interface FaceitTestResultGenqlSelection{ - detail?: boolean | number - ok?: boolean | number +/** 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 } -export interface FileContentResponseGenqlSelection{ - content?: boolean | number - path?: boolean | number - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} -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 -} +/** 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)} -export interface FileListResponseGenqlSelection{ - currentPath?: boolean | number - items?: FileItemGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} +/** 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)} -/** 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 +/** primary key columns input for table: api_keys */ +export interface api_keys_pk_columns_input {id: Scalars['uuid']} + + +/** 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 api_keys_stddev_fieldsGenqlSelection{ + steam_id?: 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 + +/** aggregate stddev_pop on columns */ +export interface api_keys_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface GpuStatsGenqlSelection{ - devices?: GpuDeviceStatGenqlSelection - time?: boolean | number + +/** aggregate stddev_samp on columns */ +export interface api_keys_stddev_samp_fieldsGenqlSelection{ + steam_id?: 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 + +/** 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 api_keys_sum_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface HypertableInfoGenqlSelection{ - compression_enabled?: boolean | number - hypertable_name?: boolean | number - num_chunks?: 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 api_keys_var_pop_fieldsGenqlSelection{ + steam_id?: 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 var_samp on columns */ +export interface api_keys_var_samp_fieldsGenqlSelection{ + steam_id?: 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 variance on columns */ +export interface api_keys_variance_fieldsGenqlSelection{ + steam_id?: boolean | number __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 "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 +/** columns and relationships of "award_recipients" */ +export interface award_recipientsGenqlSelection{ + /** An object relationship */ + award?: awardsGenqlSelection + award_id?: boolean | number + /** An object relationship */ + awarded_by?: playersGenqlSelection + awarded_by_steam_id?: boolean | number + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + id?: boolean | number + /** An object relationship */ + league_season?: league_seasonsGenqlSelection + league_season_id?: boolean | number + note?: boolean | number + placement?: boolean | number + placement_tier?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + /** An object relationship */ + season?: seasonsGenqlSelection + season_id?: boolean | number + source?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + /** An object relationship */ + tournament_award?: tournament_awardsGenqlSelection + tournament_id?: boolean | number + /** An object relationship */ + tournament_team?: tournament_teamsGenqlSelection + tournament_team_id?: 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 -} -export interface LiveSpecSlotGenqlSelection{ - alive?: boolean | number - health?: boolean | number - name?: boolean | number - slot?: boolean | number - steam_id?: boolean | number - team?: boolean | number +/** aggregated selection of "award_recipients" */ +export interface award_recipients_aggregateGenqlSelection{ + aggregate?: award_recipients_aggregate_fieldsGenqlSelection + nodes?: award_recipientsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface LiveStreamSpecStateGenqlSelection{ - gsi?: LiveSpecGsiGenqlSelection +export interface award_recipients_aggregate_bool_exp {count?: (award_recipients_aggregate_bool_exp_count | null)} + +export interface award_recipients_aggregate_bool_exp_count {arguments?: (award_recipients_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (award_recipients_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "award_recipients" */ +export interface award_recipients_aggregate_fieldsGenqlSelection{ + avg?: award_recipients_avg_fieldsGenqlSelection + count?: { __args: {columns?: (award_recipients_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: award_recipients_max_fieldsGenqlSelection + min?: award_recipients_min_fieldsGenqlSelection + stddev?: award_recipients_stddev_fieldsGenqlSelection + stddev_pop?: award_recipients_stddev_pop_fieldsGenqlSelection + stddev_samp?: award_recipients_stddev_samp_fieldsGenqlSelection + sum?: award_recipients_sum_fieldsGenqlSelection + var_pop?: award_recipients_var_pop_fieldsGenqlSelection + var_samp?: award_recipients_var_samp_fieldsGenqlSelection + variance?: award_recipients_variance_fieldsGenqlSelection __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 + +/** order by aggregate values of table "award_recipients" */ +export interface award_recipients_aggregate_order_by {avg?: (award_recipients_avg_order_by | null),count?: (order_by | null),max?: (award_recipients_max_order_by | null),min?: (award_recipients_min_order_by | null),stddev?: (award_recipients_stddev_order_by | null),stddev_pop?: (award_recipients_stddev_pop_order_by | null),stddev_samp?: (award_recipients_stddev_samp_order_by | null),sum?: (award_recipients_sum_order_by | null),var_pop?: (award_recipients_var_pop_order_by | null),var_samp?: (award_recipients_var_samp_order_by | null),variance?: (award_recipients_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "award_recipients" */ +export interface award_recipients_arr_rel_insert_input {data: award_recipients_insert_input[], +/** upsert condition */ +on_conflict?: (award_recipients_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface award_recipients_avg_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -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 + +/** order by avg() on columns of table "award_recipients" */ +export interface award_recipients_avg_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "award_recipients". All fields are combined with a logical 'AND'. */ +export interface award_recipients_bool_exp {_and?: (award_recipients_bool_exp[] | null),_not?: (award_recipients_bool_exp | null),_or?: (award_recipients_bool_exp[] | null),award?: (awards_bool_exp | null),award_id?: (uuid_comparison_exp | null),awarded_by?: (players_bool_exp | null),awarded_by_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),league_season?: (league_seasons_bool_exp | null),league_season_id?: (uuid_comparison_exp | null),note?: (String_comparison_exp | null),placement?: (Int_comparison_exp | null),placement_tier?: (String_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),season?: (seasons_bool_exp | null),season_id?: (uuid_comparison_exp | null),source?: (e_award_sources_enum_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_award?: (tournament_awards_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),tournament_team?: (tournament_teams_bool_exp | null),tournament_team_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "award_recipients" */ +export interface award_recipients_inc_input {awarded_by_steam_id?: (Scalars['bigint'] | null),placement?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "award_recipients" */ +export interface award_recipients_insert_input {award?: (awards_obj_rel_insert_input | null),award_id?: (Scalars['uuid'] | null),awarded_by?: (players_obj_rel_insert_input | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),league_season?: (league_seasons_obj_rel_insert_input | null),league_season_id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),season?: (seasons_obj_rel_insert_input | null),season_id?: (Scalars['uuid'] | null),source?: (e_award_sources_enum | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_award?: (tournament_awards_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),tournament_team?: (tournament_teams_obj_rel_insert_input | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface award_recipients_max_fieldsGenqlSelection{ + award_id?: boolean | number + awarded_by_steam_id?: boolean | number + created_at?: boolean | number + event_id?: boolean | number + id?: boolean | number + league_season_id?: boolean | number + note?: boolean | number + placement?: boolean | number + placement_tier?: boolean | number + player_steam_id?: boolean | number + season_id?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + tournament_team_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 -} -export interface NetworkStatsGenqlSelection{ - nics?: NicStatGenqlSelection - time?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** order by max() on columns of table "award_recipients" */ +export interface award_recipients_max_order_by {award_id?: (order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),event_id?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player_steam_id?: (order_by | null),season_id?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} -export interface NewsPostGenqlSelection{ - author_steam_id?: boolean | number - content_markdown?: boolean | number - cover_image_url?: boolean | number + +/** aggregate min on columns */ +export interface award_recipients_min_fieldsGenqlSelection{ + award_id?: boolean | number + awarded_by_steam_id?: boolean | number created_at?: boolean | number + event_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 + league_season_id?: boolean | number + note?: boolean | number + placement?: boolean | number + placement_tier?: boolean | number + player_steam_id?: boolean | number + season_id?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + tournament_team_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 - __typename?: boolean | number - __scalar?: boolean | number -} +/** order by min() on columns of table "award_recipients" */ +export interface award_recipients_min_order_by {award_id?: (order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),event_id?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player_steam_id?: (order_by | null),season_id?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} -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 +/** response of any mutation on the table "award_recipients" */ +export interface award_recipients_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: award_recipientsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -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 -} +/** on_conflict condition type for table "award_recipients" */ +export interface award_recipients_on_conflict {constraint: award_recipients_constraint,update_columns?: award_recipients_update_column[],where?: (award_recipients_bool_exp | null)} -export interface PreviewTournamentMatchResetOutputGenqlSelection{ - impacts?: TournamentMatchResetImpactGenqlSelection + +/** Ordering options when selecting data from "award_recipients". */ +export interface award_recipients_order_by {award?: (awards_order_by | null),award_id?: (order_by | null),awarded_by?: (players_order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),id?: (order_by | null),league_season?: (league_seasons_order_by | null),league_season_id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),season?: (seasons_order_by | null),season_id?: (order_by | null),source?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_award?: (tournament_awards_order_by | null),tournament_id?: (order_by | null),tournament_team?: (tournament_teams_order_by | null),tournament_team_id?: (order_by | null)} + + +/** primary key columns input for table: award_recipients */ +export interface award_recipients_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "award_recipients" */ +export interface award_recipients_set_input {award_id?: (Scalars['uuid'] | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null),season_id?: (Scalars['uuid'] | null),source?: (e_award_sources_enum | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface award_recipients_stddev_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_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 stddev() on columns of table "award_recipients" */ +export interface award_recipients_stddev_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface award_recipients_stddev_pop_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number __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 + +/** order by stddev_pop() on columns of table "award_recipients" */ +export interface award_recipients_stddev_pop_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface award_recipients_stddev_samp_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface RecomputeEloStartedOutputGenqlSelection{ - running?: boolean | number - success?: boolean | number + +/** order by stddev_samp() on columns of table "award_recipients" */ +export interface award_recipients_stddev_samp_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "award_recipients" */ +export interface award_recipients_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: award_recipients_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface award_recipients_stream_cursor_value_input {award_id?: (Scalars['uuid'] | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),placement_tier?: (Scalars['String'] | null),player_steam_id?: (Scalars['bigint'] | null),season_id?: (Scalars['uuid'] | null),source?: (e_award_sources_enum | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface award_recipients_sum_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_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 sum() on columns of table "award_recipients" */ +export interface award_recipients_sum_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + +export interface award_recipients_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (award_recipients_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (award_recipients_set_input | null), +/** filter the rows which have to be updated */ +where: award_recipients_bool_exp} + + +/** aggregate var_pop on columns */ +export interface award_recipients_var_pop_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface ReindexStartedOutputGenqlSelection{ - running?: boolean | number - success?: boolean | number + +/** order by var_pop() on columns of table "award_recipients" */ +export interface award_recipients_var_pop_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface award_recipients_var_samp_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_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 var_samp() on columns of table "award_recipients" */ +export interface award_recipients_var_samp_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface award_recipients_variance_fieldsGenqlSelection{ + awarded_by_steam_id?: boolean | number + placement?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface ReparseAllStartedOutputGenqlSelection{ - running?: boolean | number - success?: boolean | number + +/** order by variance() on columns of table "award_recipients" */ +export interface award_recipients_variance_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** columns and relationships of "awards" */ +export interface awardsGenqlSelection{ + allow_multiple?: boolean | number + created_at?: boolean | number + /** An object relationship */ + created_by?: playersGenqlSelection + created_by_steam_id?: boolean | number + description?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + id?: boolean | number + image_url?: boolean | number + /** An object relationship */ + league_season?: league_seasonsGenqlSelection + league_season_id?: boolean | number + name?: boolean | number + /** An array relationship */ + recipients?: (award_recipientsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** An aggregate relationship */ + recipients_aggregate?: (award_recipients_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** An object relationship */ + season?: seasonsGenqlSelection + season_id?: boolean | number + silhouette?: boolean | number + system_key?: boolean | number + tier?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + /** An array relationship */ + tournament_configs?: (tournament_awardsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_awards_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_awards_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_awards_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_configs_aggregate?: (tournament_awards_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_awards_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_awards_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_awards_bool_exp | null)} }) + tournament_id?: boolean | number + updated_at?: 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 + +/** aggregated selection of "awards" */ +export interface awards_aggregateGenqlSelection{ + aggregate?: awards_aggregate_fieldsGenqlSelection + nodes?: awardsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface SanctionResultGenqlSelection{ - enforced?: boolean | number - id?: boolean | number - message?: boolean | number + +/** aggregate fields of "awards" */ +export interface awards_aggregate_fieldsGenqlSelection{ + avg?: awards_avg_fieldsGenqlSelection + count?: { __args: {columns?: (awards_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: awards_max_fieldsGenqlSelection + min?: awards_min_fieldsGenqlSelection + stddev?: awards_stddev_fieldsGenqlSelection + stddev_pop?: awards_stddev_pop_fieldsGenqlSelection + stddev_samp?: awards_stddev_samp_fieldsGenqlSelection + sum?: awards_sum_fieldsGenqlSelection + var_pop?: awards_var_pop_fieldsGenqlSelection + var_samp?: awards_var_samp_fieldsGenqlSelection + variance?: awards_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface ScanStartedOutputGenqlSelection{ - scanning?: boolean | number - success?: boolean | number + +/** aggregate avg on columns */ +export interface awards_avg_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface ScheduledLineupInput {steam_ids?: (Scalars['String'][] | null),team_id?: (Scalars['String'] | 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 +/** Boolean expression to filter rows from the table "awards". All fields are combined with a logical 'AND'. */ +export interface awards_bool_exp {_and?: (awards_bool_exp[] | null),_not?: (awards_bool_exp | null),_or?: (awards_bool_exp[] | null),allow_multiple?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),created_by?: (players_bool_exp | null),created_by_steam_id?: (bigint_comparison_exp | null),description?: (String_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),image_url?: (String_comparison_exp | null),league_season?: (league_seasons_bool_exp | null),league_season_id?: (uuid_comparison_exp | null),name?: (String_comparison_exp | null),recipients?: (award_recipients_bool_exp | null),recipients_aggregate?: (award_recipients_aggregate_bool_exp | null),season?: (seasons_bool_exp | null),season_id?: (uuid_comparison_exp | null),silhouette?: (Int_comparison_exp | null),system_key?: (String_comparison_exp | null),tier?: (e_award_tiers_enum_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_configs?: (tournament_awards_bool_exp | null),tournament_configs_aggregate?: (tournament_awards_aggregate_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "awards" */ +export interface awards_inc_input {created_by_steam_id?: (Scalars['bigint'] | null),silhouette?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "awards" */ +export interface awards_insert_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by?: (players_obj_rel_insert_input | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),league_season?: (league_seasons_obj_rel_insert_input | null),league_season_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),recipients?: (award_recipients_arr_rel_insert_input | null),season?: (seasons_obj_rel_insert_input | null),season_id?: (Scalars['uuid'] | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_configs?: (tournament_awards_arr_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface awards_max_fieldsGenqlSelection{ + created_at?: boolean | number + created_by_steam_id?: boolean | number + description?: boolean | number + event_id?: boolean | number + id?: boolean | number + image_url?: boolean | number + league_season_id?: boolean | number + name?: boolean | number season_id?: boolean | number - started_at?: boolean | number - total?: boolean | number + silhouette?: boolean | number + system_key?: boolean | number + tournament_id?: boolean | number + updated_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface ServerPlayerGenqlSelection{ + +/** aggregate min on columns */ +export interface awards_min_fieldsGenqlSelection{ + created_at?: boolean | number + created_by_steam_id?: boolean | number + description?: boolean | number + event_id?: boolean | number + id?: boolean | number + image_url?: boolean | number + league_season_id?: boolean | number name?: boolean | number - steam_id?: boolean | number + season_id?: boolean | number + silhouette?: boolean | number + system_key?: boolean | number + tournament_id?: boolean | number + updated_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface SetupGameServeOutputGenqlSelection{ - gameServerId?: boolean | number - link?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} -export interface SteamMatchHistoryLinkOutputGenqlSelection{ - error?: boolean | number - success?: boolean | number +/** response of any mutation on the table "awards" */ +export interface awards_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: awardsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface SteamMatchHistoryPollOutputGenqlSelection{ - collected?: boolean | number - error?: boolean | number - success?: boolean | number + +/** input type for inserting object relation for remote table "awards" */ +export interface awards_obj_rel_insert_input {data: awards_insert_input, +/** upsert condition */ +on_conflict?: (awards_on_conflict | null)} + + +/** on_conflict condition type for table "awards" */ +export interface awards_on_conflict {constraint: awards_constraint,update_columns?: awards_update_column[],where?: (awards_bool_exp | null)} + + +/** Ordering options when selecting data from "awards". */ +export interface awards_order_by {allow_multiple?: (order_by | null),created_at?: (order_by | null),created_by?: (players_order_by | null),created_by_steam_id?: (order_by | null),description?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),league_season?: (league_seasons_order_by | null),league_season_id?: (order_by | null),name?: (order_by | null),recipients_aggregate?: (award_recipients_aggregate_order_by | null),season?: (seasons_order_by | null),season_id?: (order_by | null),silhouette?: (order_by | null),system_key?: (order_by | null),tier?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_configs_aggregate?: (tournament_awards_aggregate_order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: awards */ +export interface awards_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "awards" */ +export interface awards_set_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),league_season_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),season_id?: (Scalars['uuid'] | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface awards_stddev_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface SteamPresenceAdminStatusOutputGenqlSelection{ - bots?: SteamPresenceBotGenqlSelection - enabled?: boolean | number - pool?: SteamPresencePoolGenqlSelection + +/** aggregate stddev_pop on columns */ +export interface awards_stddev_pop_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: 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 + +/** aggregate stddev_samp on columns */ +export interface awards_stddev_samp_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface SteamPresenceBotAssignmentGenqlSelection{ - addUrl?: boolean | number - enabled?: boolean | number - status?: boolean | number - steamId?: boolean | number + +/** Streaming cursor of the table "awards" */ +export interface awards_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: awards_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface awards_stream_cursor_value_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),league_season_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),season_id?: (Scalars['uuid'] | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface awards_sum_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: 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 +export interface awards_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (awards_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (awards_set_input | null), +/** filter the rows which have to be updated */ +where: awards_bool_exp} + + +/** aggregate var_pop on columns */ +export interface awards_var_pop_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface StorageStatsGenqlSelection{ - summary?: StorageSummaryGenqlSelection - tables?: TableSizeInfoGenqlSelection + +/** aggregate var_samp on columns */ +export interface awards_var_samp_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: 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 + +/** aggregate variance on columns */ +export interface awards_variance_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + silhouette?: 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 { +/** 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['String'][] | null), +_contained_in?: (Scalars['bigint'][] | 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)} +_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 "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)} +/** 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)} -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 -} +/** 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)} -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 +/** columns and relationships of "chat_read_state" */ +export interface chat_read_stateGenqlSelection{ + last_read_at?: boolean | number + steam_id?: boolean | number + thread?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface TeamCalendarOutputGenqlSelection{ - url?: boolean | number + +/** aggregated selection of "chat_read_state" */ +export interface chat_read_state_aggregateGenqlSelection{ + aggregate?: chat_read_state_aggregate_fieldsGenqlSelection + nodes?: chat_read_stateGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface TelemetryActivityPointGenqlSelection{ - day?: boolean | number - installs?: boolean | number - matches?: boolean | number + +/** aggregate fields of "chat_read_state" */ +export interface chat_read_state_aggregate_fieldsGenqlSelection{ + avg?: chat_read_state_avg_fieldsGenqlSelection + count?: { __args: {columns?: (chat_read_state_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: chat_read_state_max_fieldsGenqlSelection + min?: chat_read_state_min_fieldsGenqlSelection + stddev?: chat_read_state_stddev_fieldsGenqlSelection + stddev_pop?: chat_read_state_stddev_pop_fieldsGenqlSelection + stddev_samp?: chat_read_state_stddev_samp_fieldsGenqlSelection + sum?: chat_read_state_sum_fieldsGenqlSelection + var_pop?: chat_read_state_var_pop_fieldsGenqlSelection + var_samp?: chat_read_state_var_samp_fieldsGenqlSelection + variance?: chat_read_state_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface TelemetryCountryCountGenqlSelection{ - country?: boolean | number - installs?: boolean | number + +/** aggregate avg on columns */ +export interface chat_read_state_avg_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface TelemetryFeatureAdoptionGenqlSelection{ - counted?: boolean | number - enabled?: boolean | number - flagged?: boolean | number - installsUsing?: boolean | number - key?: boolean | number - kind?: boolean | number - reporting?: boolean | number - total?: boolean | number + +/** Boolean expression to filter rows from the table "chat_read_state". All fields are combined with a logical 'AND'. */ +export interface chat_read_state_bool_exp {_and?: (chat_read_state_bool_exp[] | null),_not?: (chat_read_state_bool_exp | null),_or?: (chat_read_state_bool_exp[] | null),last_read_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),thread?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "chat_read_state" */ +export interface chat_read_state_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "chat_read_state" */ +export interface chat_read_state_insert_input {last_read_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),thread?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface chat_read_state_max_fieldsGenqlSelection{ + last_read_at?: boolean | number + steam_id?: boolean | number + thread?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface TelemetryFleetTotalsGenqlSelection{ - appearancesReported?: boolean | number - competitionReported?: boolean | number - dedicatedServers?: boolean | number - eventTeams?: boolean | number - events?: boolean | number - gameServerNodes?: boolean | number - gameServerNodesEnabled?: boolean | number - gameServerNodesOnline?: boolean | number - gpuNodes?: boolean | number - leagueRegistrations?: boolean | number - leagueSeasons?: boolean | number - leagueSeasonsFinished?: boolean | number - leagueTeams?: boolean | number - mapsPlayed?: boolean | number - matches?: boolean | number - matchesAbandoned?: boolean | number - matchesCreated?: boolean | number - matchesFinished?: boolean | number - matchesImported?: boolean | number - matchesImportedMonth?: boolean | number - matchesImportedYear?: boolean | number - matchesLeague?: boolean | number - matchesLive?: boolean | number - matchesMonth?: boolean | number - matchesScrim?: boolean | number - matchesTournament?: boolean | number - matchesWeek?: boolean | number - matchesYear?: boolean | number - outcomesReported?: boolean | number - panels?: boolean | number - playerAppearances?: boolean | number - playersActive30d?: boolean | number - playersActive7d?: boolean | number - playersKnown?: boolean | number - playersPlayed?: boolean | number - playersRegistered?: boolean | number - publicServers?: boolean | number - regions?: boolean | number - scrimRequests?: boolean | number - servers?: boolean | number - serversEnabled?: boolean | number - teams?: boolean | number - tournamentTeams?: boolean | number - tournaments?: boolean | number - tournamentsFinished?: boolean | number + +/** aggregate min on columns */ +export interface chat_read_state_min_fieldsGenqlSelection{ + last_read_at?: boolean | number + steam_id?: boolean | number + thread?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface TelemetryGrowthPointGenqlSelection{ - installs?: boolean | number - month?: boolean | number + +/** response of any mutation on the table "chat_read_state" */ +export interface chat_read_state_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: chat_read_stateGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface TelemetryInstallCountsGenqlSelection{ - active24h?: boolean | number - active30d?: boolean | number - active7d?: boolean | number - new30d?: boolean | number - retained180d?: boolean | number - total?: boolean | number + +/** on_conflict condition type for table "chat_read_state" */ +export interface chat_read_state_on_conflict {constraint: chat_read_state_constraint,update_columns?: chat_read_state_update_column[],where?: (chat_read_state_bool_exp | null)} + + +/** Ordering options when selecting data from "chat_read_state". */ +export interface chat_read_state_order_by {last_read_at?: (order_by | null),steam_id?: (order_by | null),thread?: (order_by | null)} + + +/** primary key columns input for table: chat_read_state */ +export interface chat_read_state_pk_columns_input {steam_id: Scalars['bigint'],thread: Scalars['String']} + + +/** input type for updating data in table "chat_read_state" */ +export interface chat_read_state_set_input {last_read_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),thread?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface chat_read_state_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface TelemetryMatchSourceCountGenqlSelection{ - matches?: boolean | number - source?: boolean | number + +/** aggregate stddev_pop on columns */ +export interface chat_read_state_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface TelemetryMatchTypeCountGenqlSelection{ - matches?: boolean | number - type?: boolean | number + +/** aggregate stddev_samp on columns */ +export interface chat_read_state_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface TelemetryRuntimeCountGenqlSelection{ - installs?: boolean | number - runtime?: boolean | number + +/** Streaming cursor of the table "chat_read_state" */ +export interface chat_read_state_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: chat_read_state_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface chat_read_state_stream_cursor_value_input {last_read_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),thread?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface chat_read_state_sum_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface TelemetryStatsGenqlSelection{ - activity?: TelemetryActivityPointGenqlSelection - countries?: TelemetryCountryCountGenqlSelection - features?: TelemetryFeatureAdoptionGenqlSelection - growth?: TelemetryGrowthPointGenqlSelection - installs?: TelemetryInstallCountsGenqlSelection - matchSources?: TelemetryMatchSourceCountGenqlSelection - matchTypes?: TelemetryMatchTypeCountGenqlSelection - online?: boolean | number - runtimes?: TelemetryRuntimeCountGenqlSelection - totals?: TelemetryFleetTotalsGenqlSelection - versions?: TelemetryVersionCountGenqlSelection +export interface chat_read_state_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (chat_read_state_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (chat_read_state_set_input | null), +/** filter the rows which have to be updated */ +where: chat_read_state_bool_exp} + + +/** aggregate var_pop on columns */ +export interface chat_read_state_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface TelemetryVersionCountGenqlSelection{ - installs?: boolean | number - rank?: boolean | number - since?: boolean | number - version?: boolean | number + +/** aggregate var_samp on columns */ +export interface chat_read_state_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface TestUploadResponseGenqlSelection{ - error?: boolean | number + +/** aggregate variance on columns */ +export interface chat_read_state_variance_fieldsGenqlSelection{ + steam_id?: 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 + +/** 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 TimescaleStatsGenqlSelection{ - chunks_count?: boolean | number - hypertables?: HypertableInfoGenqlSelection - jobs?: TimescaleJobGenqlSelection + +/** 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 TournamentAwardGenqlSelection{ - award_id?: boolean | number - custom_name?: boolean | number - id?: boolean | number - image_url?: boolean | number - placement?: boolean | number - silhouette?: boolean | number - tournament_id?: 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 } -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 + +/** 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)} + + +/** 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)} + + +/** 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)} + + +/** 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 WatchDemoOutputGenqlSelection{ + +/** 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 - session_id?: boolean | number - stream_url?: boolean | number - success?: 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 WebPushPlatformCountGenqlSelection{ - devices?: boolean | number - platform?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} -export interface WebPushStatusOutputGenqlSelection{ - active_7d?: boolean | number - configured?: boolean | number - last_delivered_at?: boolean | number - managed_by_environment?: boolean | number - never_delivered?: boolean | number - new_7d?: boolean | number - platforms?: WebPushPlatformCountGenqlSelection - players?: boolean | number - subscriptions?: 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)} -/** columns and relationships of "_map_pool" */ -export interface _map_poolGenqlSelection{ - map_id?: boolean | number - map_pool_id?: boolean | number +/** 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 } -/** aggregated selection of "_map_pool" */ -export interface _map_pool_aggregateGenqlSelection{ - aggregate?: _map_pool_aggregate_fieldsGenqlSelection - nodes?: _map_poolGenqlSelection - __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)} -/** 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 +/** 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 } -/** 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)} +/** 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 data into table "_map_pool" */ -export interface _map_pool_insert_input {map_id?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | 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)} -/** 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 -} +/** primary key columns input for table: clip_render_jobs */ +export interface clip_render_jobs_pk_columns_input {id: Scalars['uuid']} -/** aggregate min on columns */ -export interface _map_pool_min_fieldsGenqlSelection{ - map_id?: boolean | number - map_pool_id?: boolean | number +/** 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 } -/** 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 +/** 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 } -/** 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)} - - -/** 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)} +/** 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)} -/** 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 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 +} -/** 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)} +/** 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 "_map_pool" */ -export interface _map_pool_stream_cursor_input { +/** Streaming cursor of the table "clip_render_jobs" */ +export interface clip_render_jobs_stream_cursor_input { /** Stream column input with initial value */ -initial_value: _map_pool_stream_cursor_value_input, +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 _map_pool_stream_cursor_value_input {map_id?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null)} +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)} -export interface _map_pool_updates { + +/** 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 +} + + +/** 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?: (_map_pool_set_input | null), +_set?: (clip_render_jobs_set_input | null), /** filter the rows which have to be updated */ -where: _map_pool_bool_exp} +where: clip_render_jobs_bool_exp} -/** columns and relationships of "abandoned_matches" */ -export interface abandoned_matchesGenqlSelection{ - abandoned_at?: boolean | number - id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - steam_id?: 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 __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 "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 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 "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 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 clip_render_jobs_variance_fieldsGenqlSelection{ + progress?: boolean | number + sort_index?: boolean | number + user_steam_id?: 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 "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 "custom_pages" */ +export interface custom_pagesGenqlSelection{ + created_at?: boolean | number + deployments?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + enabled?: boolean | number + exposed_module?: boolean | number + icon?: boolean | number + id?: boolean | number + is_default?: boolean | number + manifest_url?: boolean | number + nav_group?: boolean | number + nav_order?: boolean | number + plugin_slug?: boolean | number + profile_tab_label?: boolean | number + remote_entry_url?: boolean | number + remote_scope?: boolean | number + required_role?: boolean | number + slug?: boolean | number + title?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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)} + +/** aggregated selection of "custom_pages" */ +export interface custom_pages_aggregateGenqlSelection{ + aggregate?: custom_pages_aggregate_fieldsGenqlSelection + nodes?: custom_pagesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "custom_pages" */ +export interface custom_pages_aggregate_fieldsGenqlSelection{ + avg?: custom_pages_avg_fieldsGenqlSelection + count?: { __args: {columns?: (custom_pages_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: custom_pages_max_fieldsGenqlSelection + min?: custom_pages_min_fieldsGenqlSelection + stddev?: custom_pages_stddev_fieldsGenqlSelection + stddev_pop?: custom_pages_stddev_pop_fieldsGenqlSelection + stddev_samp?: custom_pages_stddev_samp_fieldsGenqlSelection + sum?: custom_pages_sum_fieldsGenqlSelection + var_pop?: custom_pages_var_pop_fieldsGenqlSelection + var_samp?: custom_pages_var_samp_fieldsGenqlSelection + variance?: custom_pages_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface custom_pages_append_input {deployments?: (Scalars['jsonb'] | null)} /** aggregate avg on columns */ -export interface abandoned_matches_avg_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface custom_pages_avg_fieldsGenqlSelection{ + nav_order?: boolean | number __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)} +/** Boolean expression to filter rows from the table "custom_pages". All fields are combined with a logical 'AND'. */ +export interface custom_pages_bool_exp {_and?: (custom_pages_bool_exp[] | null),_not?: (custom_pages_bool_exp | null),_or?: (custom_pages_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),deployments?: (jsonb_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),exposed_module?: (String_comparison_exp | null),icon?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_default?: (Boolean_comparison_exp | null),manifest_url?: (String_comparison_exp | null),nav_group?: (String_comparison_exp | null),nav_order?: (Int_comparison_exp | null),plugin_slug?: (String_comparison_exp | null),profile_tab_label?: (String_comparison_exp | null),remote_entry_url?: (String_comparison_exp | null),remote_scope?: (String_comparison_exp | null),required_role?: (e_player_roles_enum_comparison_exp | null),slug?: (String_comparison_exp | null),title?: (String_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} -/** 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),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),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 custom_pages_delete_at_path_input {deployments?: (Scalars['String'][] | null)} -/** input type for incrementing numeric columns in table "abandoned_matches" */ -export interface abandoned_matches_inc_input {steam_id?: (Scalars['bigint'] | 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 custom_pages_delete_elem_input {deployments?: (Scalars['Int'] | 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),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface custom_pages_delete_key_input {deployments?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "custom_pages" */ +export interface custom_pages_inc_input {nav_order?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "custom_pages" */ +export interface custom_pages_insert_input {created_at?: (Scalars['timestamptz'] | null),deployments?: (Scalars['jsonb'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),manifest_url?: (Scalars['String'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),plugin_slug?: (Scalars['String'] | null),profile_tab_label?: (Scalars['String'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate max on columns */ -export interface abandoned_matches_max_fieldsGenqlSelection{ - abandoned_at?: boolean | number +export interface custom_pages_max_fieldsGenqlSelection{ + created_at?: boolean | number + exposed_module?: boolean | number + icon?: boolean | number id?: boolean | number - match_id?: boolean | number - steam_id?: boolean | number + manifest_url?: boolean | number + nav_group?: boolean | number + nav_order?: boolean | number + plugin_slug?: boolean | number + profile_tab_label?: boolean | number + remote_entry_url?: boolean | number + remote_scope?: boolean | number + slug?: boolean | number + title?: boolean | number + updated_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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),match_id?: (order_by | null),steam_id?: (order_by | null)} - - /** aggregate min on columns */ -export interface abandoned_matches_min_fieldsGenqlSelection{ - abandoned_at?: boolean | number +export interface custom_pages_min_fieldsGenqlSelection{ + created_at?: boolean | number + exposed_module?: boolean | number + icon?: boolean | number id?: boolean | number - match_id?: boolean | number - steam_id?: boolean | number + manifest_url?: boolean | number + nav_group?: boolean | number + nav_order?: boolean | number + plugin_slug?: boolean | number + profile_tab_label?: boolean | number + remote_entry_url?: boolean | number + remote_scope?: boolean | number + slug?: boolean | number + title?: boolean | number + updated_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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),match_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 "custom_pages" */ +export interface custom_pages_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: abandoned_matchesGenqlSelection + returning?: custom_pagesGenqlSelection __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 "custom_pages" */ +export interface custom_pages_on_conflict {constraint: custom_pages_constraint,update_columns?: custom_pages_update_column[],where?: (custom_pages_bool_exp | null)} -/** Ordering options when selecting data from "abandoned_matches". */ -export interface abandoned_matches_order_by {abandoned_at?: (order_by | null),id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),steam_id?: (order_by | null)} +/** Ordering options when selecting data from "custom_pages". */ +export interface custom_pages_order_by {created_at?: (order_by | null),deployments?: (order_by | null),enabled?: (order_by | null),exposed_module?: (order_by | null),icon?: (order_by | null),id?: (order_by | null),is_default?: (order_by | null),manifest_url?: (order_by | null),nav_group?: (order_by | null),nav_order?: (order_by | null),plugin_slug?: (order_by | null),profile_tab_label?: (order_by | null),remote_entry_url?: (order_by | null),remote_scope?: (order_by | null),required_role?: (order_by | null),slug?: (order_by | null),title?: (order_by | null),updated_at?: (order_by | null)} -/** primary key columns input for table: abandoned_matches */ -export interface abandoned_matches_pk_columns_input {id: Scalars['uuid']} +/** primary key columns input for table: custom_pages */ +export interface custom_pages_pk_columns_input {id: Scalars['uuid']} -/** input type for updating data in table "abandoned_matches" */ -export interface abandoned_matches_set_input {abandoned_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface custom_pages_prepend_input {deployments?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "custom_pages" */ +export interface custom_pages_set_input {created_at?: (Scalars['timestamptz'] | null),deployments?: (Scalars['jsonb'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),manifest_url?: (Scalars['String'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),plugin_slug?: (Scalars['String'] | null),profile_tab_label?: (Scalars['String'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate stddev on columns */ -export interface abandoned_matches_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface custom_pages_stddev_fieldsGenqlSelection{ + nav_order?: 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 abandoned_matches_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface custom_pages_stddev_pop_fieldsGenqlSelection{ + nav_order?: 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 abandoned_matches_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface custom_pages_stddev_samp_fieldsGenqlSelection{ + nav_order?: 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 { +/** Streaming cursor of the table "custom_pages" */ +export interface custom_pages_stream_cursor_input { /** Stream column input with initial value */ -initial_value: abandoned_matches_stream_cursor_value_input, +initial_value: custom_pages_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface abandoned_matches_stream_cursor_value_input {abandoned_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} +export interface custom_pages_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),deployments?: (Scalars['jsonb'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),manifest_url?: (Scalars['String'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),plugin_slug?: (Scalars['String'] | null),profile_tab_label?: (Scalars['String'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate sum on columns */ -export interface abandoned_matches_sum_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface custom_pages_sum_fieldsGenqlSelection{ + nav_order?: 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 { +export interface custom_pages_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (custom_pages_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (custom_pages_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?: (custom_pages_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (custom_pages_delete_key_input | null), /** increments the numeric columns with given value of the filtered values */ -_inc?: (abandoned_matches_inc_input | null), +_inc?: (custom_pages_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (custom_pages_prepend_input | null), /** sets the columns of the filtered rows to the given values */ -_set?: (abandoned_matches_set_input | null), +_set?: (custom_pages_set_input | null), /** filter the rows which have to be updated */ -where: abandoned_matches_bool_exp} +where: custom_pages_bool_exp} /** aggregate var_pop on columns */ -export interface abandoned_matches_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface custom_pages_var_pop_fieldsGenqlSelection{ + nav_order?: 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 abandoned_matches_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface custom_pages_var_samp_fieldsGenqlSelection{ + nav_order?: 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 abandoned_matches_variance_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface custom_pages_variance_fieldsGenqlSelection{ + nav_order?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by variance() on columns of table "abandoned_matches" */ -export interface abandoned_matches_variance_order_by {steam_id?: (order_by | null)} - - -/** columns and relationships of "api_keys" */ -export interface api_keysGenqlSelection{ +/** columns and relationships of "db_backups" */ +export interface db_backupsGenqlSelection{ created_at?: boolean | number id?: boolean | number - label?: boolean | number - last_used_at?: boolean | number - steam_id?: boolean | number + name?: boolean | number + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "api_keys" */ -export interface api_keys_aggregateGenqlSelection{ - aggregate?: api_keys_aggregate_fieldsGenqlSelection - nodes?: api_keysGenqlSelection +/** aggregated selection of "db_backups" */ +export interface db_backups_aggregateGenqlSelection{ + aggregate?: db_backups_aggregate_fieldsGenqlSelection + nodes?: db_backupsGenqlSelection __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 +/** 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 } /** aggregate avg on columns */ -export interface api_keys_avg_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface db_backups_avg_fieldsGenqlSelection{ + size?: boolean | number __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 "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 "api_keys" */ -export interface api_keys_inc_input {steam_id?: (Scalars['bigint'] | 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 "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 "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 api_keys_max_fieldsGenqlSelection{ +export interface db_backups_max_fieldsGenqlSelection{ created_at?: boolean | number id?: boolean | number - label?: boolean | number - last_used_at?: boolean | number - steam_id?: boolean | number + name?: boolean | number + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate min on columns */ -export interface api_keys_min_fieldsGenqlSelection{ +export interface db_backups_min_fieldsGenqlSelection{ created_at?: boolean | number id?: boolean | number - label?: boolean | number - last_used_at?: boolean | number - steam_id?: boolean | number + name?: boolean | number + size?: 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 "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?: api_keysGenqlSelection + returning?: db_backupsGenqlSelection __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)} +/** 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 "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)} +/** 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: api_keys */ -export interface api_keys_pk_columns_input {id: Scalars['uuid']} +/** 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 "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)} +/** 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 api_keys_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface db_backups_stddev_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate stddev_pop on columns */ -export interface api_keys_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface db_backups_stddev_pop_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate stddev_samp on columns */ -export interface api_keys_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface db_backups_stddev_samp_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Streaming cursor of the table "api_keys" */ -export interface api_keys_stream_cursor_input { +/** Streaming cursor of the table "db_backups" */ +export interface db_backups_stream_cursor_input { /** Stream column input with initial value */ -initial_value: api_keys_stream_cursor_value_input, +initial_value: db_backups_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)} +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 api_keys_sum_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface db_backups_sum_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface api_keys_updates { +export interface db_backups_updates { /** increments the numeric columns with given value of the filtered values */ -_inc?: (api_keys_inc_input | null), +_inc?: (db_backups_inc_input | null), /** sets the columns of the filtered rows to the given values */ -_set?: (api_keys_set_input | null), +_set?: (db_backups_set_input | null), /** filter the rows which have to be updated */ -where: api_keys_bool_exp} +where: db_backups_bool_exp} /** aggregate var_pop on columns */ -export interface api_keys_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface db_backups_var_pop_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate var_samp on columns */ -export interface api_keys_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface db_backups_var_samp_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate variance on columns */ -export interface api_keys_variance_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface db_backups_variance_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface approve_league_season_movements_args {_league_season_id?: (Scalars['uuid'] | null)} - -/** columns and relationships of "award_recipients" */ -export interface award_recipientsGenqlSelection{ - /** An object relationship */ - award?: awardsGenqlSelection - award_id?: boolean | number - /** An object relationship */ - awarded_by?: playersGenqlSelection - awarded_by_steam_id?: boolean | number - created_at?: boolean | number - /** An object relationship */ - event?: eventsGenqlSelection - event_id?: boolean | number - id?: boolean | number - /** An object relationship */ - league_season?: league_seasonsGenqlSelection - league_season_id?: boolean | number - note?: boolean | number - placement?: boolean | number - placement_tier?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - /** An object relationship */ - season?: seasonsGenqlSelection - season_id?: boolean | number - source?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - /** An object relationship */ - tournament_award?: tournament_awardsGenqlSelection - tournament_id?: boolean | number - /** An object relationship */ - tournament_team?: tournament_teamsGenqlSelection - tournament_team_id?: boolean | number +/** columns and relationships of "direct_conversations" */ +export interface direct_conversationsGenqlSelection{ + is_open?: boolean | number + last_message_at?: boolean | number + position?: boolean | number + room_id?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "award_recipients" */ -export interface award_recipients_aggregateGenqlSelection{ - aggregate?: award_recipients_aggregate_fieldsGenqlSelection - nodes?: award_recipientsGenqlSelection +/** aggregated selection of "direct_conversations" */ +export interface direct_conversations_aggregateGenqlSelection{ + aggregate?: direct_conversations_aggregate_fieldsGenqlSelection + nodes?: direct_conversationsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface award_recipients_aggregate_bool_exp {count?: (award_recipients_aggregate_bool_exp_count | null)} - -export interface award_recipients_aggregate_bool_exp_count {arguments?: (award_recipients_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (award_recipients_bool_exp | null),predicate: Int_comparison_exp} - -/** aggregate fields of "award_recipients" */ -export interface award_recipients_aggregate_fieldsGenqlSelection{ - avg?: award_recipients_avg_fieldsGenqlSelection - count?: { __args: {columns?: (award_recipients_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: award_recipients_max_fieldsGenqlSelection - min?: award_recipients_min_fieldsGenqlSelection - stddev?: award_recipients_stddev_fieldsGenqlSelection - stddev_pop?: award_recipients_stddev_pop_fieldsGenqlSelection - stddev_samp?: award_recipients_stddev_samp_fieldsGenqlSelection - sum?: award_recipients_sum_fieldsGenqlSelection - var_pop?: award_recipients_var_pop_fieldsGenqlSelection - var_samp?: award_recipients_var_samp_fieldsGenqlSelection - variance?: award_recipients_variance_fieldsGenqlSelection +/** aggregate fields of "direct_conversations" */ +export interface direct_conversations_aggregate_fieldsGenqlSelection{ + avg?: direct_conversations_avg_fieldsGenqlSelection + count?: { __args: {columns?: (direct_conversations_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: direct_conversations_max_fieldsGenqlSelection + min?: direct_conversations_min_fieldsGenqlSelection + stddev?: direct_conversations_stddev_fieldsGenqlSelection + stddev_pop?: direct_conversations_stddev_pop_fieldsGenqlSelection + stddev_samp?: direct_conversations_stddev_samp_fieldsGenqlSelection + sum?: direct_conversations_sum_fieldsGenqlSelection + var_pop?: direct_conversations_var_pop_fieldsGenqlSelection + var_samp?: direct_conversations_var_samp_fieldsGenqlSelection + variance?: direct_conversations_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by aggregate values of table "award_recipients" */ -export interface award_recipients_aggregate_order_by {avg?: (award_recipients_avg_order_by | null),count?: (order_by | null),max?: (award_recipients_max_order_by | null),min?: (award_recipients_min_order_by | null),stddev?: (award_recipients_stddev_order_by | null),stddev_pop?: (award_recipients_stddev_pop_order_by | null),stddev_samp?: (award_recipients_stddev_samp_order_by | null),sum?: (award_recipients_sum_order_by | null),var_pop?: (award_recipients_var_pop_order_by | null),var_samp?: (award_recipients_var_samp_order_by | null),variance?: (award_recipients_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "award_recipients" */ -export interface award_recipients_arr_rel_insert_input {data: award_recipients_insert_input[], -/** upsert condition */ -on_conflict?: (award_recipients_on_conflict | null)} - - /** aggregate avg on columns */ -export interface award_recipients_avg_fieldsGenqlSelection{ - awarded_by_steam_id?: boolean | number - placement?: boolean | number - player_steam_id?: boolean | number +export interface direct_conversations_avg_fieldsGenqlSelection{ + position?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by avg() on columns of table "award_recipients" */ -export interface award_recipients_avg_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "award_recipients". All fields are combined with a logical 'AND'. */ -export interface award_recipients_bool_exp {_and?: (award_recipients_bool_exp[] | null),_not?: (award_recipients_bool_exp | null),_or?: (award_recipients_bool_exp[] | null),award?: (awards_bool_exp | null),award_id?: (uuid_comparison_exp | null),awarded_by?: (players_bool_exp | null),awarded_by_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),league_season?: (league_seasons_bool_exp | null),league_season_id?: (uuid_comparison_exp | null),note?: (String_comparison_exp | null),placement?: (Int_comparison_exp | null),placement_tier?: (String_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),season?: (seasons_bool_exp | null),season_id?: (uuid_comparison_exp | null),source?: (e_award_sources_enum_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_award?: (tournament_awards_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),tournament_team?: (tournament_teams_bool_exp | null),tournament_team_id?: (uuid_comparison_exp | null)} +/** Boolean expression to filter rows from the table "direct_conversations". All fields are combined with a logical 'AND'. */ +export interface direct_conversations_bool_exp {_and?: (direct_conversations_bool_exp[] | null),_not?: (direct_conversations_bool_exp | null),_or?: (direct_conversations_bool_exp[] | null),is_open?: (Boolean_comparison_exp | null),last_message_at?: (timestamptz_comparison_exp | null),position?: (Int_comparison_exp | null),room_id?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} -/** input type for incrementing numeric columns in table "award_recipients" */ -export interface award_recipients_inc_input {awarded_by_steam_id?: (Scalars['bigint'] | null),placement?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null)} +/** input type for incrementing numeric columns in table "direct_conversations" */ +export interface direct_conversations_inc_input {position?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} -/** input type for inserting data into table "award_recipients" */ -export interface award_recipients_insert_input {award?: (awards_obj_rel_insert_input | null),award_id?: (Scalars['uuid'] | null),awarded_by?: (players_obj_rel_insert_input | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),league_season?: (league_seasons_obj_rel_insert_input | null),league_season_id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),season?: (seasons_obj_rel_insert_input | null),season_id?: (Scalars['uuid'] | null),source?: (e_award_sources_enum | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_award?: (tournament_awards_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),tournament_team?: (tournament_teams_obj_rel_insert_input | null),tournament_team_id?: (Scalars['uuid'] | null)} +/** input type for inserting data into table "direct_conversations" */ +export interface direct_conversations_insert_input {is_open?: (Scalars['Boolean'] | null),last_message_at?: (Scalars['timestamptz'] | null),position?: (Scalars['Int'] | null),room_id?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} /** aggregate max on columns */ -export interface award_recipients_max_fieldsGenqlSelection{ - award_id?: boolean | number - awarded_by_steam_id?: boolean | number - created_at?: boolean | number - event_id?: boolean | number - id?: boolean | number - league_season_id?: boolean | number - note?: boolean | number - placement?: boolean | number - placement_tier?: boolean | number - player_steam_id?: boolean | number - season_id?: boolean | number - team_id?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: boolean | number +export interface direct_conversations_max_fieldsGenqlSelection{ + last_message_at?: boolean | number + position?: boolean | number + room_id?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by max() on columns of table "award_recipients" */ -export interface award_recipients_max_order_by {award_id?: (order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),event_id?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player_steam_id?: (order_by | null),season_id?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} - - /** aggregate min on columns */ -export interface award_recipients_min_fieldsGenqlSelection{ - award_id?: boolean | number - awarded_by_steam_id?: boolean | number - created_at?: boolean | number - event_id?: boolean | number - id?: boolean | number - league_season_id?: boolean | number - note?: boolean | number - placement?: boolean | number - placement_tier?: boolean | number - player_steam_id?: boolean | number - season_id?: boolean | number - team_id?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: boolean | number +export interface direct_conversations_min_fieldsGenqlSelection{ + last_message_at?: boolean | number + position?: boolean | number + room_id?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by min() on columns of table "award_recipients" */ -export interface award_recipients_min_order_by {award_id?: (order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),event_id?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player_steam_id?: (order_by | null),season_id?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} - - -/** response of any mutation on the table "award_recipients" */ -export interface award_recipients_mutation_responseGenqlSelection{ +/** response of any mutation on the table "direct_conversations" */ +export interface direct_conversations_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: award_recipientsGenqlSelection + returning?: direct_conversationsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "award_recipients" */ -export interface award_recipients_on_conflict {constraint: award_recipients_constraint,update_columns?: award_recipients_update_column[],where?: (award_recipients_bool_exp | null)} +/** on_conflict condition type for table "direct_conversations" */ +export interface direct_conversations_on_conflict {constraint: direct_conversations_constraint,update_columns?: direct_conversations_update_column[],where?: (direct_conversations_bool_exp | null)} -/** Ordering options when selecting data from "award_recipients". */ -export interface award_recipients_order_by {award?: (awards_order_by | null),award_id?: (order_by | null),awarded_by?: (players_order_by | null),awarded_by_steam_id?: (order_by | null),created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),id?: (order_by | null),league_season?: (league_seasons_order_by | null),league_season_id?: (order_by | null),note?: (order_by | null),placement?: (order_by | null),placement_tier?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),season?: (seasons_order_by | null),season_id?: (order_by | null),source?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_award?: (tournament_awards_order_by | null),tournament_id?: (order_by | null),tournament_team?: (tournament_teams_order_by | null),tournament_team_id?: (order_by | null)} +/** Ordering options when selecting data from "direct_conversations". */ +export interface direct_conversations_order_by {is_open?: (order_by | null),last_message_at?: (order_by | null),position?: (order_by | null),room_id?: (order_by | null),steam_id?: (order_by | null)} -/** primary key columns input for table: award_recipients */ -export interface award_recipients_pk_columns_input {id: Scalars['uuid']} +/** primary key columns input for table: direct_conversations */ +export interface direct_conversations_pk_columns_input {room_id: Scalars['String'],steam_id: Scalars['bigint']} -/** input type for updating data in table "award_recipients" */ -export interface award_recipients_set_input {award_id?: (Scalars['uuid'] | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null),season_id?: (Scalars['uuid'] | null),source?: (e_award_sources_enum | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} +/** input type for updating data in table "direct_conversations" */ +export interface direct_conversations_set_input {is_open?: (Scalars['Boolean'] | null),last_message_at?: (Scalars['timestamptz'] | null),position?: (Scalars['Int'] | null),room_id?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} /** aggregate stddev on columns */ -export interface award_recipients_stddev_fieldsGenqlSelection{ - awarded_by_steam_id?: boolean | number - placement?: boolean | number - player_steam_id?: boolean | number +export interface direct_conversations_stddev_fieldsGenqlSelection{ + position?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev() on columns of table "award_recipients" */ -export interface award_recipients_stddev_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} - - /** aggregate stddev_pop on columns */ -export interface award_recipients_stddev_pop_fieldsGenqlSelection{ - awarded_by_steam_id?: boolean | number - placement?: boolean | number - player_steam_id?: boolean | number +export interface direct_conversations_stddev_pop_fieldsGenqlSelection{ + position?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_pop() on columns of table "award_recipients" */ -export interface award_recipients_stddev_pop_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} - - /** aggregate stddev_samp on columns */ -export interface award_recipients_stddev_samp_fieldsGenqlSelection{ - awarded_by_steam_id?: boolean | number - placement?: boolean | number - player_steam_id?: boolean | number +export interface direct_conversations_stddev_samp_fieldsGenqlSelection{ + position?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_samp() on columns of table "award_recipients" */ -export interface award_recipients_stddev_samp_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "award_recipients" */ -export interface award_recipients_stream_cursor_input { +/** Streaming cursor of the table "direct_conversations" */ +export interface direct_conversations_stream_cursor_input { /** Stream column input with initial value */ -initial_value: award_recipients_stream_cursor_value_input, +initial_value: direct_conversations_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface award_recipients_stream_cursor_value_input {award_id?: (Scalars['uuid'] | null),awarded_by_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),placement_tier?: (Scalars['String'] | null),player_steam_id?: (Scalars['bigint'] | null),season_id?: (Scalars['uuid'] | null),source?: (e_award_sources_enum | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} +export interface direct_conversations_stream_cursor_value_input {is_open?: (Scalars['Boolean'] | null),last_message_at?: (Scalars['timestamptz'] | null),position?: (Scalars['Int'] | null),room_id?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} /** aggregate sum on columns */ -export interface award_recipients_sum_fieldsGenqlSelection{ - awarded_by_steam_id?: boolean | number - placement?: boolean | number - player_steam_id?: boolean | number +export interface direct_conversations_sum_fieldsGenqlSelection{ + position?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } - -/** order by sum() on columns of table "award_recipients" */ -export interface award_recipients_sum_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} - -export interface award_recipients_updates { +export interface direct_conversations_updates { /** increments the numeric columns with given value of the filtered values */ -_inc?: (award_recipients_inc_input | null), +_inc?: (direct_conversations_inc_input | null), /** sets the columns of the filtered rows to the given values */ -_set?: (award_recipients_set_input | null), +_set?: (direct_conversations_set_input | null), /** filter the rows which have to be updated */ -where: award_recipients_bool_exp} +where: direct_conversations_bool_exp} /** aggregate var_pop on columns */ -export interface award_recipients_var_pop_fieldsGenqlSelection{ - awarded_by_steam_id?: boolean | number - placement?: boolean | number - player_steam_id?: boolean | number +export interface direct_conversations_var_pop_fieldsGenqlSelection{ + position?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by var_pop() on columns of table "award_recipients" */ -export interface award_recipients_var_pop_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} - - /** aggregate var_samp on columns */ -export interface award_recipients_var_samp_fieldsGenqlSelection{ - awarded_by_steam_id?: boolean | number - placement?: boolean | number - player_steam_id?: boolean | number +export interface direct_conversations_var_samp_fieldsGenqlSelection{ + position?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by var_samp() on columns of table "award_recipients" */ -export interface award_recipients_var_samp_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} - - /** aggregate variance on columns */ -export interface award_recipients_variance_fieldsGenqlSelection{ - awarded_by_steam_id?: boolean | number - placement?: boolean | number - player_steam_id?: boolean | number +export interface direct_conversations_variance_fieldsGenqlSelection{ + position?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by variance() on columns of table "award_recipients" */ -export interface award_recipients_variance_order_by {awarded_by_steam_id?: (order_by | null),placement?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** columns and relationships of "awards" */ -export interface awardsGenqlSelection{ - allow_multiple?: boolean | number +/** columns and relationships of "direct_messages" */ +export interface direct_messagesGenqlSelection{ created_at?: boolean | number - /** An object relationship */ - created_by?: playersGenqlSelection - created_by_steam_id?: boolean | number - description?: boolean | number - /** An object relationship */ - event?: eventsGenqlSelection - event_id?: boolean | number + from_steam_id?: boolean | number id?: boolean | number - image_url?: boolean | number - /** An object relationship */ - league_season?: league_seasonsGenqlSelection - league_season_id?: boolean | number - name?: boolean | number - /** An array relationship */ - recipients?: (award_recipientsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), - /** filter the rows returned */ - where?: (award_recipients_bool_exp | null)} }) - /** An aggregate relationship */ - recipients_aggregate?: (award_recipients_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), - /** filter the rows returned */ - where?: (award_recipients_bool_exp | null)} }) - /** An object relationship */ - season?: seasonsGenqlSelection - season_id?: boolean | number - silhouette?: boolean | number - system_key?: boolean | number - tier?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - /** An array relationship */ - tournament_configs?: (tournament_awardsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_awards_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_awards_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_awards_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_configs_aggregate?: (tournament_awards_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_awards_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_awards_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_awards_bool_exp | null)} }) - tournament_id?: boolean | number - updated_at?: boolean | number + message?: boolean | number + room_id?: boolean | number + seq?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "awards" */ -export interface awards_aggregateGenqlSelection{ - aggregate?: awards_aggregate_fieldsGenqlSelection - nodes?: awardsGenqlSelection +/** aggregated selection of "direct_messages" */ +export interface direct_messages_aggregateGenqlSelection{ + aggregate?: direct_messages_aggregate_fieldsGenqlSelection + nodes?: direct_messagesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "awards" */ -export interface awards_aggregate_fieldsGenqlSelection{ - avg?: awards_avg_fieldsGenqlSelection - count?: { __args: {columns?: (awards_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: awards_max_fieldsGenqlSelection - min?: awards_min_fieldsGenqlSelection - stddev?: awards_stddev_fieldsGenqlSelection - stddev_pop?: awards_stddev_pop_fieldsGenqlSelection - stddev_samp?: awards_stddev_samp_fieldsGenqlSelection - sum?: awards_sum_fieldsGenqlSelection - var_pop?: awards_var_pop_fieldsGenqlSelection - var_samp?: awards_var_samp_fieldsGenqlSelection - variance?: awards_variance_fieldsGenqlSelection +/** aggregate fields of "direct_messages" */ +export interface direct_messages_aggregate_fieldsGenqlSelection{ + avg?: direct_messages_avg_fieldsGenqlSelection + count?: { __args: {columns?: (direct_messages_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: direct_messages_max_fieldsGenqlSelection + min?: direct_messages_min_fieldsGenqlSelection + stddev?: direct_messages_stddev_fieldsGenqlSelection + stddev_pop?: direct_messages_stddev_pop_fieldsGenqlSelection + stddev_samp?: direct_messages_stddev_samp_fieldsGenqlSelection + sum?: direct_messages_sum_fieldsGenqlSelection + var_pop?: direct_messages_var_pop_fieldsGenqlSelection + var_samp?: direct_messages_var_samp_fieldsGenqlSelection + variance?: direct_messages_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } /** aggregate avg on columns */ -export interface awards_avg_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - silhouette?: boolean | number +export interface direct_messages_avg_fieldsGenqlSelection{ + from_steam_id?: boolean | number + seq?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "awards". All fields are combined with a logical 'AND'. */ -export interface awards_bool_exp {_and?: (awards_bool_exp[] | null),_not?: (awards_bool_exp | null),_or?: (awards_bool_exp[] | null),allow_multiple?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),created_by?: (players_bool_exp | null),created_by_steam_id?: (bigint_comparison_exp | null),description?: (String_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),image_url?: (String_comparison_exp | null),league_season?: (league_seasons_bool_exp | null),league_season_id?: (uuid_comparison_exp | null),name?: (String_comparison_exp | null),recipients?: (award_recipients_bool_exp | null),recipients_aggregate?: (award_recipients_aggregate_bool_exp | null),season?: (seasons_bool_exp | null),season_id?: (uuid_comparison_exp | null),silhouette?: (Int_comparison_exp | null),system_key?: (String_comparison_exp | null),tier?: (e_award_tiers_enum_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_configs?: (tournament_awards_bool_exp | null),tournament_configs_aggregate?: (tournament_awards_aggregate_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} +/** Boolean expression to filter rows from the table "direct_messages". All fields are combined with a logical 'AND'. */ +export interface direct_messages_bool_exp {_and?: (direct_messages_bool_exp[] | null),_not?: (direct_messages_bool_exp | null),_or?: (direct_messages_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),from_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),message?: (String_comparison_exp | null),room_id?: (String_comparison_exp | null),seq?: (bigint_comparison_exp | null)} -/** input type for incrementing numeric columns in table "awards" */ -export interface awards_inc_input {created_by_steam_id?: (Scalars['bigint'] | null),silhouette?: (Scalars['Int'] | null)} +/** input type for incrementing numeric columns in table "direct_messages" */ +export interface direct_messages_inc_input {from_steam_id?: (Scalars['bigint'] | null),seq?: (Scalars['bigint'] | null)} -/** input type for inserting data into table "awards" */ -export interface awards_insert_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by?: (players_obj_rel_insert_input | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),league_season?: (league_seasons_obj_rel_insert_input | null),league_season_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),recipients?: (award_recipients_arr_rel_insert_input | null),season?: (seasons_obj_rel_insert_input | null),season_id?: (Scalars['uuid'] | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_configs?: (tournament_awards_arr_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} +/** input type for inserting data into table "direct_messages" */ +export interface direct_messages_insert_input {created_at?: (Scalars['timestamptz'] | null),from_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),message?: (Scalars['String'] | null),room_id?: (Scalars['String'] | null),seq?: (Scalars['bigint'] | null)} -/** aggregate max on columns */ -export interface awards_max_fieldsGenqlSelection{ - created_at?: boolean | number - created_by_steam_id?: boolean | number - description?: boolean | number - event_id?: boolean | number - id?: boolean | number - image_url?: boolean | number - league_season_id?: boolean | number - name?: boolean | number - season_id?: boolean | number - silhouette?: boolean | number - system_key?: boolean | number - tournament_id?: boolean | number - updated_at?: boolean | number +/** aggregate max on columns */ +export interface direct_messages_max_fieldsGenqlSelection{ + created_at?: boolean | number + from_steam_id?: boolean | number + id?: boolean | number + message?: boolean | number + room_id?: boolean | number + seq?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate min on columns */ -export interface awards_min_fieldsGenqlSelection{ +export interface direct_messages_min_fieldsGenqlSelection{ created_at?: boolean | number - created_by_steam_id?: boolean | number - description?: boolean | number - event_id?: boolean | number + from_steam_id?: boolean | number id?: boolean | number - image_url?: boolean | number - league_season_id?: boolean | number - name?: boolean | number - season_id?: boolean | number - silhouette?: boolean | number - system_key?: boolean | number - tournament_id?: boolean | number - updated_at?: boolean | number + message?: boolean | number + room_id?: boolean | number + seq?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "awards" */ -export interface awards_mutation_responseGenqlSelection{ +/** response of any mutation on the table "direct_messages" */ +export interface direct_messages_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: awardsGenqlSelection + returning?: direct_messagesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "awards" */ -export interface awards_obj_rel_insert_input {data: awards_insert_input, -/** upsert condition */ -on_conflict?: (awards_on_conflict | null)} - - -/** on_conflict condition type for table "awards" */ -export interface awards_on_conflict {constraint: awards_constraint,update_columns?: awards_update_column[],where?: (awards_bool_exp | null)} +/** on_conflict condition type for table "direct_messages" */ +export interface direct_messages_on_conflict {constraint: direct_messages_constraint,update_columns?: direct_messages_update_column[],where?: (direct_messages_bool_exp | null)} -/** Ordering options when selecting data from "awards". */ -export interface awards_order_by {allow_multiple?: (order_by | null),created_at?: (order_by | null),created_by?: (players_order_by | null),created_by_steam_id?: (order_by | null),description?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),league_season?: (league_seasons_order_by | null),league_season_id?: (order_by | null),name?: (order_by | null),recipients_aggregate?: (award_recipients_aggregate_order_by | null),season?: (seasons_order_by | null),season_id?: (order_by | null),silhouette?: (order_by | null),system_key?: (order_by | null),tier?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_configs_aggregate?: (tournament_awards_aggregate_order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} +/** Ordering options when selecting data from "direct_messages". */ +export interface direct_messages_order_by {created_at?: (order_by | null),from_steam_id?: (order_by | null),id?: (order_by | null),message?: (order_by | null),room_id?: (order_by | null),seq?: (order_by | null)} -/** primary key columns input for table: awards */ -export interface awards_pk_columns_input {id: Scalars['uuid']} +/** primary key columns input for table: direct_messages */ +export interface direct_messages_pk_columns_input {id: Scalars['uuid']} -/** input type for updating data in table "awards" */ -export interface awards_set_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),league_season_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),season_id?: (Scalars['uuid'] | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} +/** input type for updating data in table "direct_messages" */ +export interface direct_messages_set_input {created_at?: (Scalars['timestamptz'] | null),from_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),message?: (Scalars['String'] | null),room_id?: (Scalars['String'] | null),seq?: (Scalars['bigint'] | null)} /** aggregate stddev on columns */ -export interface awards_stddev_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - silhouette?: boolean | number +export interface direct_messages_stddev_fieldsGenqlSelection{ + from_steam_id?: boolean | number + seq?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate stddev_pop on columns */ -export interface awards_stddev_pop_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - silhouette?: boolean | number +export interface direct_messages_stddev_pop_fieldsGenqlSelection{ + from_steam_id?: boolean | number + seq?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate stddev_samp on columns */ -export interface awards_stddev_samp_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - silhouette?: boolean | number +export interface direct_messages_stddev_samp_fieldsGenqlSelection{ + from_steam_id?: boolean | number + seq?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Streaming cursor of the table "awards" */ -export interface awards_stream_cursor_input { +/** Streaming cursor of the table "direct_messages" */ +export interface direct_messages_stream_cursor_input { /** Stream column input with initial value */ -initial_value: awards_stream_cursor_value_input, +initial_value: direct_messages_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface awards_stream_cursor_value_input {allow_multiple?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_steam_id?: (Scalars['bigint'] | null),description?: (Scalars['String'] | null),event_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),league_season_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),season_id?: (Scalars['uuid'] | null),silhouette?: (Scalars['Int'] | null),system_key?: (Scalars['String'] | null),tier?: (e_award_tiers_enum | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface direct_messages_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),from_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),message?: (Scalars['String'] | null),room_id?: (Scalars['String'] | null),seq?: (Scalars['bigint'] | null)} /** aggregate sum on columns */ -export interface awards_sum_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - silhouette?: boolean | number +export interface direct_messages_sum_fieldsGenqlSelection{ + from_steam_id?: boolean | number + seq?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface awards_updates { +export interface direct_messages_updates { /** increments the numeric columns with given value of the filtered values */ -_inc?: (awards_inc_input | null), +_inc?: (direct_messages_inc_input | null), /** sets the columns of the filtered rows to the given values */ -_set?: (awards_set_input | null), +_set?: (direct_messages_set_input | null), /** filter the rows which have to be updated */ -where: awards_bool_exp} +where: direct_messages_bool_exp} /** aggregate var_pop on columns */ -export interface awards_var_pop_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - silhouette?: boolean | number +export interface direct_messages_var_pop_fieldsGenqlSelection{ + from_steam_id?: boolean | number + seq?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate var_samp on columns */ -export interface awards_var_samp_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - silhouette?: boolean | number +export interface direct_messages_var_samp_fieldsGenqlSelection{ + from_steam_id?: boolean | number + seq?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate variance on columns */ -export interface awards_variance_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - silhouette?: boolean | number +export interface direct_messages_variance_fieldsGenqlSelection{ + from_steam_id?: boolean | number + seq?: boolean | number __typename?: boolean | number __scalar?: 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 "chat_read_state" */ -export interface chat_read_stateGenqlSelection{ - last_read_at?: boolean | number - steam_id?: boolean | number - thread?: 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 __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "chat_read_state" */ -export interface chat_read_state_aggregateGenqlSelection{ - aggregate?: chat_read_state_aggregate_fieldsGenqlSelection - nodes?: chat_read_stateGenqlSelection +/** aggregated selection of "draft_game_picks" */ +export interface draft_game_picks_aggregateGenqlSelection{ + aggregate?: draft_game_picks_aggregate_fieldsGenqlSelection + nodes?: draft_game_picksGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +export interface draft_game_picks_aggregate_bool_exp {bool_and?: (draft_game_picks_aggregate_bool_exp_bool_and | null),bool_or?: (draft_game_picks_aggregate_bool_exp_bool_or | null),count?: (draft_game_picks_aggregate_bool_exp_count | null)} -/** aggregate fields of "chat_read_state" */ -export interface chat_read_state_aggregate_fieldsGenqlSelection{ - avg?: chat_read_state_avg_fieldsGenqlSelection - count?: { __args: {columns?: (chat_read_state_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: chat_read_state_max_fieldsGenqlSelection - min?: chat_read_state_min_fieldsGenqlSelection - stddev?: chat_read_state_stddev_fieldsGenqlSelection - stddev_pop?: chat_read_state_stddev_pop_fieldsGenqlSelection - stddev_samp?: chat_read_state_stddev_samp_fieldsGenqlSelection - sum?: chat_read_state_sum_fieldsGenqlSelection - var_pop?: chat_read_state_var_pop_fieldsGenqlSelection - var_samp?: chat_read_state_var_samp_fieldsGenqlSelection - variance?: chat_read_state_variance_fieldsGenqlSelection +export interface draft_game_picks_aggregate_bool_exp_bool_and {arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_game_picks_aggregate_bool_exp_bool_or {arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_game_picks_aggregate_bool_exp_count {arguments?: (draft_game_picks_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "draft_game_picks" */ +export interface draft_game_picks_aggregate_fieldsGenqlSelection{ + avg?: draft_game_picks_avg_fieldsGenqlSelection + count?: { __args: {columns?: (draft_game_picks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: draft_game_picks_max_fieldsGenqlSelection + min?: draft_game_picks_min_fieldsGenqlSelection + stddev?: draft_game_picks_stddev_fieldsGenqlSelection + stddev_pop?: draft_game_picks_stddev_pop_fieldsGenqlSelection + stddev_samp?: draft_game_picks_stddev_samp_fieldsGenqlSelection + sum?: draft_game_picks_sum_fieldsGenqlSelection + var_pop?: draft_game_picks_var_pop_fieldsGenqlSelection + var_samp?: draft_game_picks_var_samp_fieldsGenqlSelection + variance?: draft_game_picks_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +/** order by aggregate values of table "draft_game_picks" */ +export interface draft_game_picks_aggregate_order_by {avg?: (draft_game_picks_avg_order_by | null),count?: (order_by | null),max?: (draft_game_picks_max_order_by | null),min?: (draft_game_picks_min_order_by | null),stddev?: (draft_game_picks_stddev_order_by | null),stddev_pop?: (draft_game_picks_stddev_pop_order_by | null),stddev_samp?: (draft_game_picks_stddev_samp_order_by | null),sum?: (draft_game_picks_sum_order_by | null),var_pop?: (draft_game_picks_var_pop_order_by | null),var_samp?: (draft_game_picks_var_samp_order_by | null),variance?: (draft_game_picks_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "draft_game_picks" */ +export interface draft_game_picks_arr_rel_insert_input {data: draft_game_picks_insert_input[], +/** upsert condition */ +on_conflict?: (draft_game_picks_on_conflict | null)} + + /** aggregate avg on columns */ -export interface chat_read_state_avg_fieldsGenqlSelection{ - steam_id?: boolean | number +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 } -/** Boolean expression to filter rows from the table "chat_read_state". All fields are combined with a logical 'AND'. */ -export interface chat_read_state_bool_exp {_and?: (chat_read_state_bool_exp[] | null),_not?: (chat_read_state_bool_exp | null),_or?: (chat_read_state_bool_exp[] | null),last_read_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),thread?: (String_comparison_exp | null)} +/** 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 incrementing numeric columns in table "chat_read_state" */ -export interface chat_read_state_inc_input {steam_id?: (Scalars['bigint'] | 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 inserting data into table "chat_read_state" */ -export interface chat_read_state_insert_input {last_read_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),thread?: (Scalars['String'] | 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 chat_read_state_max_fieldsGenqlSelection{ - last_read_at?: boolean | number - steam_id?: boolean | number - thread?: boolean | number +export interface draft_game_picks_max_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + created_at?: boolean | number + draft_game_id?: boolean | number + id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by max() on columns of table "draft_game_picks" */ +export interface draft_game_picks_max_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + /** aggregate min on columns */ -export interface chat_read_state_min_fieldsGenqlSelection{ - last_read_at?: boolean | number - steam_id?: boolean | number - thread?: boolean | number +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 } -/** response of any mutation on the table "chat_read_state" */ -export interface chat_read_state_mutation_responseGenqlSelection{ +/** 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?: chat_read_stateGenqlSelection + returning?: draft_game_picksGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "chat_read_state" */ -export interface chat_read_state_on_conflict {constraint: chat_read_state_constraint,update_columns?: chat_read_state_update_column[],where?: (chat_read_state_bool_exp | null)} +/** 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 "chat_read_state". */ -export interface chat_read_state_order_by {last_read_at?: (order_by | null),steam_id?: (order_by | null),thread?: (order_by | 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: chat_read_state */ -export interface chat_read_state_pk_columns_input {steam_id: Scalars['bigint'],thread: Scalars['String']} +/** 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 "chat_read_state" */ -export interface chat_read_state_set_input {last_read_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),thread?: (Scalars['String'] | 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)} /** aggregate stddev on columns */ -export interface chat_read_state_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface draft_game_picks_stddev_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by stddev() on columns of table "draft_game_picks" */ +export interface draft_game_picks_stddev_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + /** aggregate stddev_pop on columns */ -export interface chat_read_state_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface draft_game_picks_stddev_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by stddev_pop() on columns of table "draft_game_picks" */ +export interface draft_game_picks_stddev_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + /** aggregate stddev_samp on columns */ -export interface chat_read_state_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number +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 } -/** Streaming cursor of the table "chat_read_state" */ -export interface chat_read_state_stream_cursor_input { +/** 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: chat_read_state_stream_cursor_value_input, +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 chat_read_state_stream_cursor_value_input {last_read_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),thread?: (Scalars['String'] | null)} +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 chat_read_state_sum_fieldsGenqlSelection{ - steam_id?: boolean | number +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 chat_read_state_updates { + +/** 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?: (chat_read_state_inc_input | null), +_inc?: (draft_game_picks_inc_input | null), /** sets the columns of the filtered rows to the given values */ -_set?: (chat_read_state_set_input | null), +_set?: (draft_game_picks_set_input | null), /** filter the rows which have to be updated */ -where: chat_read_state_bool_exp} +where: draft_game_picks_bool_exp} /** aggregate var_pop on columns */ -export interface chat_read_state_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface draft_game_picks_var_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by var_pop() on columns of table "draft_game_picks" */ +export interface draft_game_picks_var_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + /** aggregate var_samp on columns */ -export interface chat_read_state_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface draft_game_picks_var_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by var_samp() on columns of table "draft_game_picks" */ +export interface draft_game_picks_var_samp_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + /** aggregate variance on columns */ -export interface chat_read_state_variance_fieldsGenqlSelection{ - steam_id?: boolean | number +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 } -/** 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 +/** 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 */ - 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 + draft_game?: draft_gamesGenqlSelection + draft_game_id?: boolean | number /** An object relationship */ - match_map?: match_mapsGenqlSelection + 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 */ - 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 + player?: playersGenqlSelection 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 + steam_id?: 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 +/** 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 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 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 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 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 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 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 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} +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 "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 +/** aggregate fields of "draft_game_players" */ +export interface draft_game_players_aggregate_fieldsGenqlSelection{ + avg?: draft_game_players_avg_fieldsGenqlSelection + count?: { __args: {columns?: (draft_game_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: draft_game_players_max_fieldsGenqlSelection + min?: draft_game_players_min_fieldsGenqlSelection + stddev?: draft_game_players_stddev_fieldsGenqlSelection + stddev_pop?: draft_game_players_stddev_pop_fieldsGenqlSelection + stddev_samp?: draft_game_players_stddev_samp_fieldsGenqlSelection + sum?: draft_game_players_sum_fieldsGenqlSelection + var_pop?: draft_game_players_var_pop_fieldsGenqlSelection + var_samp?: draft_game_players_var_samp_fieldsGenqlSelection + variance?: draft_game_players_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by aggregate values of table "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)} - - -/** 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)} +/** 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 "clip_render_jobs" */ -export interface clip_render_jobs_arr_rel_insert_input {data: clip_render_jobs_insert_input[], +/** 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?: (clip_render_jobs_on_conflict | null)} +on_conflict?: (draft_game_players_on_conflict | null)} /** aggregate avg on columns */ -export interface clip_render_jobs_avg_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number +export interface draft_game_players_avg_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by avg() on columns of table "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)} +/** 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)} -/** 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)} +/** 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 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 +/** input type for incrementing numeric columns in table "draft_game_players" */ +export interface draft_game_players_inc_input {elo_snapshot?: (Scalars['Int'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "draft_game_players" */ +export interface draft_game_players_insert_input {draft_game?: (draft_games_obj_rel_insert_input | null),draft_game_id?: (Scalars['uuid'] | null),e_draft_game_player_status?: (e_draft_game_player_status_obj_rel_insert_input | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface draft_game_players_max_fieldsGenqlSelection{ + draft_game_id?: boolean | number + elo_snapshot?: boolean | number + joined_at?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by max() on columns of table "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)} +/** 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 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 draft_game_players_min_fieldsGenqlSelection{ + draft_game_id?: boolean | number + elo_snapshot?: boolean | number + joined_at?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by min() on columns of table "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)} +/** 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 "clip_render_jobs" */ -export interface clip_render_jobs_mutation_responseGenqlSelection{ +/** 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?: clip_render_jobsGenqlSelection + returning?: draft_game_playersGenqlSelection __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)} - - -/** 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 "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)} -/** 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 "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)} -/** 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: 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 "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 "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 clip_render_jobs_stddev_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number +export interface draft_game_players_stddev_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev() on columns of table "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)} +/** 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 clip_render_jobs_stddev_pop_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number +export interface draft_game_players_stddev_pop_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_pop() on columns of table "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)} +/** 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 clip_render_jobs_stddev_samp_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number +export interface draft_game_players_stddev_samp_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_samp() on columns of table "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)} +/** 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 "clip_render_jobs" */ -export interface clip_render_jobs_stream_cursor_input { +/** Streaming cursor of the table "draft_game_players" */ +export interface draft_game_players_stream_cursor_input { /** Stream column input with initial value */ -initial_value: clip_render_jobs_stream_cursor_value_input, +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 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)} +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 clip_render_jobs_sum_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number +export interface draft_game_players_sum_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by sum() on columns of table "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)} +/** 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 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), +export interface draft_game_players_updates { /** 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), +_inc?: (draft_game_players_inc_input | null), /** sets the columns of the filtered rows to the given values */ -_set?: (clip_render_jobs_set_input | null), +_set?: (draft_game_players_set_input | null), /** filter the rows which have to be updated */ -where: clip_render_jobs_bool_exp} +where: draft_game_players_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 +export interface draft_game_players_var_pop_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by var_pop() on columns of table "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)} +/** 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 clip_render_jobs_var_samp_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number +export interface draft_game_players_var_samp_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by var_samp() on columns of table "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)} +/** order by var_samp() on columns of table "draft_game_players" */ +export interface draft_game_players_var_samp_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} /** aggregate variance on columns */ -export interface clip_render_jobs_variance_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number +export interface draft_game_players_variance_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by variance() on columns of table "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)} +/** 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 "custom_pages" */ -export interface custom_pagesGenqlSelection{ +/** columns and relationships of "draft_games" */ +export interface draft_gamesGenqlSelection{ + access?: boolean | number + capacity?: boolean | number + captain_selection?: boolean | number created_at?: boolean | number - deployments?: { __args: { + 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 - enabled?: boolean | number - exposed_module?: boolean | number - icon?: boolean | number - id?: boolean | number - is_default?: boolean | number - manifest_url?: boolean | number - nav_group?: boolean | number - nav_order?: boolean | number - profile_tab_label?: boolean | number - remote_entry_url?: boolean | number - remote_scope?: boolean | number - required_role?: boolean | number - slug?: boolean | number - title?: 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 } -/** aggregated selection of "custom_pages" */ -export interface custom_pages_aggregateGenqlSelection{ - aggregate?: custom_pages_aggregate_fieldsGenqlSelection - nodes?: custom_pagesGenqlSelection +/** aggregated selection of "draft_games" */ +export interface draft_games_aggregateGenqlSelection{ + aggregate?: draft_games_aggregate_fieldsGenqlSelection + nodes?: draft_gamesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +export interface draft_games_aggregate_bool_exp {bool_and?: (draft_games_aggregate_bool_exp_bool_and | null),bool_or?: (draft_games_aggregate_bool_exp_bool_or | null),count?: (draft_games_aggregate_bool_exp_count | null)} -/** aggregate fields of "custom_pages" */ -export interface custom_pages_aggregate_fieldsGenqlSelection{ - avg?: custom_pages_avg_fieldsGenqlSelection - count?: { __args: {columns?: (custom_pages_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: custom_pages_max_fieldsGenqlSelection - min?: custom_pages_min_fieldsGenqlSelection - stddev?: custom_pages_stddev_fieldsGenqlSelection - stddev_pop?: custom_pages_stddev_pop_fieldsGenqlSelection - stddev_samp?: custom_pages_stddev_samp_fieldsGenqlSelection - sum?: custom_pages_sum_fieldsGenqlSelection - var_pop?: custom_pages_var_pop_fieldsGenqlSelection - var_samp?: custom_pages_var_samp_fieldsGenqlSelection - variance?: custom_pages_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} +export interface draft_games_aggregate_bool_exp_bool_and {arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Boolean_comparison_exp} +export interface draft_games_aggregate_bool_exp_bool_or {arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Boolean_comparison_exp} -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface custom_pages_append_input {deployments?: (Scalars['jsonb'] | null)} +export interface draft_games_aggregate_bool_exp_count {arguments?: (draft_games_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Int_comparison_exp} -/** aggregate avg on columns */ -export interface custom_pages_avg_fieldsGenqlSelection{ - nav_order?: 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 } -/** Boolean expression to filter rows from the table "custom_pages". All fields are combined with a logical 'AND'. */ -export interface custom_pages_bool_exp {_and?: (custom_pages_bool_exp[] | null),_not?: (custom_pages_bool_exp | null),_or?: (custom_pages_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),deployments?: (jsonb_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),exposed_module?: (String_comparison_exp | null),icon?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_default?: (Boolean_comparison_exp | null),manifest_url?: (String_comparison_exp | null),nav_group?: (String_comparison_exp | null),nav_order?: (Int_comparison_exp | null),profile_tab_label?: (String_comparison_exp | null),remote_entry_url?: (String_comparison_exp | null),remote_scope?: (String_comparison_exp | null),required_role?: (e_player_roles_enum_comparison_exp | null),slug?: (String_comparison_exp | null),title?: (String_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} +/** 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)} -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface custom_pages_delete_at_path_input {deployments?: (Scalars['String'][] | 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)} -/** 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 custom_pages_delete_elem_input {deployments?: (Scalars['Int'] | null)} +/** aggregate avg on columns */ +export interface draft_games_avg_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface custom_pages_delete_key_input {deployments?: (Scalars['String'] | null)} +/** 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)} -/** input type for incrementing numeric columns in table "custom_pages" */ -export interface custom_pages_inc_input {nav_order?: (Scalars['Int'] | 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 "custom_pages" */ -export interface custom_pages_insert_input {created_at?: (Scalars['timestamptz'] | null),deployments?: (Scalars['jsonb'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),manifest_url?: (Scalars['String'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),profile_tab_label?: (Scalars['String'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} +/** 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 custom_pages_max_fieldsGenqlSelection{ +export interface draft_games_max_fieldsGenqlSelection{ + capacity?: boolean | number created_at?: boolean | number - exposed_module?: boolean | number - icon?: boolean | number + current_pick_lineup?: boolean | number + expires_at?: boolean | number + host_steam_id?: boolean | number id?: boolean | number - manifest_url?: boolean | number - nav_group?: boolean | number - nav_order?: boolean | number - profile_tab_label?: boolean | number - remote_entry_url?: boolean | number - remote_scope?: boolean | number - slug?: boolean | number - title?: 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 custom_pages_min_fieldsGenqlSelection{ +export interface draft_games_min_fieldsGenqlSelection{ + capacity?: boolean | number created_at?: boolean | number - exposed_module?: boolean | number - icon?: boolean | number + current_pick_lineup?: boolean | number + expires_at?: boolean | number + host_steam_id?: boolean | number id?: boolean | number - manifest_url?: boolean | number - nav_group?: boolean | number - nav_order?: boolean | number - profile_tab_label?: boolean | number - remote_entry_url?: boolean | number - remote_scope?: boolean | number - slug?: boolean | number - title?: 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 "custom_pages" */ -export interface custom_pages_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?: custom_pagesGenqlSelection + returning?: draft_gamesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "custom_pages" */ -export interface custom_pages_on_conflict {constraint: custom_pages_constraint,update_columns?: custom_pages_update_column[],where?: (custom_pages_bool_exp | null)} +/** 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 "custom_pages". */ -export interface custom_pages_order_by {created_at?: (order_by | null),deployments?: (order_by | null),enabled?: (order_by | null),exposed_module?: (order_by | null),icon?: (order_by | null),id?: (order_by | null),is_default?: (order_by | null),manifest_url?: (order_by | null),nav_group?: (order_by | null),nav_order?: (order_by | null),profile_tab_label?: (order_by | null),remote_entry_url?: (order_by | null),remote_scope?: (order_by | null),required_role?: (order_by | null),slug?: (order_by | null),title?: (order_by | null),updated_at?: (order_by | null)} +/** 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: custom_pages */ -export interface custom_pages_pk_columns_input {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)} -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface custom_pages_prepend_input {deployments?: (Scalars['jsonb'] | null)} +/** primary key columns input for table: draft_games */ +export interface draft_games_pk_columns_input {id: Scalars['uuid']} -/** input type for updating data in table "custom_pages" */ -export interface custom_pages_set_input {created_at?: (Scalars['timestamptz'] | null),deployments?: (Scalars['jsonb'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),manifest_url?: (Scalars['String'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),profile_tab_label?: (Scalars['String'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} +/** 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 custom_pages_stddev_fieldsGenqlSelection{ - nav_order?: boolean | number +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 custom_pages_stddev_pop_fieldsGenqlSelection{ - nav_order?: boolean | number +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 } -/** aggregate stddev_samp on columns */ -export interface custom_pages_stddev_samp_fieldsGenqlSelection{ - nav_order?: 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 "custom_pages" */ -export interface custom_pages_stream_cursor_input { +/** Streaming cursor of the table "draft_games" */ +export interface draft_games_stream_cursor_input { /** Stream column input with initial value */ -initial_value: custom_pages_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 custom_pages_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),deployments?: (Scalars['jsonb'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),manifest_url?: (Scalars['String'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),profile_tab_label?: (Scalars['String'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} +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)} /** aggregate sum on columns */ -export interface custom_pages_sum_fieldsGenqlSelection{ - nav_order?: boolean | number +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 } -export interface custom_pages_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (custom_pages_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (custom_pages_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?: (custom_pages_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (custom_pages_delete_key_input | null), + +/** 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?: (custom_pages_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (custom_pages_prepend_input | null), +_inc?: (draft_games_inc_input | null), /** sets the columns of the filtered rows to the given values */ -_set?: (custom_pages_set_input | null), +_set?: (draft_games_set_input | null), /** filter the rows which have to be updated */ -where: custom_pages_bool_exp} +where: draft_games_bool_exp} /** aggregate var_pop on columns */ -export interface custom_pages_var_pop_fieldsGenqlSelection{ - nav_order?: boolean | number +export interface draft_games_var_pop_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by var_pop() on columns of table "draft_games" */ +export interface draft_games_var_pop_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + /** aggregate var_samp on columns */ -export interface custom_pages_var_samp_fieldsGenqlSelection{ - nav_order?: boolean | number +export interface draft_games_var_samp_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by var_samp() on columns of table "draft_games" */ +export interface draft_games_var_samp_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + /** aggregate variance on columns */ -export interface custom_pages_variance_fieldsGenqlSelection{ - nav_order?: boolean | number +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 } -/** 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 -} +/** 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)} -/** aggregated selection of "db_backups" */ -export interface db_backups_aggregateGenqlSelection{ - aggregate?: db_backups_aggregate_fieldsGenqlSelection - nodes?: db_backupsGenqlSelection +/** columns and relationships of "e_award_sources" */ +export interface e_award_sourcesGenqlSelection{ + 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_award_sources" */ +export interface e_award_sources_aggregateGenqlSelection{ + aggregate?: e_award_sources_aggregate_fieldsGenqlSelection + nodes?: e_award_sourcesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate avg on columns */ -export interface db_backups_avg_fieldsGenqlSelection{ - size?: boolean | number +/** aggregate fields of "e_award_sources" */ +export interface e_award_sources_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_award_sources_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_award_sources_max_fieldsGenqlSelection + min?: e_award_sources_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_award_sources". All fields are combined with a logical 'AND'. */ +export interface e_award_sources_bool_exp {_and?: (e_award_sources_bool_exp[] | null),_not?: (e_award_sources_bool_exp | null),_or?: (e_award_sources_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_award_sources_enum". All fields are combined with logical 'AND'. */ +export interface e_award_sources_enum_comparison_exp {_eq?: (e_award_sources_enum | null),_in?: (e_award_sources_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_award_sources_enum | null),_nin?: (e_award_sources_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_award_sources" */ +export interface e_award_sources_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_award_sources_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_award_sources_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_award_sources" */ +export interface e_award_sources_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_award_sourcesGenqlSelection __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_award_sources" */ +export interface e_award_sources_on_conflict {constraint: e_award_sources_constraint,update_columns?: e_award_sources_update_column[],where?: (e_award_sources_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_award_sources". */ +export interface e_award_sources_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_award_sources */ +export interface e_award_sources_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_award_sources" */ +export interface e_award_sources_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_award_sources" */ +export interface e_award_sources_stream_cursor_input { /** Stream column input with initial value */ -initial_value: db_backups_stream_cursor_value_input, +initial_value: e_award_sources_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_award_sources_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_award_sources_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (db_backups_set_input | null), +_set?: (e_award_sources_set_input | null), /** filter the rows which have to be updated */ -where: db_backups_bool_exp} - - -/** aggregate var_pop on columns */ -export interface db_backups_var_pop_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface db_backups_var_samp_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface db_backups_variance_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "direct_conversations" */ -export interface direct_conversationsGenqlSelection{ - is_open?: boolean | number - last_message_at?: boolean | number - position?: boolean | number - room_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +where: e_award_sources_bool_exp} -/** aggregated selection of "direct_conversations" */ -export interface direct_conversations_aggregateGenqlSelection{ - aggregate?: direct_conversations_aggregate_fieldsGenqlSelection - nodes?: direct_conversationsGenqlSelection +/** columns and relationships of "e_award_tiers" */ +export interface e_award_tiersGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "direct_conversations" */ -export interface direct_conversations_aggregate_fieldsGenqlSelection{ - avg?: direct_conversations_avg_fieldsGenqlSelection - count?: { __args: {columns?: (direct_conversations_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: direct_conversations_max_fieldsGenqlSelection - min?: direct_conversations_min_fieldsGenqlSelection - stddev?: direct_conversations_stddev_fieldsGenqlSelection - stddev_pop?: direct_conversations_stddev_pop_fieldsGenqlSelection - stddev_samp?: direct_conversations_stddev_samp_fieldsGenqlSelection - sum?: direct_conversations_sum_fieldsGenqlSelection - var_pop?: direct_conversations_var_pop_fieldsGenqlSelection - var_samp?: direct_conversations_var_samp_fieldsGenqlSelection - variance?: direct_conversations_variance_fieldsGenqlSelection +/** aggregated selection of "e_award_tiers" */ +export interface e_award_tiers_aggregateGenqlSelection{ + aggregate?: e_award_tiers_aggregate_fieldsGenqlSelection + nodes?: e_award_tiersGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate avg on columns */ -export interface direct_conversations_avg_fieldsGenqlSelection{ - position?: boolean | number - steam_id?: boolean | number +/** aggregate fields of "e_award_tiers" */ +export interface e_award_tiers_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_award_tiers_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_award_tiers_max_fieldsGenqlSelection + min?: e_award_tiers_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "direct_conversations". All fields are combined with a logical 'AND'. */ -export interface direct_conversations_bool_exp {_and?: (direct_conversations_bool_exp[] | null),_not?: (direct_conversations_bool_exp | null),_or?: (direct_conversations_bool_exp[] | null),is_open?: (Boolean_comparison_exp | null),last_message_at?: (timestamptz_comparison_exp | null),position?: (Int_comparison_exp | null),room_id?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_award_tiers". All fields are combined with a logical 'AND'. */ +export interface e_award_tiers_bool_exp {_and?: (e_award_tiers_bool_exp[] | null),_not?: (e_award_tiers_bool_exp | null),_or?: (e_award_tiers_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** input type for incrementing numeric columns in table "direct_conversations" */ -export interface direct_conversations_inc_input {position?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} +/** Boolean expression to compare columns of type "e_award_tiers_enum". All fields are combined with logical 'AND'. */ +export interface e_award_tiers_enum_comparison_exp {_eq?: (e_award_tiers_enum | null),_in?: (e_award_tiers_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_award_tiers_enum | null),_nin?: (e_award_tiers_enum[] | null)} -/** input type for inserting data into table "direct_conversations" */ -export interface direct_conversations_insert_input {is_open?: (Scalars['Boolean'] | null),last_message_at?: (Scalars['timestamptz'] | null),position?: (Scalars['Int'] | null),room_id?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} +/** input type for inserting data into table "e_award_tiers" */ +export interface e_award_tiers_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface direct_conversations_max_fieldsGenqlSelection{ - last_message_at?: boolean | number - position?: boolean | number - room_id?: boolean | number - steam_id?: boolean | number +export interface e_award_tiers_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate min on columns */ -export interface direct_conversations_min_fieldsGenqlSelection{ - last_message_at?: boolean | number - position?: boolean | number - room_id?: boolean | number - steam_id?: boolean | number +export interface e_award_tiers_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "direct_conversations" */ -export interface direct_conversations_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_award_tiers" */ +export interface e_award_tiers_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: direct_conversationsGenqlSelection + returning?: e_award_tiersGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "direct_conversations" */ -export interface direct_conversations_on_conflict {constraint: direct_conversations_constraint,update_columns?: direct_conversations_update_column[],where?: (direct_conversations_bool_exp | null)} +/** on_conflict condition type for table "e_award_tiers" */ +export interface e_award_tiers_on_conflict {constraint: e_award_tiers_constraint,update_columns?: e_award_tiers_update_column[],where?: (e_award_tiers_bool_exp | null)} -/** Ordering options when selecting data from "direct_conversations". */ -export interface direct_conversations_order_by {is_open?: (order_by | null),last_message_at?: (order_by | null),position?: (order_by | null),room_id?: (order_by | null),steam_id?: (order_by | null)} +/** Ordering options when selecting data from "e_award_tiers". */ +export interface e_award_tiers_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: direct_conversations */ -export interface direct_conversations_pk_columns_input {room_id: Scalars['String'],steam_id: Scalars['bigint']} +/** primary key columns input for table: e_award_tiers */ +export interface e_award_tiers_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "direct_conversations" */ -export interface direct_conversations_set_input {is_open?: (Scalars['Boolean'] | null),last_message_at?: (Scalars['timestamptz'] | null),position?: (Scalars['Int'] | null),room_id?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} +/** input type for updating data in table "e_award_tiers" */ +export interface e_award_tiers_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregate stddev on columns */ -export interface direct_conversations_stddev_fieldsGenqlSelection{ - position?: boolean | number - steam_id?: boolean | number +/** Streaming cursor of the table "e_award_tiers" */ +export interface e_award_tiers_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_award_tiers_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_award_tiers_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_award_tiers_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_award_tiers_set_input | null), +/** filter the rows which have to be updated */ +where: e_award_tiers_bool_exp} + + +/** 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 stddev_pop on columns */ -export interface direct_conversations_stddev_pop_fieldsGenqlSelection{ - position?: boolean | number - 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 } -/** aggregate stddev_samp on columns */ -export interface direct_conversations_stddev_samp_fieldsGenqlSelection{ - position?: boolean | number - steam_id?: 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 __typename?: boolean | number __scalar?: boolean | number } -/** Streaming cursor of the table "direct_conversations" */ -export interface direct_conversations_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: direct_conversations_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | 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)} -/** Initial value of the column from where the streaming should start */ -export interface direct_conversations_stream_cursor_value_input {is_open?: (Scalars['Boolean'] | null),last_message_at?: (Scalars['timestamptz'] | null),position?: (Scalars['Int'] | null),room_id?: (Scalars['String'] | null),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)} -/** aggregate sum on columns */ -export interface direct_conversations_sum_fieldsGenqlSelection{ - position?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} -export interface direct_conversations_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (direct_conversations_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (direct_conversations_set_input | null), -/** filter the rows which have to be updated */ -where: direct_conversations_bool_exp} +/** 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 var_pop on columns */ -export interface direct_conversations_var_pop_fieldsGenqlSelection{ - position?: boolean | number - steam_id?: boolean | number +/** aggregate max on columns */ +export interface e_check_in_settings_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate var_samp on columns */ -export interface direct_conversations_var_samp_fieldsGenqlSelection{ - position?: boolean | number - steam_id?: boolean | number +/** aggregate min on columns */ +export interface e_check_in_settings_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate variance on columns */ -export interface direct_conversations_variance_fieldsGenqlSelection{ - position?: boolean | number - steam_id?: boolean | number +/** 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?: e_check_in_settingsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** columns and relationships of "direct_messages" */ -export interface direct_messagesGenqlSelection{ - created_at?: boolean | number - from_steam_id?: boolean | number - id?: boolean | number - message?: boolean | number - room_id?: boolean | number - seq?: boolean | number - __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)} -/** aggregated selection of "direct_messages" */ -export interface direct_messages_aggregateGenqlSelection{ - aggregate?: direct_messages_aggregate_fieldsGenqlSelection - nodes?: direct_messagesGenqlSelection +/** 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: e_check_in_settings */ +export interface e_check_in_settings_pk_columns_input {value: Scalars['String']} + + +/** 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)} + + +/** 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)} + + +/** 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} + + +/** 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 } -/** aggregate fields of "direct_messages" */ -export interface direct_messages_aggregate_fieldsGenqlSelection{ - avg?: direct_messages_avg_fieldsGenqlSelection - count?: { __args: {columns?: (direct_messages_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: direct_messages_max_fieldsGenqlSelection - min?: direct_messages_min_fieldsGenqlSelection - stddev?: direct_messages_stddev_fieldsGenqlSelection - stddev_pop?: direct_messages_stddev_pop_fieldsGenqlSelection - stddev_samp?: direct_messages_stddev_samp_fieldsGenqlSelection - sum?: direct_messages_sum_fieldsGenqlSelection - var_pop?: direct_messages_var_pop_fieldsGenqlSelection - var_samp?: direct_messages_var_samp_fieldsGenqlSelection - variance?: direct_messages_variance_fieldsGenqlSelection +/** 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 avg on columns */ -export interface direct_messages_avg_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: boolean | number +/** aggregate fields of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_captain_selection_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_captain_selection_max_fieldsGenqlSelection + min?: e_draft_game_captain_selection_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "direct_messages". All fields are combined with a logical 'AND'. */ -export interface direct_messages_bool_exp {_and?: (direct_messages_bool_exp[] | null),_not?: (direct_messages_bool_exp | null),_or?: (direct_messages_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),from_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),message?: (String_comparison_exp | null),room_id?: (String_comparison_exp | null),seq?: (bigint_comparison_exp | 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)} -/** input type for incrementing numeric columns in table "direct_messages" */ -export interface direct_messages_inc_input {from_steam_id?: (Scalars['bigint'] | null),seq?: (Scalars['bigint'] | null)} +/** Boolean expression to compare columns of type "e_draft_game_captain_selection_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_captain_selection_enum_comparison_exp {_eq?: (e_draft_game_captain_selection_enum | null),_in?: (e_draft_game_captain_selection_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_captain_selection_enum | null),_nin?: (e_draft_game_captain_selection_enum[] | null)} -/** input type for inserting data into table "direct_messages" */ -export interface direct_messages_insert_input {created_at?: (Scalars['timestamptz'] | null),from_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),message?: (Scalars['String'] | null),room_id?: (Scalars['String'] | null),seq?: (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 max on columns */ -export interface direct_messages_max_fieldsGenqlSelection{ - created_at?: boolean | number - from_steam_id?: boolean | number - id?: boolean | number - message?: boolean | number - room_id?: boolean | number - seq?: boolean | number +export interface e_draft_game_captain_selection_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate min on columns */ -export interface direct_messages_min_fieldsGenqlSelection{ - created_at?: boolean | number - from_steam_id?: boolean | number - id?: boolean | number - message?: boolean | number - room_id?: boolean | number - seq?: boolean | number +export interface e_draft_game_captain_selection_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "direct_messages" */ -export interface direct_messages_mutation_responseGenqlSelection{ +/** 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?: direct_messagesGenqlSelection + returning?: e_draft_game_captain_selectionGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "direct_messages" */ -export interface direct_messages_on_conflict {constraint: direct_messages_constraint,update_columns?: direct_messages_update_column[],where?: (direct_messages_bool_exp | null)} - - -/** Ordering options when selecting data from "direct_messages". */ -export interface direct_messages_order_by {created_at?: (order_by | null),from_steam_id?: (order_by | null),id?: (order_by | null),message?: (order_by | null),room_id?: (order_by | null),seq?: (order_by | null)} - - -/** primary key columns input for table: direct_messages */ -export interface direct_messages_pk_columns_input {id: Scalars['uuid']} +/** 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)} -/** input type for updating data in table "direct_messages" */ -export interface direct_messages_set_input {created_at?: (Scalars['timestamptz'] | null),from_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),message?: (Scalars['String'] | null),room_id?: (Scalars['String'] | null),seq?: (Scalars['bigint'] | 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)} -/** aggregate stddev on columns */ -export interface direct_messages_stddev_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** 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 stddev_pop on columns */ -export interface direct_messages_stddev_pop_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: 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']} -/** aggregate stddev_samp on columns */ -export interface direct_messages_stddev_samp_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** input type for updating data in table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "direct_messages" */ -export interface direct_messages_stream_cursor_input { +/** 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: direct_messages_stream_cursor_value_input, +initial_value: e_draft_game_captain_selection_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface direct_messages_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),from_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),message?: (Scalars['String'] | null),room_id?: (Scalars['String'] | null),seq?: (Scalars['bigint'] | null)} +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} -/** aggregate sum on columns */ -export interface direct_messages_sum_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: boolean | number +/** 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 } -export interface direct_messages_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (direct_messages_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (direct_messages_set_input | null), -/** filter the rows which have to be updated */ -where: direct_messages_bool_exp} - -/** aggregate var_pop on columns */ -export interface direct_messages_var_pop_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: boolean | number +/** aggregated selection of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_aggregateGenqlSelection{ + aggregate?: e_draft_game_draft_order_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_draft_orderGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate var_samp on columns */ -export interface direct_messages_var_samp_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: 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 } -/** aggregate variance on columns */ -export interface direct_messages_variance_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: boolean | number +/** Boolean expression to filter rows from the table "e_draft_game_draft_order". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_draft_order_bool_exp {_and?: (e_draft_game_draft_order_bool_exp[] | null),_not?: (e_draft_game_draft_order_bool_exp | null),_or?: (e_draft_game_draft_order_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_draft_game_draft_order_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_draft_order_enum_comparison_exp {_eq?: (e_draft_game_draft_order_enum | null),_in?: (e_draft_game_draft_order_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_draft_order_enum | null),_nin?: (e_draft_game_draft_order_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_draft_order_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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 +/** aggregate min on columns */ +export interface e_draft_game_draft_order_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "draft_game_picks" */ -export interface draft_game_picks_aggregateGenqlSelection{ - aggregate?: draft_game_picks_aggregate_fieldsGenqlSelection - nodes?: draft_game_picksGenqlSelection +/** response of any mutation on the table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_draft_orderGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -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} +/** 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)} -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} +/** 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 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 -} +/** 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)} -/** 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)} +/** primary key columns input for table: e_draft_game_draft_order */ +export interface e_draft_game_draft_order_pk_columns_input {value: Scalars['String']} -/** input type for 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)} +/** 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)} -/** aggregate avg on columns */ -export interface draft_game_picks_avg_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number +/** Streaming cursor of the table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_draft_order_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_draft_order_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_draft_order_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_draft_order_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_draft_order_bool_exp} + + +/** columns and relationships of "e_draft_game_mode" */ +export interface e_draft_game_modeGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** 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 +} -/** 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)} +/** 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 +} -/** 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)} +/** 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)} -/** 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)} +/** Boolean expression to compare columns of type "e_draft_game_mode_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_mode_enum_comparison_exp {_eq?: (e_draft_game_mode_enum | null),_in?: (e_draft_game_mode_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_mode_enum | null),_nin?: (e_draft_game_mode_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_mode" */ +export interface e_draft_game_mode_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface 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 +export interface e_draft_game_mode_max_fieldsGenqlSelection{ + 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 +export interface e_draft_game_mode_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by min() on columns of table "draft_game_picks" */ -export interface draft_game_picks_min_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** response of any mutation on the table "draft_game_picks" */ -export interface draft_game_picks_mutation_responseGenqlSelection{ +/** 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?: draft_game_picksGenqlSelection + returning?: e_draft_game_modeGenqlSelection __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)} +/** 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)} -/** 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)} +/** 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)} -/** primary key columns input for table: draft_game_picks */ -export interface draft_game_picks_pk_columns_input {id: Scalars['uuid']} +/** 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)} -/** 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)} +/** primary key columns input for table: e_draft_game_mode */ +export interface e_draft_game_mode_pk_columns_input {value: Scalars['String']} -/** 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 -} +/** 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)} -/** 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)} +/** 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)} -/** 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 +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_mode_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_mode_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_mode_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_mode_bool_exp} + + +/** columns and relationships of "e_draft_game_player_status" */ +export interface e_draft_game_player_statusGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** aggregated selection of "e_draft_game_player_status" */ +export interface e_draft_game_player_status_aggregateGenqlSelection{ + aggregate?: e_draft_game_player_status_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_player_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate 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 +/** 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 } -/** 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)} +/** 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)} -/** 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)} +/** 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)} -/** 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)} +/** 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 sum on columns */ -export interface draft_game_picks_sum_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number +/** aggregate max on columns */ +export interface e_draft_game_player_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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 min on columns */ +export interface e_draft_game_player_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __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 +/** response of any mutation on the table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_player_statusGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** 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)} -/** 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 -} +/** 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)} -/** 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)} +/** 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)} -/** 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 -} +/** primary key columns input for table: e_draft_game_player_status */ +export interface e_draft_game_player_status_pk_columns_input {value: Scalars['String']} -/** 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)} +/** 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)} -/** 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 +/** Streaming cursor of the table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_player_status_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_player_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_player_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_player_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_player_status_bool_exp} + + +/** columns and relationships of "e_draft_game_status" */ +export interface e_draft_game_statusGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "draft_game_players" */ -export interface draft_game_players_aggregateGenqlSelection{ - aggregate?: draft_game_players_aggregate_fieldsGenqlSelection - nodes?: draft_game_playersGenqlSelection +/** 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 } -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} +/** 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 +} -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} +/** 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)} -/** 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 +/** Boolean expression to compare columns of type "e_draft_game_status_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_status_enum_comparison_exp {_eq?: (e_draft_game_status_enum | null),_in?: (e_draft_game_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_status_enum | null),_nin?: (e_draft_game_status_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_status" */ +export interface e_draft_game_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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 min on columns */ +export interface e_draft_game_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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 +/** 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 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)} +/** 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)} -/** 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)} +/** 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)} -/** 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)} +/** 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)} -/** 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)} +/** primary key columns input for table: e_draft_game_status */ +export interface e_draft_game_status_pk_columns_input {value: Scalars['String']} -/** 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 -} +/** 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)} -/** 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)} +/** 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)} -/** 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 +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_status_bool_exp} + + +/** columns and relationships of "e_event_media_access" */ +export interface e_event_media_accessGenqlSelection{ + 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{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: draft_game_playersGenqlSelection +/** 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 } -/** 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)} +/** 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 +} -/** 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)} +/** 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)} -/** 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']} +/** 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 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)} +/** 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 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 +/** aggregate max on columns */ +export interface e_event_media_access_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev() on columns of table "draft_game_players" */ -export interface draft_game_players_stddev_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} +/** aggregate min on columns */ +export interface e_event_media_access_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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 +/** 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?: e_event_media_accessGenqlSelection __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)} +/** 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_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 -} +/** 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)} -/** 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)} +/** primary key columns input for table: e_event_media_access */ +export interface e_event_media_access_pk_columns_input {value: Scalars['String']} -/** Streaming cursor of the table "draft_game_players" */ -export interface draft_game_players_stream_cursor_input { +/** 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 "e_event_media_access" */ +export interface e_event_media_access_stream_cursor_input { /** Stream column input with initial value */ -initial_value: draft_game_players_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 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)} +export interface e_event_media_access_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_event_media_access_updates { +/** 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} -/** 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 + +/** columns and relationships of "e_event_visibility" */ +export interface e_event_visibilityGenqlSelection{ + 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} +/** 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 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 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 } -/** 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)} +/** 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)} -/** 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 "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)} -/** 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 data into table "e_event_visibility" */ +export interface e_event_visibility_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | 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 +/** aggregate max on columns */ +export interface e_event_visibility_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by variance() on columns of table "draft_game_players" */ -export interface draft_game_players_variance_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - - -/** columns and relationships of "draft_games" */ -export interface draft_gamesGenqlSelection{ - access?: boolean | number - capacity?: boolean | number - captain_selection?: boolean | number - created_at?: boolean | number - current_pick_lineup?: boolean | number - draft_order?: boolean | number - /** An object relationship */ - e_draft_game_captain_selection?: e_draft_game_captain_selectionGenqlSelection - /** An object relationship */ - e_draft_game_draft_order?: e_draft_game_draft_orderGenqlSelection - /** An object relationship */ - e_draft_game_mode?: e_draft_game_modeGenqlSelection - /** An object relationship */ - e_draft_game_status?: e_draft_game_statusGenqlSelection - /** An object relationship */ - e_lobby_access?: e_lobby_accessGenqlSelection - expires_at?: boolean | number - /** An object relationship */ - host?: playersGenqlSelection - host_steam_id?: boolean | number - id?: boolean | number - inner_squad?: boolean | number - invite_code?: boolean | number - 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 +/** aggregate min on columns */ +export interface e_event_visibility_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "draft_games" */ -export interface draft_games_aggregateGenqlSelection{ - aggregate?: draft_games_aggregate_fieldsGenqlSelection - nodes?: draft_gamesGenqlSelection +/** 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 } -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} +/** 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)} -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} +/** 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 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 -} +/** primary key columns input for table: e_event_visibility */ +export interface e_event_visibility_pk_columns_input {value: Scalars['String']} -/** 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 updating data in table "e_event_visibility" */ +export interface e_event_visibility_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | 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)} +/** 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)} -/** 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 +/** 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)} + +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} + + +/** 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 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)} +/** 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 +} -/** 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)} +/** 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 +} -/** 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 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 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 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_friend_status" */ +export interface e_friend_status_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_friend_status_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_friend_status_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_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?: draft_gamesGenqlSelection + returning?: e_friend_statusGenqlSelection __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_friend_status" */ +export interface e_friend_status_obj_rel_insert_input {data: e_friend_status_insert_input, /** upsert condition */ -on_conflict?: (draft_games_on_conflict | null)} +on_conflict?: (e_friend_status_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_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)} -/** 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_friend_status". */ +export interface e_friend_status_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_friend_status */ +export interface e_friend_status_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_friend_status" */ +export interface e_friend_status_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_friend_status" */ +export interface e_friend_status_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_friend_status_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_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 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_game_cfg_types" */ +export interface e_game_cfg_typesGenqlSelection{ + 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_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 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_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 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_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)} -/** 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_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)} -/** 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_game_cfg_types" */ +export interface e_game_cfg_types_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_game_cfg_types_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_game_cfg_types_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_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 } -/** 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)} +/** 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)} -/** 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 -} +/** 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)} -/** 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)} +/** primary key columns input for table: e_game_cfg_types */ +export interface e_game_cfg_types_pk_columns_input {value: Scalars['String']} -/** 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 -} +/** 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)} -/** 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)} +/** 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)} -/** columns and relationships of "e_award_sources" */ -export interface e_award_sourcesGenqlSelection{ +/** 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_plugin_channels" */ +export interface e_game_plugin_channelsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41292,39 +43954,39 @@ export interface e_award_sourcesGenqlSelection{ } -/** aggregated selection of "e_award_sources" */ -export interface e_award_sources_aggregateGenqlSelection{ - aggregate?: e_award_sources_aggregate_fieldsGenqlSelection - nodes?: e_award_sourcesGenqlSelection +/** aggregated selection of "e_game_plugin_channels" */ +export interface e_game_plugin_channels_aggregateGenqlSelection{ + aggregate?: e_game_plugin_channels_aggregate_fieldsGenqlSelection + nodes?: e_game_plugin_channelsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_award_sources" */ -export interface e_award_sources_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_award_sources_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_award_sources_max_fieldsGenqlSelection - min?: e_award_sources_min_fieldsGenqlSelection +/** aggregate fields of "e_game_plugin_channels" */ +export interface e_game_plugin_channels_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_game_plugin_channels_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_game_plugin_channels_max_fieldsGenqlSelection + min?: e_game_plugin_channels_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_award_sources". All fields are combined with a logical 'AND'. */ -export interface e_award_sources_bool_exp {_and?: (e_award_sources_bool_exp[] | null),_not?: (e_award_sources_bool_exp | null),_or?: (e_award_sources_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_game_plugin_channels". All fields are combined with a logical 'AND'. */ +export interface e_game_plugin_channels_bool_exp {_and?: (e_game_plugin_channels_bool_exp[] | null),_not?: (e_game_plugin_channels_bool_exp | null),_or?: (e_game_plugin_channels_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_award_sources_enum". All fields are combined with logical 'AND'. */ -export interface e_award_sources_enum_comparison_exp {_eq?: (e_award_sources_enum | null),_in?: (e_award_sources_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_award_sources_enum | null),_nin?: (e_award_sources_enum[] | null)} +/** Boolean expression to compare columns of type "e_game_plugin_channels_enum". All fields are combined with logical 'AND'. */ +export interface e_game_plugin_channels_enum_comparison_exp {_eq?: (e_game_plugin_channels_enum | null),_in?: (e_game_plugin_channels_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_game_plugin_channels_enum | null),_nin?: (e_game_plugin_channels_enum[] | null)} -/** input type for inserting data into table "e_award_sources" */ -export interface e_award_sources_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_game_plugin_channels" */ +export interface e_game_plugin_channels_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_award_sources_max_fieldsGenqlSelection{ +export interface e_game_plugin_channels_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41333,7 +43995,7 @@ export interface e_award_sources_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_award_sources_min_fieldsGenqlSelection{ +export interface e_game_plugin_channels_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41341,53 +44003,53 @@ export interface e_award_sources_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_award_sources" */ -export interface e_award_sources_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_game_plugin_channels" */ +export interface e_game_plugin_channels_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_award_sourcesGenqlSelection + returning?: e_game_plugin_channelsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_award_sources" */ -export interface e_award_sources_on_conflict {constraint: e_award_sources_constraint,update_columns?: e_award_sources_update_column[],where?: (e_award_sources_bool_exp | null)} +/** on_conflict condition type for table "e_game_plugin_channels" */ +export interface e_game_plugin_channels_on_conflict {constraint: e_game_plugin_channels_constraint,update_columns?: e_game_plugin_channels_update_column[],where?: (e_game_plugin_channels_bool_exp | null)} -/** Ordering options when selecting data from "e_award_sources". */ -export interface e_award_sources_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_game_plugin_channels". */ +export interface e_game_plugin_channels_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_award_sources */ -export interface e_award_sources_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_game_plugin_channels */ +export interface e_game_plugin_channels_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_award_sources" */ -export interface e_award_sources_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_game_plugin_channels" */ +export interface e_game_plugin_channels_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_award_sources" */ -export interface e_award_sources_stream_cursor_input { +/** Streaming cursor of the table "e_game_plugin_channels" */ +export interface e_game_plugin_channels_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_award_sources_stream_cursor_value_input, +initial_value: e_game_plugin_channels_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_award_sources_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_game_plugin_channels_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_award_sources_updates { +export interface e_game_plugin_channels_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_award_sources_set_input | null), +_set?: (e_game_plugin_channels_set_input | null), /** filter the rows which have to be updated */ -where: e_award_sources_bool_exp} +where: e_game_plugin_channels_bool_exp} -/** columns and relationships of "e_award_tiers" */ -export interface e_award_tiersGenqlSelection{ +/** columns and relationships of "e_game_plugin_install_statuses" */ +export interface e_game_plugin_install_statusesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41395,39 +44057,39 @@ export interface e_award_tiersGenqlSelection{ } -/** aggregated selection of "e_award_tiers" */ -export interface e_award_tiers_aggregateGenqlSelection{ - aggregate?: e_award_tiers_aggregate_fieldsGenqlSelection - nodes?: e_award_tiersGenqlSelection +/** aggregated selection of "e_game_plugin_install_statuses" */ +export interface e_game_plugin_install_statuses_aggregateGenqlSelection{ + aggregate?: e_game_plugin_install_statuses_aggregate_fieldsGenqlSelection + nodes?: e_game_plugin_install_statusesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_award_tiers" */ -export interface e_award_tiers_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_award_tiers_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_award_tiers_max_fieldsGenqlSelection - min?: e_award_tiers_min_fieldsGenqlSelection +/** aggregate fields of "e_game_plugin_install_statuses" */ +export interface e_game_plugin_install_statuses_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_game_plugin_install_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_game_plugin_install_statuses_max_fieldsGenqlSelection + min?: e_game_plugin_install_statuses_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_award_tiers". All fields are combined with a logical 'AND'. */ -export interface e_award_tiers_bool_exp {_and?: (e_award_tiers_bool_exp[] | null),_not?: (e_award_tiers_bool_exp | null),_or?: (e_award_tiers_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_game_plugin_install_statuses". All fields are combined with a logical 'AND'. */ +export interface e_game_plugin_install_statuses_bool_exp {_and?: (e_game_plugin_install_statuses_bool_exp[] | null),_not?: (e_game_plugin_install_statuses_bool_exp | null),_or?: (e_game_plugin_install_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_award_tiers_enum". All fields are combined with logical 'AND'. */ -export interface e_award_tiers_enum_comparison_exp {_eq?: (e_award_tiers_enum | null),_in?: (e_award_tiers_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_award_tiers_enum | null),_nin?: (e_award_tiers_enum[] | null)} +/** Boolean expression to compare columns of type "e_game_plugin_install_statuses_enum". All fields are combined with logical 'AND'. */ +export interface e_game_plugin_install_statuses_enum_comparison_exp {_eq?: (e_game_plugin_install_statuses_enum | null),_in?: (e_game_plugin_install_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_game_plugin_install_statuses_enum | null),_nin?: (e_game_plugin_install_statuses_enum[] | null)} -/** input type for inserting data into table "e_award_tiers" */ -export interface e_award_tiers_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_game_plugin_install_statuses" */ +export interface e_game_plugin_install_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_award_tiers_max_fieldsGenqlSelection{ +export interface e_game_plugin_install_statuses_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41436,7 +44098,7 @@ export interface e_award_tiers_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_award_tiers_min_fieldsGenqlSelection{ +export interface e_game_plugin_install_statuses_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41444,53 +44106,53 @@ export interface e_award_tiers_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_award_tiers" */ -export interface e_award_tiers_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_game_plugin_install_statuses" */ +export interface e_game_plugin_install_statuses_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_award_tiersGenqlSelection + returning?: e_game_plugin_install_statusesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_award_tiers" */ -export interface e_award_tiers_on_conflict {constraint: e_award_tiers_constraint,update_columns?: e_award_tiers_update_column[],where?: (e_award_tiers_bool_exp | null)} +/** on_conflict condition type for table "e_game_plugin_install_statuses" */ +export interface e_game_plugin_install_statuses_on_conflict {constraint: e_game_plugin_install_statuses_constraint,update_columns?: e_game_plugin_install_statuses_update_column[],where?: (e_game_plugin_install_statuses_bool_exp | null)} -/** Ordering options when selecting data from "e_award_tiers". */ -export interface e_award_tiers_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_game_plugin_install_statuses". */ +export interface e_game_plugin_install_statuses_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_award_tiers */ -export interface e_award_tiers_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_game_plugin_install_statuses */ +export interface e_game_plugin_install_statuses_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_award_tiers" */ -export interface e_award_tiers_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_game_plugin_install_statuses" */ +export interface e_game_plugin_install_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_award_tiers" */ -export interface e_award_tiers_stream_cursor_input { +/** Streaming cursor of the table "e_game_plugin_install_statuses" */ +export interface e_game_plugin_install_statuses_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_award_tiers_stream_cursor_value_input, +initial_value: e_game_plugin_install_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_award_tiers_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_game_plugin_install_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_award_tiers_updates { +export interface e_game_plugin_install_statuses_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_award_tiers_set_input | null), +_set?: (e_game_plugin_install_statuses_set_input | null), /** filter the rows which have to be updated */ -where: e_award_tiers_bool_exp} +where: e_game_plugin_install_statuses_bool_exp} -/** columns and relationships of "e_check_in_settings" */ -export interface e_check_in_settingsGenqlSelection{ +/** columns and relationships of "e_game_plugin_kinds" */ +export interface e_game_plugin_kindsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41498,39 +44160,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_game_plugin_kinds" */ +export interface e_game_plugin_kinds_aggregateGenqlSelection{ + aggregate?: e_game_plugin_kinds_aggregate_fieldsGenqlSelection + nodes?: e_game_plugin_kindsGenqlSelection __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_game_plugin_kinds" */ +export interface e_game_plugin_kinds_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_game_plugin_kinds_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_game_plugin_kinds_max_fieldsGenqlSelection + min?: e_game_plugin_kinds_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_game_plugin_kinds". All fields are combined with a logical 'AND'. */ +export interface e_game_plugin_kinds_bool_exp {_and?: (e_game_plugin_kinds_bool_exp[] | null),_not?: (e_game_plugin_kinds_bool_exp | null),_or?: (e_game_plugin_kinds_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_game_plugin_kinds_enum". All fields are combined with logical 'AND'. */ +export interface e_game_plugin_kinds_enum_comparison_exp {_eq?: (e_game_plugin_kinds_enum | null),_in?: (e_game_plugin_kinds_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_game_plugin_kinds_enum | null),_nin?: (e_game_plugin_kinds_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_game_plugin_kinds" */ +export interface e_game_plugin_kinds_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_game_plugin_kinds_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41539,7 +44201,7 @@ export interface e_check_in_settings_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_check_in_settings_min_fieldsGenqlSelection{ +export interface e_game_plugin_kinds_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41547,53 +44209,53 @@ 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_game_plugin_kinds" */ +export interface e_game_plugin_kinds_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_game_plugin_kindsGenqlSelection __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)} +/** on_conflict condition type for table "e_game_plugin_kinds" */ +export interface e_game_plugin_kinds_on_conflict {constraint: e_game_plugin_kinds_constraint,update_columns?: e_game_plugin_kinds_update_column[],where?: (e_game_plugin_kinds_bool_exp | 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)} +/** Ordering options when selecting data from "e_game_plugin_kinds". */ +export interface e_game_plugin_kinds_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_check_in_settings */ -export interface e_check_in_settings_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_game_plugin_kinds */ +export interface e_game_plugin_kinds_pk_columns_input {value: Scalars['String']} -/** 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)} +/** input type for updating data in table "e_game_plugin_kinds" */ +export interface e_game_plugin_kinds_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_check_in_settings" */ -export interface e_check_in_settings_stream_cursor_input { +/** Streaming cursor of the table "e_game_plugin_kinds" */ +export interface e_game_plugin_kinds_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_check_in_settings_stream_cursor_value_input, +initial_value: e_game_plugin_kinds_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_game_plugin_kinds_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_check_in_settings_updates { +export interface e_game_plugin_kinds_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_check_in_settings_set_input | null), +_set?: (e_game_plugin_kinds_set_input | null), /** filter the rows which have to be updated */ -where: e_check_in_settings_bool_exp} +where: e_game_plugin_kinds_bool_exp} -/** columns and relationships of "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selectionGenqlSelection{ +/** 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 @@ -41601,39 +44263,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_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 } -/** 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_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 } -/** 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_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 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_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_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_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 e_draft_game_captain_selection_max_fieldsGenqlSelection{ +export interface e_game_server_node_statuses_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41642,7 +44304,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_game_server_node_statuses_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41650,59 +44312,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_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?: e_draft_game_captain_selectionGenqlSelection + returning?: e_game_server_node_statusesGenqlSelection __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_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_draft_game_captain_selection_on_conflict | null)} +on_conflict?: (e_game_server_node_statuses_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_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)} -/** 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_game_server_node_statuses". */ +export interface e_game_server_node_statuses_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_game_server_node_statuses */ +export interface e_game_server_node_statuses_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_game_server_node_statuses" */ +export interface e_game_server_node_statuses_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_game_server_node_statuses" */ +export interface e_game_server_node_statuses_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_draft_game_captain_selection_stream_cursor_value_input, +initial_value: e_game_server_node_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_draft_game_captain_selection_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_game_server_node_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_draft_game_captain_selection_updates { +export interface e_game_server_node_statuses_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_draft_game_captain_selection_set_input | null), +_set?: (e_game_server_node_statuses_set_input | null), /** filter the rows which have to be updated */ -where: e_draft_game_captain_selection_bool_exp} +where: e_game_server_node_statuses_bool_exp} -/** columns and relationships of "e_draft_game_draft_order" */ -export interface e_draft_game_draft_orderGenqlSelection{ +/** columns and relationships of "e_league_movement_types" */ +export interface e_league_movement_typesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41710,39 +44372,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_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 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_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 } -/** 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_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 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_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)} -/** 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_league_movement_types" */ +export interface e_league_movement_types_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_league_movement_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41751,7 +44413,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_league_movement_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41759,59 +44421,59 @@ 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_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_draft_game_draft_orderGenqlSelection + returning?: e_league_movement_typesGenqlSelection __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, +/** 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_draft_game_draft_order_on_conflict | null)} +on_conflict?: (e_league_movement_types_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_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)} -/** 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_league_movement_types". */ +export interface e_league_movement_types_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_league_movement_types */ +export interface e_league_movement_types_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_league_movement_types" */ +export interface e_league_movement_types_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_league_movement_types" */ +export interface e_league_movement_types_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_draft_game_draft_order_stream_cursor_value_input, +initial_value: e_league_movement_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_draft_order_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_league_movement_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_draft_game_draft_order_updates { +export interface e_league_movement_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_draft_game_draft_order_set_input | null), +_set?: (e_league_movement_types_set_input | null), /** filter the rows which have to be updated */ -where: e_draft_game_draft_order_bool_exp} +where: e_league_movement_types_bool_exp} -/** columns and relationships of "e_draft_game_mode" */ -export interface e_draft_game_modeGenqlSelection{ +/** columns and relationships of "e_league_proposal_statuses" */ +export interface e_league_proposal_statusesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41819,39 +44481,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_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 } -/** 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_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 "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_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 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_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 "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_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 e_draft_game_mode_max_fieldsGenqlSelection{ +export interface e_league_proposal_statuses_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41860,7 +44522,7 @@ export interface e_draft_game_mode_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_draft_game_mode_min_fieldsGenqlSelection{ +export interface e_league_proposal_statuses_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41868,59 +44530,59 @@ 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_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?: e_draft_game_modeGenqlSelection + returning?: e_league_proposal_statusesGenqlSelection __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_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_draft_game_mode_on_conflict | null)} +on_conflict?: (e_league_proposal_statuses_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_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 "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_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: e_draft_game_mode */ -export interface e_draft_game_mode_pk_columns_input {value: Scalars['String']} +/** 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 "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_league_proposal_statuses" */ +export interface e_league_proposal_statuses_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_league_proposal_statuses" */ +export interface e_league_proposal_statuses_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_draft_game_mode_stream_cursor_value_input, +initial_value: e_league_proposal_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_draft_game_mode_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_league_proposal_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_draft_game_mode_updates { +export interface e_league_proposal_statuses_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_draft_game_mode_set_input | null), +_set?: (e_league_proposal_statuses_set_input | null), /** filter the rows which have to be updated */ -where: e_draft_game_mode_bool_exp} +where: e_league_proposal_statuses_bool_exp} -/** columns and relationships of "e_draft_game_player_status" */ -export interface e_draft_game_player_statusGenqlSelection{ +/** columns and relationships of "e_league_registration_statuses" */ +export interface e_league_registration_statusesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41928,39 +44590,39 @@ export interface e_draft_game_player_statusGenqlSelection{ } -/** 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_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 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_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 } -/** 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_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 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_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)} -/** 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_league_registration_statuses" */ +export interface e_league_registration_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_draft_game_player_status_max_fieldsGenqlSelection{ +export interface e_league_registration_statuses_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41969,7 +44631,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_league_registration_statuses_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -41977,59 +44639,59 @@ 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_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_draft_game_player_statusGenqlSelection + returning?: e_league_registration_statusesGenqlSelection __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, +/** 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_draft_game_player_status_on_conflict | null)} +on_conflict?: (e_league_registration_statuses_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_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)} -/** 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_league_registration_statuses". */ +export interface e_league_registration_statuses_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_draft_game_player_status */ -export interface e_draft_game_player_status_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_league_registration_statuses */ +export interface e_league_registration_statuses_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_league_registration_statuses" */ +export interface e_league_registration_statuses_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_league_registration_statuses" */ +export interface e_league_registration_statuses_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_draft_game_player_status_stream_cursor_value_input, +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_draft_game_player_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_league_registration_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_draft_game_player_status_updates { +export interface e_league_registration_statuses_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_draft_game_player_status_set_input | null), +_set?: (e_league_registration_statuses_set_input | null), /** filter the rows which have to be updated */ -where: e_draft_game_player_status_bool_exp} +where: e_league_registration_statuses_bool_exp} -/** columns and relationships of "e_draft_game_status" */ -export interface e_draft_game_statusGenqlSelection{ +/** columns and relationships of "e_league_season_statuses" */ +export interface e_league_season_statusesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42037,39 +44699,39 @@ export interface e_draft_game_statusGenqlSelection{ } -/** 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_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_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_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_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_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_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_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_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_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_draft_game_status_max_fieldsGenqlSelection{ +export interface e_league_season_statuses_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42078,7 +44740,7 @@ export interface e_draft_game_status_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_draft_game_status_min_fieldsGenqlSelection{ +export interface e_league_season_statuses_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42086,59 +44748,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_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_draft_game_statusGenqlSelection + returning?: e_league_season_statusesGenqlSelection __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_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_draft_game_status_on_conflict | null)} +on_conflict?: (e_league_season_statuses_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_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)} -/** 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_league_season_statuses". */ +export interface e_league_season_statuses_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_draft_game_status */ -export interface e_draft_game_status_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_league_season_statuses */ +export interface e_league_season_statuses_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_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_draft_game_status" */ -export interface e_draft_game_status_stream_cursor_input { +/** 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_draft_game_status_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_draft_game_status_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_draft_game_status_updates { +export interface e_league_season_statuses_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_draft_game_status_set_input | null), +_set?: (e_league_season_statuses_set_input | null), /** filter the rows which have to be updated */ -where: e_draft_game_status_bool_exp} +where: e_league_season_statuses_bool_exp} -/** columns and relationships of "e_event_media_access" */ -export interface e_event_media_accessGenqlSelection{ +/** columns and relationships of "e_lobby_access" */ +export interface e_lobby_accessGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42146,39 +44808,39 @@ export interface e_event_media_accessGenqlSelection{ } -/** 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 +/** 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_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 +/** 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_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)} +/** 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_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)} +/** 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_event_media_access" */ -export interface e_event_media_access_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_event_media_access_max_fieldsGenqlSelection{ +export interface e_lobby_access_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42187,7 +44849,7 @@ export interface e_event_media_access_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_event_media_access_min_fieldsGenqlSelection{ +export interface e_lobby_access_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42195,53 +44857,59 @@ export interface e_event_media_access_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_event_media_access" */ -export interface e_event_media_access_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_event_media_accessGenqlSelection + returning?: e_lobby_accessGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** 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)} -/** 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)} +/** 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)} -/** primary key columns input for table: e_event_media_access */ -export interface e_event_media_access_pk_columns_input {value: Scalars['String']} +/** Ordering options when selecting data from "e_lobby_access". */ +export interface e_lobby_access_order_by {description?: (order_by | null),value?: (order_by | null)} -/** 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)} +/** primary key columns input for table: e_lobby_access */ +export interface e_lobby_access_pk_columns_input {value: Scalars['String']} -/** Streaming cursor of the table "e_event_media_access" */ -export interface e_event_media_access_stream_cursor_input { +/** 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_lobby_access" */ +export interface e_lobby_access_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_event_media_access_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_event_media_access_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_event_media_access_updates { +export interface e_lobby_access_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_event_media_access_set_input | null), +_set?: (e_lobby_access_set_input | null), /** filter the rows which have to be updated */ -where: e_event_media_access_bool_exp} +where: e_lobby_access_bool_exp} -/** columns and relationships of "e_event_visibility" */ -export interface e_event_visibilityGenqlSelection{ +/** columns and relationships of "e_lobby_player_status" */ +export interface e_lobby_player_statusGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42249,39 +44917,39 @@ export interface e_event_visibilityGenqlSelection{ } -/** aggregated selection of "e_event_visibility" */ -export interface e_event_visibility_aggregateGenqlSelection{ - aggregate?: e_event_visibility_aggregate_fieldsGenqlSelection - nodes?: e_event_visibilityGenqlSelection +/** 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_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 +/** 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_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 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_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)} +/** 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_event_visibility" */ -export interface e_event_visibility_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_event_visibility_max_fieldsGenqlSelection{ +export interface e_lobby_player_status_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42290,7 +44958,7 @@ export interface e_event_visibility_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_event_visibility_min_fieldsGenqlSelection{ +export interface e_lobby_player_status_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42298,53 +44966,53 @@ export interface e_event_visibility_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_event_visibility" */ -export interface e_event_visibility_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_event_visibilityGenqlSelection + returning?: e_lobby_player_statusGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** 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_event_visibility". */ -export interface e_event_visibility_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_event_visibility */ -export interface e_event_visibility_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_event_visibility" */ -export interface e_event_visibility_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_event_visibility" */ -export interface e_event_visibility_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_event_visibility_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_event_visibility_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_event_visibility_updates { +export interface e_lobby_player_status_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_event_visibility_set_input | null), +_set?: (e_lobby_player_status_set_input | null), /** filter the rows which have to be updated */ -where: e_event_visibility_bool_exp} +where: e_lobby_player_status_bool_exp} -/** columns and relationships of "e_friend_status" */ -export interface e_friend_statusGenqlSelection{ +/** columns and relationships of "e_map_pool_types" */ +export interface e_map_pool_typesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42352,39 +45020,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_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_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_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_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_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_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_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_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_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_friend_status_max_fieldsGenqlSelection{ +export interface e_map_pool_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42393,7 +45061,7 @@ export interface e_friend_status_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_friend_status_min_fieldsGenqlSelection{ +export interface e_map_pool_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42401,99 +45069,123 @@ 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_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_friend_statusGenqlSelection + returning?: e_map_pool_typesGenqlSelection __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, +/** 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_friend_status_on_conflict | null)} +on_conflict?: (e_map_pool_types_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_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_friend_status". */ -export interface e_friend_status_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_friend_status */ -export interface e_friend_status_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_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_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_friend_status" */ -export interface e_friend_status_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_friend_status_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_friend_status_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_friend_status_updates { +export interface e_map_pool_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_friend_status_set_input | null), +_set?: (e_map_pool_types_set_input | null), /** filter the rows which have to be updated */ -where: e_friend_status_bool_exp} +where: e_map_pool_types_bool_exp} -/** columns and relationships of "e_game_cfg_types" */ -export interface e_game_cfg_typesGenqlSelection{ +/** 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_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_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_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_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_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_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_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_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_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_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_game_cfg_types_max_fieldsGenqlSelection{ +export interface e_match_clip_visibility_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42502,7 +45194,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_clip_visibility_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42510,93 +45202,117 @@ 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_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_game_cfg_typesGenqlSelection + returning?: e_match_clip_visibilityGenqlSelection __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)} +/** 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_game_cfg_types". */ -export interface e_game_cfg_types_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_game_cfg_types */ -export interface e_game_cfg_types_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_game_cfg_types" */ -export interface e_game_cfg_types_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_game_cfg_types" */ -export interface e_game_cfg_types_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_game_cfg_types_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_game_cfg_types_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_game_cfg_types_updates { +export interface e_match_clip_visibility_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_game_cfg_types_set_input | null), +_set?: (e_match_clip_visibility_set_input | null), /** filter the rows which have to be updated */ -where: e_game_cfg_types_bool_exp} +where: e_match_clip_visibility_bool_exp} -/** columns and relationships of "e_game_server_node_statuses" */ -export interface e_game_server_node_statusesGenqlSelection{ +/** 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_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_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_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_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_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_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_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_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_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_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_game_server_node_statuses_max_fieldsGenqlSelection{ +export interface e_match_map_status_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42605,7 +45321,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_map_status_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42613,59 +45329,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_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_game_server_node_statusesGenqlSelection + returning?: e_match_map_statusGenqlSelection __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_map_status" */ +export interface e_match_map_status_obj_rel_insert_input {data: e_match_map_status_insert_input, /** upsert condition */ -on_conflict?: (e_game_server_node_statuses_on_conflict | null)} +on_conflict?: (e_match_map_status_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_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_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_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_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_map_status */ +export interface e_match_map_status_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_map_status" */ +export interface e_match_map_status_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_map_status" */ +export interface e_match_map_status_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_game_server_node_statuses_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_game_server_node_statuses_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_game_server_node_statuses_updates { +export interface e_match_map_status_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_game_server_node_statuses_set_input | null), +_set?: (e_match_map_status_set_input | null), /** filter the rows which have to be updated */ -where: e_game_server_node_statuses_bool_exp} +where: e_match_map_status_bool_exp} -/** columns and relationships of "e_league_movement_types" */ -export interface e_league_movement_typesGenqlSelection{ +/** columns and relationships of "e_match_mode" */ +export interface e_match_modeGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42673,39 +45389,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_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_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_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_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_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_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_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_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_match_mode" */ +export interface e_match_mode_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_match_mode_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42714,7 +45430,7 @@ export interface e_league_movement_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_league_movement_types_min_fieldsGenqlSelection{ +export interface e_match_mode_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42722,99 +45438,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_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_league_movement_typesGenqlSelection + returning?: e_match_modeGenqlSelection __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_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_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_match_mode". */ +export interface e_match_mode_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_match_mode */ +export interface e_match_mode_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_match_mode" */ +export interface e_match_mode_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_match_mode" */ +export interface e_match_mode_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_league_movement_types_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_league_movement_types_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_league_movement_types_updates { +export interface e_match_mode_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_league_movement_types_set_input | null), +_set?: (e_match_mode_set_input | null), /** filter the rows which have to be updated */ -where: e_league_movement_types_bool_exp} +where: e_match_mode_bool_exp} -/** columns and relationships of "e_league_proposal_statuses" */ -export interface e_league_proposal_statusesGenqlSelection{ +/** columns and relationships of "e_match_party_sources" */ +export interface e_match_party_sourcesGenqlSelection{ description?: boolean | number + /** An array relationship */ + match_lineup_players?: (match_lineup_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_lineup_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?: (match_lineup_players_order_by[] | null), + /** filter the rows returned */ + where?: (match_lineup_players_bool_exp | null)} }) + /** An aggregate relationship */ + match_lineup_players_aggregate?: (match_lineup_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_lineup_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?: (match_lineup_players_order_by[] | null), + /** filter the rows returned */ + where?: (match_lineup_players_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_match_party_sources" */ +export interface e_match_party_sources_aggregateGenqlSelection{ + aggregate?: e_match_party_sources_aggregate_fieldsGenqlSelection + nodes?: e_match_party_sourcesGenqlSelection __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_match_party_sources" */ +export interface e_match_party_sources_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_match_party_sources_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_match_party_sources_max_fieldsGenqlSelection + min?: e_match_party_sources_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_match_party_sources". All fields are combined with a logical 'AND'. */ +export interface e_match_party_sources_bool_exp {_and?: (e_match_party_sources_bool_exp[] | null),_not?: (e_match_party_sources_bool_exp | null),_or?: (e_match_party_sources_bool_exp[] | null),description?: (String_comparison_exp | null),match_lineup_players?: (match_lineup_players_bool_exp | null),match_lineup_players_aggregate?: (match_lineup_players_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_match_party_sources_enum". All fields are combined with logical 'AND'. */ +export interface e_match_party_sources_enum_comparison_exp {_eq?: (e_match_party_sources_enum | null),_in?: (e_match_party_sources_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_match_party_sources_enum | null),_nin?: (e_match_party_sources_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_match_party_sources" */ +export interface e_match_party_sources_insert_input {description?: (Scalars['String'] | null),match_lineup_players?: (match_lineup_players_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_league_proposal_statuses_max_fieldsGenqlSelection{ +export interface e_match_party_sources_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42823,7 +45557,7 @@ export interface e_league_proposal_statuses_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_league_proposal_statuses_min_fieldsGenqlSelection{ +export interface e_match_party_sources_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42831,99 +45565,117 @@ 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_match_party_sources" */ +export interface e_match_party_sources_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_match_party_sourcesGenqlSelection __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_match_party_sources" */ +export interface e_match_party_sources_on_conflict {constraint: e_match_party_sources_constraint,update_columns?: e_match_party_sources_update_column[],where?: (e_match_party_sources_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_match_party_sources". */ +export interface e_match_party_sources_order_by {description?: (order_by | null),match_lineup_players_aggregate?: (match_lineup_players_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_match_party_sources */ +export interface e_match_party_sources_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_match_party_sources" */ +export interface e_match_party_sources_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_match_party_sources" */ +export interface e_match_party_sources_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_league_proposal_statuses_stream_cursor_value_input, +initial_value: e_match_party_sources_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_match_party_sources_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_league_proposal_statuses_updates { +export interface e_match_party_sources_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_league_proposal_statuses_set_input | null), +_set?: (e_match_party_sources_set_input | null), /** filter the rows which have to be updated */ -where: e_league_proposal_statuses_bool_exp} +where: e_match_party_sources_bool_exp} -/** columns and relationships of "e_league_registration_statuses" */ -export interface e_league_registration_statusesGenqlSelection{ +/** 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_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_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_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_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_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_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_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_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_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_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_league_registration_statuses_max_fieldsGenqlSelection{ +export interface e_match_status_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42932,7 +45684,7 @@ export interface e_league_registration_statuses_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_league_registration_statuses_min_fieldsGenqlSelection{ +export interface e_match_status_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -42940,99 +45692,123 @@ 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_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_league_registration_statusesGenqlSelection + returning?: e_match_statusGenqlSelection __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, +/** 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_league_registration_statuses_on_conflict | null)} +on_conflict?: (e_match_status_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_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)} -/** 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_match_status". */ +export interface e_match_status_order_by {description?: (order_by | null),matches_aggregate?: (matches_aggregate_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_match_status */ +export interface e_match_status_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_match_status" */ +export interface e_match_status_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_match_status" */ +export interface e_match_status_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_league_registration_statuses_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_league_registration_statuses_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_league_registration_statuses_updates { +export interface e_match_status_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_league_registration_statuses_set_input | null), +_set?: (e_match_status_set_input | null), /** filter the rows which have to be updated */ -where: e_league_registration_statuses_bool_exp} +where: e_match_status_bool_exp} -/** columns and relationships of "e_league_season_statuses" */ -export interface e_league_season_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_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_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_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_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_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_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_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_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_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_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_league_season_statuses_max_fieldsGenqlSelection{ +export interface e_match_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43041,7 +45817,7 @@ export interface e_league_season_statuses_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_league_season_statuses_min_fieldsGenqlSelection{ +export interface e_match_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43049,59 +45825,59 @@ 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_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_league_season_statusesGenqlSelection + returning?: e_match_typesGenqlSelection __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, +/** 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_league_season_statuses_on_conflict | null)} +on_conflict?: (e_match_types_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_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_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_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_league_season_statuses */ -export interface e_league_season_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_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_match_types" */ +export interface e_match_types_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_match_types" */ +export interface e_match_types_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_league_season_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_league_season_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_league_season_statuses_updates { +export interface e_match_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_league_season_statuses_set_input | null), +_set?: (e_match_types_set_input | null), /** filter the rows which have to be updated */ -where: e_league_season_statuses_bool_exp} +where: e_match_types_bool_exp} -/** columns and relationships of "e_lobby_access" */ -export interface e_lobby_accessGenqlSelection{ +/** columns and relationships of "e_notification_types" */ +export interface e_notification_typesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43109,39 +45885,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_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_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_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_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_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_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_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_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_notification_types" */ +export interface e_notification_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_lobby_access_max_fieldsGenqlSelection{ +export interface e_notification_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43150,7 +45926,7 @@ export interface e_lobby_access_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_lobby_access_min_fieldsGenqlSelection{ +export interface e_notification_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43158,99 +45934,117 @@ 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_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_lobby_accessGenqlSelection + returning?: e_notification_typesGenqlSelection __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_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_lobby_access". */ -export interface e_lobby_access_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_lobby_access */ -export interface e_lobby_access_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_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_notification_types" */ +export interface e_notification_types_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_notification_types" */ +export interface e_notification_types_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_lobby_access_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_lobby_access_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_lobby_access_updates { +export interface e_notification_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_lobby_access_set_input | null), +_set?: (e_notification_types_set_input | null), /** filter the rows which have to be updated */ -where: e_lobby_access_bool_exp} +where: e_notification_types_bool_exp} -/** columns and relationships of "e_lobby_player_status" */ -export interface e_lobby_player_statusGenqlSelection{ +/** 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_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_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_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_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_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_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_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_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_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_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_lobby_player_status_max_fieldsGenqlSelection{ +export interface e_objective_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43259,7 +46053,7 @@ export interface e_lobby_player_status_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_lobby_player_status_min_fieldsGenqlSelection{ +export interface e_objective_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43267,53 +46061,53 @@ 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_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_lobby_player_statusGenqlSelection + returning?: e_objective_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)} +/** 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_lobby_player_status". */ -export interface e_lobby_player_status_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_lobby_player_status */ -export interface e_lobby_player_status_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_lobby_player_status" */ -export interface e_lobby_player_status_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_lobby_player_status" */ -export interface e_lobby_player_status_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_lobby_player_status_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_lobby_player_status_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_lobby_player_status_updates { +export interface e_objective_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_lobby_player_status_set_input | null), +_set?: (e_objective_types_set_input | null), /** filter the rows which have to be updated */ -where: e_lobby_player_status_bool_exp} +where: e_objective_types_bool_exp} -/** columns and relationships of "e_map_pool_types" */ -export interface e_map_pool_typesGenqlSelection{ +/** columns and relationships of "e_player_roles" */ +export interface e_player_rolesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43321,39 +46115,39 @@ export interface e_map_pool_typesGenqlSelection{ } -/** 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_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_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_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_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_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_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_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_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_player_roles" */ +export interface e_player_roles_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_map_pool_types_max_fieldsGenqlSelection{ +export interface e_player_roles_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43362,7 +46156,7 @@ export interface e_map_pool_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_map_pool_types_min_fieldsGenqlSelection{ +export interface e_player_roles_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43370,123 +46164,93 @@ 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_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_map_pool_typesGenqlSelection + returning?: e_player_rolesGenqlSelection __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_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_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_player_roles". */ +export interface e_player_roles_order_by {description?: (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_player_roles */ +export interface e_player_roles_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_player_roles" */ +export interface e_player_roles_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_player_roles" */ +export interface e_player_roles_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_map_pool_types_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_map_pool_types_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_map_pool_types_updates { +export interface e_player_roles_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_map_pool_types_set_input | null), +_set?: (e_player_roles_set_input | null), /** filter the rows which have to be updated */ -where: e_map_pool_types_bool_exp} +where: e_player_roles_bool_exp} -/** columns and relationships of "e_match_clip_visibility" */ -export interface e_match_clip_visibilityGenqlSelection{ +/** columns and relationships of "e_plugin_runtimes" */ +export interface e_plugin_runtimesGenqlSelection{ 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_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_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_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_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_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_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_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_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_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_plugin_runtimes" */ +export interface e_plugin_runtimes_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_match_clip_visibility_max_fieldsGenqlSelection{ +export interface e_plugin_runtimes_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43495,7 +46259,7 @@ export interface e_match_clip_visibility_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_match_clip_visibility_min_fieldsGenqlSelection{ +export interface e_plugin_runtimes_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43503,117 +46267,93 @@ 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_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_match_clip_visibilityGenqlSelection + returning?: e_plugin_runtimesGenqlSelection __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_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_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_plugin_runtimes". */ +export interface e_plugin_runtimes_order_by {description?: (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_plugin_runtimes */ +export interface e_plugin_runtimes_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_plugin_runtimes" */ +export interface e_plugin_runtimes_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_plugin_runtimes" */ +export interface e_plugin_runtimes_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_match_clip_visibility_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_match_clip_visibility_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_match_clip_visibility_updates { +export interface e_plugin_runtimes_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_match_clip_visibility_set_input | null), +_set?: (e_plugin_runtimes_set_input | null), /** filter the rows which have to be updated */ -where: e_match_clip_visibility_bool_exp} +where: e_plugin_runtimes_bool_exp} -/** columns and relationships of "e_match_map_status" */ -export interface e_match_map_statusGenqlSelection{ +/** columns and relationships of "e_ready_settings" */ +export interface e_ready_settingsGenqlSelection{ 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_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_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_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_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_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_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_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_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_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_ready_settings" */ +export interface e_ready_settings_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_match_map_status_max_fieldsGenqlSelection{ +export interface e_ready_settings_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43622,7 +46362,7 @@ export interface e_match_map_status_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_match_map_status_min_fieldsGenqlSelection{ +export interface e_ready_settings_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43630,59 +46370,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_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_match_map_statusGenqlSelection + returning?: e_ready_settingsGenqlSelection __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_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_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_ready_settings". */ +export interface e_ready_settings_order_by {description?: (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_ready_settings */ +export interface e_ready_settings_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_ready_settings" */ +export interface e_ready_settings_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_ready_settings" */ +export interface e_ready_settings_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_match_map_status_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_match_map_status_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_match_map_status_updates { +export interface e_ready_settings_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_match_map_status_set_input | null), +_set?: (e_ready_settings_set_input | null), /** filter the rows which have to be updated */ -where: e_match_map_status_bool_exp} +where: e_ready_settings_bool_exp} -/** columns and relationships of "e_match_mode" */ -export interface e_match_modeGenqlSelection{ +/** columns and relationships of "e_sanction_types" */ +export interface e_sanction_typesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43690,39 +46424,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_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_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_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_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_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_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_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_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_sanction_types" */ +export interface e_sanction_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_sanction_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43731,7 +46465,7 @@ export interface e_match_mode_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_match_mode_min_fieldsGenqlSelection{ +export interface e_sanction_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43739,117 +46473,123 @@ 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_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_match_modeGenqlSelection + returning?: e_sanction_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)} +/** 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_match_mode". */ -export interface e_match_mode_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_match_mode */ -export interface e_match_mode_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_match_mode" */ -export interface e_match_mode_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_match_mode" */ -export interface e_match_mode_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_match_mode_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_match_mode_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_match_mode_updates { +export interface e_sanction_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_match_mode_set_input | null), +_set?: (e_sanction_types_set_input | null), /** filter the rows which have to be updated */ -where: e_match_mode_bool_exp} +where: e_sanction_types_bool_exp} -/** columns and relationships of "e_match_party_sources" */ -export interface e_match_party_sourcesGenqlSelection{ +/** columns and relationships of "e_scrim_request_statuses" */ +export interface e_scrim_request_statusesGenqlSelection{ description?: boolean | number /** An array relationship */ - match_lineup_players?: (match_lineup_playersGenqlSelection & { __args?: { + scrim_requests?: (team_scrim_requestsGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (match_lineup_players_select_column[] | null), + 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?: (match_lineup_players_order_by[] | null), + order_by?: (team_scrim_requests_order_by[] | null), /** filter the rows returned */ - where?: (match_lineup_players_bool_exp | null)} }) + where?: (team_scrim_requests_bool_exp | null)} }) /** An aggregate relationship */ - match_lineup_players_aggregate?: (match_lineup_players_aggregateGenqlSelection & { __args?: { + scrim_requests_aggregate?: (team_scrim_requests_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (match_lineup_players_select_column[] | null), + 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?: (match_lineup_players_order_by[] | null), + order_by?: (team_scrim_requests_order_by[] | null), /** filter the rows returned */ - where?: (match_lineup_players_bool_exp | null)} }) + where?: (team_scrim_requests_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_match_party_sources" */ -export interface e_match_party_sources_aggregateGenqlSelection{ - aggregate?: e_match_party_sources_aggregate_fieldsGenqlSelection - nodes?: e_match_party_sourcesGenqlSelection +/** 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_match_party_sources" */ -export interface e_match_party_sources_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_match_party_sources_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_match_party_sources_max_fieldsGenqlSelection - min?: e_match_party_sources_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_match_party_sources". All fields are combined with a logical 'AND'. */ -export interface e_match_party_sources_bool_exp {_and?: (e_match_party_sources_bool_exp[] | null),_not?: (e_match_party_sources_bool_exp | null),_or?: (e_match_party_sources_bool_exp[] | null),description?: (String_comparison_exp | null),match_lineup_players?: (match_lineup_players_bool_exp | null),match_lineup_players_aggregate?: (match_lineup_players_aggregate_bool_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_match_party_sources_enum". All fields are combined with logical 'AND'. */ -export interface e_match_party_sources_enum_comparison_exp {_eq?: (e_match_party_sources_enum | null),_in?: (e_match_party_sources_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_match_party_sources_enum | null),_nin?: (e_match_party_sources_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_match_party_sources" */ -export interface e_match_party_sources_insert_input {description?: (Scalars['String'] | null),match_lineup_players?: (match_lineup_players_arr_rel_insert_input | 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_match_party_sources_max_fieldsGenqlSelection{ +export interface e_scrim_request_statuses_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43858,7 +46598,7 @@ export interface e_match_party_sources_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_match_party_sources_min_fieldsGenqlSelection{ +export interface e_scrim_request_statuses_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43866,117 +46606,117 @@ export interface e_match_party_sources_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_match_party_sources" */ -export interface e_match_party_sources_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_match_party_sourcesGenqlSelection + returning?: e_scrim_request_statusesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_match_party_sources" */ -export interface e_match_party_sources_on_conflict {constraint: e_match_party_sources_constraint,update_columns?: e_match_party_sources_update_column[],where?: (e_match_party_sources_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_match_party_sources". */ -export interface e_match_party_sources_order_by {description?: (order_by | null),match_lineup_players_aggregate?: (match_lineup_players_aggregate_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_match_party_sources */ -export interface e_match_party_sources_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_match_party_sources" */ -export interface e_match_party_sources_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_match_party_sources" */ -export interface e_match_party_sources_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_match_party_sources_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_match_party_sources_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_match_party_sources_updates { +export interface e_scrim_request_statuses_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_match_party_sources_set_input | null), +_set?: (e_scrim_request_statuses_set_input | null), /** filter the rows which have to be updated */ -where: e_match_party_sources_bool_exp} +where: e_scrim_request_statuses_bool_exp} -/** columns and relationships of "e_match_status" */ -export interface e_match_statusGenqlSelection{ +/** columns and relationships of "e_server_types" */ +export interface e_server_typesGenqlSelection{ description?: boolean | number /** An array relationship */ - matches?: (matchesGenqlSelection & { __args?: { + servers?: (serversGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (matches_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?: (matches_order_by[] | null), + order_by?: (servers_order_by[] | null), /** filter the rows returned */ - where?: (matches_bool_exp | null)} }) + where?: (servers_bool_exp | null)} }) /** An aggregate relationship */ - matches_aggregate?: (matches_aggregateGenqlSelection & { __args?: { + servers_aggregate?: (servers_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (matches_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?: (matches_order_by[] | null), + order_by?: (servers_order_by[] | null), /** filter the rows returned */ - where?: (matches_bool_exp | null)} }) + where?: (servers_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_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_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_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_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_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_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_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_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_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_status_max_fieldsGenqlSelection{ +export interface e_server_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43985,7 +46725,7 @@ export interface e_match_status_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_match_status_min_fieldsGenqlSelection{ +export interface e_server_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -43993,123 +46733,141 @@ 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_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_statusGenqlSelection + returning?: e_server_typesGenqlSelection __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, -/** upsert condition */ -on_conflict?: (e_match_status_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_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_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_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_status */ -export interface e_match_status_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_status" */ -export interface e_match_status_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_status" */ -export interface e_match_status_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_status_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_status_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_status_updates { +export interface e_server_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_match_status_set_input | null), +_set?: (e_server_types_set_input | null), /** filter the rows which have to be updated */ -where: e_match_status_bool_exp} +where: e_server_types_bool_exp} -/** columns and relationships of "e_match_types" */ -export interface e_match_typesGenqlSelection{ +/** columns and relationships of "e_sides" */ +export interface e_sidesGenqlSelection{ description?: boolean | number /** An array relationship */ - maps?: (mapsGenqlSelection & { __args?: { + match_map_lineup_1?: (match_mapsGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (maps_select_column[] | null), + 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?: (maps_order_by[] | null), + order_by?: (match_maps_order_by[] | null), /** filter the rows returned */ - where?: (maps_bool_exp | null)} }) + where?: (match_maps_bool_exp | null)} }) /** An aggregate relationship */ - maps_aggregate?: (maps_aggregateGenqlSelection & { __args?: { + match_map_lineup_1_aggregate?: (match_maps_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (maps_select_column[] | null), + 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?: (maps_order_by[] | null), + order_by?: (match_maps_order_by[] | null), /** filter the rows returned */ - where?: (maps_bool_exp | null)} }) + 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 __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_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_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_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_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_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_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_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_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_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_types_max_fieldsGenqlSelection{ +export interface e_sides_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44118,7 +46876,7 @@ export interface e_match_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_match_types_min_fieldsGenqlSelection{ +export interface e_sides_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44126,59 +46884,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_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_typesGenqlSelection + returning?: e_sidesGenqlSelection __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_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_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_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_types */ -export interface e_match_types_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_types" */ -export interface e_match_types_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_types" */ -export interface e_match_types_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_types_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_types_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_types_updates { +export interface e_sides_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_match_types_set_input | null), +_set?: (e_sides_set_input | null), /** filter the rows which have to be updated */ -where: e_match_types_bool_exp} +where: e_sides_bool_exp} -/** columns and relationships of "e_notification_types" */ -export interface e_notification_typesGenqlSelection{ +/** columns and relationships of "e_system_alert_types" */ +export interface e_system_alert_typesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44186,39 +46938,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_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_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_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_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_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_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_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_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_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_notification_types_max_fieldsGenqlSelection{ +export interface e_system_alert_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44227,7 +46979,7 @@ export interface e_notification_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_notification_types_min_fieldsGenqlSelection{ +export interface e_system_alert_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44235,117 +46987,141 @@ 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_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_notification_typesGenqlSelection + returning?: e_system_alert_typesGenqlSelection __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_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_notification_types". */ -export interface e_notification_types_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_notification_types */ -export interface e_notification_types_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_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_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_notification_types" */ -export interface e_notification_types_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_notification_types_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_notification_types_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_notification_types_updates { +export interface e_system_alert_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_notification_types_set_input | null), +_set?: (e_system_alert_types_set_input | null), /** filter the rows which have to be updated */ -where: e_notification_types_bool_exp} +where: e_system_alert_types_bool_exp} -/** columns and relationships of "e_objective_types" */ -export interface e_objective_typesGenqlSelection{ +/** columns and relationships of "e_team_roles" */ +export interface e_team_rolesGenqlSelection{ description?: boolean | number /** An array relationship */ - player_objectives?: (player_objectivesGenqlSelection & { __args?: { + team_rosters?: (team_rosterGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (player_objectives_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?: (player_objectives_order_by[] | null), + order_by?: (team_roster_order_by[] | null), /** filter the rows returned */ - where?: (player_objectives_bool_exp | null)} }) + where?: (team_roster_bool_exp | null)} }) /** An aggregate relationship */ - player_objectives_aggregate?: (player_objectives_aggregateGenqlSelection & { __args?: { + team_rosters_aggregate?: (team_roster_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (player_objectives_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?: (player_objectives_order_by[] | null), + order_by?: (team_roster_order_by[] | null), /** filter the rows returned */ - where?: (player_objectives_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_objective_types" */ -export interface e_objective_types_aggregateGenqlSelection{ - aggregate?: e_objective_types_aggregate_fieldsGenqlSelection - nodes?: e_objective_typesGenqlSelection + +/** 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_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_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_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_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_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_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_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_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_objective_types_max_fieldsGenqlSelection{ +export interface e_team_roles_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44354,7 +47130,7 @@ export interface e_objective_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_objective_types_min_fieldsGenqlSelection{ +export interface e_team_roles_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44362,53 +47138,59 @@ 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_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_objective_typesGenqlSelection + returning?: e_team_rolesGenqlSelection __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_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)} -/** 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_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)} -/** 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_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)} -/** 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_team_roles */ +export interface e_team_roles_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_team_roles" */ +export interface e_team_roles_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | 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_objective_types_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_objective_types_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_objective_types_updates { +export interface e_team_roles_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_objective_types_set_input | null), +_set?: (e_team_roles_set_input | null), /** filter the rows which have to be updated */ -where: e_objective_types_bool_exp} +where: e_team_roles_bool_exp} -/** columns and relationships of "e_player_roles" */ -export interface e_player_rolesGenqlSelection{ +/** columns and relationships of "e_team_roster_statuses" */ +export interface e_team_roster_statusesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44416,39 +47198,39 @@ export interface e_player_rolesGenqlSelection{ } -/** 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_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_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_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_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_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_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_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_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_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_player_roles_max_fieldsGenqlSelection{ +export interface e_team_roster_statuses_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44457,7 +47239,7 @@ export interface e_player_roles_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_player_roles_min_fieldsGenqlSelection{ +export interface e_team_roster_statuses_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44465,53 +47247,53 @@ 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_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_player_rolesGenqlSelection + returning?: e_team_roster_statusesGenqlSelection __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)} +/** 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_player_roles". */ -export interface e_player_roles_order_by {description?: (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_player_roles */ -export interface e_player_roles_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_player_roles" */ -export interface e_player_roles_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_player_roles" */ -export interface e_player_roles_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_player_roles_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_player_roles_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_player_roles_updates { +export interface e_team_roster_statuses_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_player_roles_set_input | null), +_set?: (e_team_roster_statuses_set_input | null), /** filter the rows which have to be updated */ -where: e_player_roles_bool_exp} +where: e_team_roster_statuses_bool_exp} -/** columns and relationships of "e_plugin_runtimes" */ -export interface e_plugin_runtimesGenqlSelection{ +/** columns and relationships of "e_timeout_settings" */ +export interface e_timeout_settingsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44519,39 +47301,39 @@ export interface e_plugin_runtimesGenqlSelection{ } -/** 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_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_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_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_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_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_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_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_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_timeout_settings" */ +export interface e_timeout_settings_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_plugin_runtimes_max_fieldsGenqlSelection{ +export interface e_timeout_settings_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44560,7 +47342,7 @@ export interface e_plugin_runtimes_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_plugin_runtimes_min_fieldsGenqlSelection{ +export interface e_timeout_settings_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44568,93 +47350,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_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_plugin_runtimesGenqlSelection + returning?: e_timeout_settingsGenqlSelection __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_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_plugin_runtimes". */ -export interface e_plugin_runtimes_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_plugin_runtimes */ -export interface e_plugin_runtimes_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_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_timeout_settings" */ +export interface e_timeout_settings_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_timeout_settings" */ +export interface e_timeout_settings_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_plugin_runtimes_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_plugin_runtimes_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_plugin_runtimes_updates { +export interface e_timeout_settings_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_plugin_runtimes_set_input | null), +_set?: (e_timeout_settings_set_input | null), /** filter the rows which have to be updated */ -where: e_plugin_runtimes_bool_exp} +where: e_timeout_settings_bool_exp} -/** columns and relationships of "e_ready_settings" */ -export interface e_ready_settingsGenqlSelection{ +/** columns and relationships of "e_tournament_categories" */ +export interface e_tournament_categoriesGenqlSelection{ description?: boolean | number + /** An array relationship */ + tournament_categories?: (tournament_categoriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_categories_aggregate?: (tournament_categories_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_ready_settings" */ -export interface e_ready_settings_aggregateGenqlSelection{ - aggregate?: e_ready_settings_aggregate_fieldsGenqlSelection - nodes?: e_ready_settingsGenqlSelection +/** aggregated selection of "e_tournament_categories" */ +export interface e_tournament_categories_aggregateGenqlSelection{ + aggregate?: e_tournament_categories_aggregate_fieldsGenqlSelection + nodes?: e_tournament_categoriesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_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_tournament_categories" */ +export interface e_tournament_categories_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_tournament_categories_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_tournament_categories_max_fieldsGenqlSelection + min?: e_tournament_categories_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_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_tournament_categories". All fields are combined with a logical 'AND'. */ +export interface e_tournament_categories_bool_exp {_and?: (e_tournament_categories_bool_exp[] | null),_not?: (e_tournament_categories_bool_exp | null),_or?: (e_tournament_categories_bool_exp[] | null),description?: (String_comparison_exp | null),tournament_categories?: (tournament_categories_bool_exp | null),tournament_categories_aggregate?: (tournament_categories_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_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_tournament_categories_enum". All fields are combined with logical 'AND'. */ +export interface e_tournament_categories_enum_comparison_exp {_eq?: (e_tournament_categories_enum | null),_in?: (e_tournament_categories_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_tournament_categories_enum | null),_nin?: (e_tournament_categories_enum[] | null)} -/** input type for inserting data into table "e_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_tournament_categories" */ +export interface e_tournament_categories_insert_input {description?: (Scalars['String'] | null),tournament_categories?: (tournament_categories_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_ready_settings_max_fieldsGenqlSelection{ +export interface e_tournament_categories_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44663,7 +47469,7 @@ export interface e_ready_settings_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_ready_settings_min_fieldsGenqlSelection{ +export interface e_tournament_categories_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44671,93 +47477,123 @@ 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_tournament_categories" */ +export interface e_tournament_categories_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_ready_settingsGenqlSelection + returning?: e_tournament_categoriesGenqlSelection __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)} +/** input type for inserting object relation for remote table "e_tournament_categories" */ +export interface e_tournament_categories_obj_rel_insert_input {data: e_tournament_categories_insert_input, +/** upsert condition */ +on_conflict?: (e_tournament_categories_on_conflict | null)} -/** Ordering options when selecting data from "e_ready_settings". */ -export interface e_ready_settings_order_by {description?: (order_by | null),value?: (order_by | null)} +/** on_conflict condition type for table "e_tournament_categories" */ +export interface e_tournament_categories_on_conflict {constraint: e_tournament_categories_constraint,update_columns?: e_tournament_categories_update_column[],where?: (e_tournament_categories_bool_exp | null)} -/** primary key columns input for table: e_ready_settings */ -export interface e_ready_settings_pk_columns_input {value: Scalars['String']} +/** Ordering options when selecting data from "e_tournament_categories". */ +export interface e_tournament_categories_order_by {description?: (order_by | null),tournament_categories_aggregate?: (tournament_categories_aggregate_order_by | null),value?: (order_by | null)} -/** 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)} +/** primary key columns input for table: e_tournament_categories */ +export interface e_tournament_categories_pk_columns_input {value: Scalars['String']} -/** Streaming cursor of the table "e_ready_settings" */ -export interface e_ready_settings_stream_cursor_input { +/** input type for updating data in table "e_tournament_categories" */ +export interface e_tournament_categories_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_tournament_categories" */ +export interface e_tournament_categories_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_ready_settings_stream_cursor_value_input, +initial_value: e_tournament_categories_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_ready_settings_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_tournament_categories_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_ready_settings_updates { +export interface e_tournament_categories_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_ready_settings_set_input | null), +_set?: (e_tournament_categories_set_input | null), /** filter the rows which have to be updated */ -where: e_ready_settings_bool_exp} +where: e_tournament_categories_bool_exp} -/** columns and relationships of "e_sanction_types" */ -export interface e_sanction_typesGenqlSelection{ +/** 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 __typename?: boolean | number __scalar?: boolean | number } -/** 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_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_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_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_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_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_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_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_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_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_sanction_types_max_fieldsGenqlSelection{ +export interface e_tournament_stage_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44766,7 +47602,7 @@ export interface e_sanction_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_sanction_types_min_fieldsGenqlSelection{ +export interface e_tournament_stage_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44774,123 +47610,123 @@ 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_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_sanction_typesGenqlSelection + returning?: e_tournament_stage_typesGenqlSelection __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, +/** 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_sanction_types_on_conflict | null)} +on_conflict?: (e_tournament_stage_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_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)} -/** 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_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)} -/** 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_tournament_stage_types */ +export interface e_tournament_stage_types_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_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_sanction_types" */ -export interface e_sanction_types_stream_cursor_input { +/** 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_sanction_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_sanction_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_sanction_types_updates { +export interface e_tournament_stage_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_sanction_types_set_input | null), +_set?: (e_tournament_stage_types_set_input | null), /** filter the rows which have to be updated */ -where: e_sanction_types_bool_exp} +where: e_tournament_stage_types_bool_exp} -/** columns and relationships of "e_scrim_request_statuses" */ -export interface e_scrim_request_statusesGenqlSelection{ +/** columns and relationships of "e_tournament_status" */ +export interface e_tournament_statusGenqlSelection{ description?: boolean | number /** An array relationship */ - scrim_requests?: (team_scrim_requestsGenqlSelection & { __args?: { + tournaments?: (tournamentsGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (team_scrim_requests_select_column[] | null), + 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?: (team_scrim_requests_order_by[] | null), + order_by?: (tournaments_order_by[] | null), /** filter the rows returned */ - where?: (team_scrim_requests_bool_exp | null)} }) + where?: (tournaments_bool_exp | null)} }) /** An aggregate relationship */ - scrim_requests_aggregate?: (team_scrim_requests_aggregateGenqlSelection & { __args?: { + tournaments_aggregate?: (tournaments_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (team_scrim_requests_select_column[] | null), + 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?: (team_scrim_requests_order_by[] | null), + order_by?: (tournaments_order_by[] | null), /** filter the rows returned */ - where?: (team_scrim_requests_bool_exp | null)} }) + where?: (tournaments_bool_exp | null)} }) value?: 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 "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_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 "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_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 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_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 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_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 "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_scrim_request_statuses_max_fieldsGenqlSelection{ +export interface e_tournament_status_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44899,7 +47735,7 @@ export interface e_scrim_request_statuses_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_scrim_request_statuses_min_fieldsGenqlSelection{ +export interface e_tournament_status_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -44907,117 +47743,123 @@ export interface e_scrim_request_statuses_min_fieldsGenqlSelection{ } -/** 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 "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_scrim_request_statusesGenqlSelection + returning?: e_tournament_statusGenqlSelection __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)} +/** 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_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)} +/** 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_scrim_request_statuses */ -export interface e_scrim_request_statuses_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_scrim_request_statuses" */ -export interface e_scrim_request_statuses_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_scrim_request_statuses" */ -export interface e_scrim_request_statuses_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_scrim_request_statuses_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_scrim_request_statuses_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_scrim_request_statuses_updates { +export interface e_tournament_status_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_scrim_request_statuses_set_input | null), +_set?: (e_tournament_status_set_input | null), /** filter the rows which have to be updated */ -where: e_scrim_request_statuses_bool_exp} +where: e_tournament_status_bool_exp} -/** columns and relationships of "e_server_types" */ -export interface e_server_typesGenqlSelection{ +/** columns and relationships of "e_utility_types" */ +export interface e_utility_typesGenqlSelection{ description?: boolean | number /** An array relationship */ - servers?: (serversGenqlSelection & { __args?: { + player_utilities?: (player_utilityGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (servers_select_column[] | null), + 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?: (servers_order_by[] | null), + order_by?: (player_utility_order_by[] | null), /** filter the rows returned */ - where?: (servers_bool_exp | null)} }) + where?: (player_utility_bool_exp | null)} }) /** An aggregate relationship */ - servers_aggregate?: (servers_aggregateGenqlSelection & { __args?: { + player_utilities_aggregate?: (player_utility_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (servers_select_column[] | null), + 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?: (servers_order_by[] | null), + order_by?: (player_utility_order_by[] | null), /** filter the rows returned */ - where?: (servers_bool_exp | null)} }) + where?: (player_utility_bool_exp | null)} }) value?: 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 "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_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 +/** 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_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 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_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)} +/** 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_server_types" */ -export interface e_server_types_insert_input {description?: (Scalars['String'] | null),servers?: (servers_arr_rel_insert_input | 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_server_types_max_fieldsGenqlSelection{ +export interface e_utility_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -45026,7 +47868,7 @@ export interface e_server_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_server_types_min_fieldsGenqlSelection{ +export interface e_utility_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -45034,141 +47876,117 @@ export interface e_server_types_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_server_types" */ -export interface e_server_types_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_server_typesGenqlSelection + returning?: e_utility_typesGenqlSelection __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)} +/** 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_server_types". */ -export interface e_server_types_order_by {description?: (order_by | null),servers_aggregate?: (servers_aggregate_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_server_types */ -export interface e_server_types_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_server_types" */ -export interface e_server_types_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_server_types" */ -export interface e_server_types_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_server_types_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_server_types_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_server_types_updates { +export interface e_utility_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_server_types_set_input | null), +_set?: (e_utility_types_set_input | null), /** filter the rows which have to be updated */ -where: e_server_types_bool_exp} +where: e_utility_types_bool_exp} -/** columns and relationships of "e_sides" */ -export interface e_sidesGenqlSelection{ +/** columns and relationships of "e_veto_pick_types" */ +export interface e_veto_pick_typesGenqlSelection{ 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?: { + match_veto_picks?: (match_map_veto_picksGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (match_maps_select_column[] | null), + 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_maps_order_by[] | null), + order_by?: (match_map_veto_picks_order_by[] | null), /** filter the rows returned */ - where?: (match_maps_bool_exp | null)} }) + where?: (match_map_veto_picks_bool_exp | null)} }) /** An aggregate relationship */ - match_map_lineup_2_aggregate?: (match_maps_aggregateGenqlSelection & { __args?: { + match_veto_picks_aggregate?: (match_map_veto_picks_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (match_maps_select_column[] | null), + 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_maps_order_by[] | null), + order_by?: (match_map_veto_picks_order_by[] | null), /** filter the rows returned */ - where?: (match_maps_bool_exp | null)} }) + where?: (match_map_veto_picks_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_sides" */ -export interface e_sides_aggregateGenqlSelection{ - aggregate?: e_sides_aggregate_fieldsGenqlSelection - nodes?: e_sidesGenqlSelection +/** 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_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 +/** 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_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 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_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 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_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 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_sides_max_fieldsGenqlSelection{ +export interface e_veto_pick_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -45177,7 +47995,7 @@ export interface e_sides_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_sides_min_fieldsGenqlSelection{ +export interface e_veto_pick_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -45185,53 +48003,53 @@ export interface e_sides_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_sides" */ -export interface e_sides_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_sidesGenqlSelection + returning?: e_veto_pick_typesGenqlSelection __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 "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_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 "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_sides */ -export interface e_sides_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_sides" */ -export interface e_sides_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_sides" */ -export interface e_sides_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_sides_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_sides_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_sides_updates { +export interface e_veto_pick_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_sides_set_input | null), +_set?: (e_veto_pick_types_set_input | null), /** filter the rows which have to be updated */ -where: e_sides_bool_exp} +where: e_veto_pick_types_bool_exp} -/** columns and relationships of "e_system_alert_types" */ -export interface e_system_alert_typesGenqlSelection{ +/** columns and relationships of "e_winning_reasons" */ +export interface e_winning_reasonsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -45239,39 +48057,39 @@ export interface e_system_alert_typesGenqlSelection{ } -/** 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 +/** 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_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 +/** 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_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 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_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)} +/** 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_system_alert_types" */ -export interface e_system_alert_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_system_alert_types_max_fieldsGenqlSelection{ +export interface e_winning_reasons_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -45280,7 +48098,7 @@ export interface e_system_alert_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_system_alert_types_min_fieldsGenqlSelection{ +export interface e_winning_reasons_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -45288,3115 +48106,3348 @@ export interface e_system_alert_types_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_system_alert_types" */ -export interface e_system_alert_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_system_alert_typesGenqlSelection + returning?: e_winning_reasonsGenqlSelection __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)} +/** 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_system_alert_types". */ -export interface e_system_alert_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_system_alert_types */ -export interface e_system_alert_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_system_alert_types" */ -export interface e_system_alert_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_system_alert_types" */ -export interface e_system_alert_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_system_alert_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_system_alert_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_system_alert_types_updates { +export interface e_winning_reasons_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_system_alert_types_set_input | null), +_set?: (e_winning_reasons_set_input | null), /** filter the rows which have to be updated */ -where: e_system_alert_types_bool_exp} +where: e_winning_reasons_bool_exp} -/** 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 +/** 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_team_roles" */ -export interface e_team_roles_aggregateGenqlSelection{ - aggregate?: e_team_roles_aggregate_fieldsGenqlSelection - nodes?: e_team_rolesGenqlSelection +/** 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_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 +/** 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_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_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)} +/** 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_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)} +/** 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_team_roles_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_team_roles_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_team_roles" */ -export interface e_team_roles_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_team_rolesGenqlSelection + returning?: event_match_linksGenqlSelection __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)} - - -/** 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)} +/** 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_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)} +/** 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_team_roles */ -export interface e_team_roles_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_team_roles" */ -export interface e_team_roles_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_team_roles" */ -export interface e_team_roles_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_team_roles_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_team_roles_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_team_roles_updates { +export interface event_match_links_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_team_roles_set_input | null), +_set?: (event_match_links_set_input | null), /** filter the rows which have to be updated */ -where: e_team_roles_bool_exp} +where: event_match_links_bool_exp} -/** columns and relationships of "e_team_roster_statuses" */ -export interface e_team_roster_statusesGenqlSelection{ - description?: boolean | number - value?: 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 */ + 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)} }) + /** An aggregate relationship */ + 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)} }) + 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 "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)} + +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 } -/** 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 -} +/** 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)} -/** 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 +/** 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)} + + +/** aggregate avg on columns */ +export interface event_media_avg_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_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)} +/** 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 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)} +/** 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 inserting data into table "e_team_roster_statuses" */ -export interface e_team_roster_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | 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_team_roster_statuses_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_team_roster_statuses_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_team_roster_statuses" */ -export interface e_team_roster_statuses_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_team_roster_statusesGenqlSelection + returning?: event_mediaGenqlSelection __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)} - +/** 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_team_roster_statuses */ -export interface e_team_roster_statuses_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_team_roster_statuses" */ -export interface e_team_roster_statuses_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_team_roster_statuses" */ -export interface e_team_roster_statuses_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_team_roster_statuses_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_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} +/** 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_timeout_settings" */ -export interface e_timeout_settingsGenqlSelection{ - description?: boolean | number - 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_timeout_settings" */ -export interface e_timeout_settings_aggregateGenqlSelection{ - aggregate?: e_timeout_settings_aggregate_fieldsGenqlSelection - nodes?: e_timeout_settingsGenqlSelection +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_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 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_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 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_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)} +/** 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_timeout_settings" */ -export interface e_timeout_settings_insert_input {description?: (Scalars['String'] | 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_timeout_settings_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_timeout_settings_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_timeout_settings" */ -export interface e_timeout_settings_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_timeout_settingsGenqlSelection + returning?: event_media_playersGenqlSelection __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)} - +/** 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_timeout_settings". */ -export interface e_timeout_settings_order_by {description?: (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_timeout_settings */ -export interface e_timeout_settings_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_timeout_settings" */ -export interface e_timeout_settings_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_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)} +/** aggregate stddev on columns */ +export interface event_media_players_stddev_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_timeout_settings_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | 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} +/** order by stddev() on columns of table "event_media_players" */ +export interface event_media_players_stddev_order_by {steam_id?: (order_by | null)} -/** columns and relationships of "e_tournament_categories" */ -export interface e_tournament_categoriesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - tournament_categories?: (tournament_categoriesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_categories_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_categories_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_categories_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_categories_aggregate?: (tournament_categories_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_categories_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_categories_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_categories_bool_exp | null)} }) - value?: boolean | number +/** aggregate stddev_pop on columns */ +export interface event_media_players_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_tournament_categories" */ -export interface e_tournament_categories_aggregateGenqlSelection{ - aggregate?: e_tournament_categories_aggregate_fieldsGenqlSelection - nodes?: e_tournament_categoriesGenqlSelection +/** 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 } -/** aggregate fields of "e_tournament_categories" */ -export interface e_tournament_categories_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_tournament_categories_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_tournament_categories_max_fieldsGenqlSelection - min?: e_tournament_categories_min_fieldsGenqlSelection +/** 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: 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 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 } -/** Boolean expression to filter rows from the table "e_tournament_categories". All fields are combined with a logical 'AND'. */ -export interface e_tournament_categories_bool_exp {_and?: (e_tournament_categories_bool_exp[] | null),_not?: (e_tournament_categories_bool_exp | null),_or?: (e_tournament_categories_bool_exp[] | null),description?: (String_comparison_exp | null),tournament_categories?: (tournament_categories_bool_exp | null),tournament_categories_aggregate?: (tournament_categories_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** 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?: (event_media_players_set_input | null), +/** filter the rows which have to be updated */ +where: event_media_players_bool_exp} -/** Boolean expression to compare columns of type "e_tournament_categories_enum". All fields are combined with logical 'AND'. */ -export interface e_tournament_categories_enum_comparison_exp {_eq?: (e_tournament_categories_enum | null),_in?: (e_tournament_categories_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_tournament_categories_enum | null),_nin?: (e_tournament_categories_enum[] | null)} +/** aggregate var_pop on columns */ +export interface event_media_players_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** input type for inserting data into table "e_tournament_categories" */ -export interface e_tournament_categories_insert_input {description?: (Scalars['String'] | null),tournament_categories?: (tournament_categories_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** 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 max on columns */ -export interface e_tournament_categories_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number + +/** aggregate var_samp on columns */ +export interface event_media_players_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate min on columns */ -export interface e_tournament_categories_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** 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 } -/** response of any mutation on the table "e_tournament_categories" */ -export interface e_tournament_categories_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_tournament_categoriesGenqlSelection +/** 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 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 stddev on columns */ +export interface event_media_stddev_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_tournament_categories" */ -export interface e_tournament_categories_obj_rel_insert_input {data: e_tournament_categories_insert_input, -/** upsert condition */ -on_conflict?: (e_tournament_categories_on_conflict | null)} +/** 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)} -/** on_conflict condition type for table "e_tournament_categories" */ -export interface e_tournament_categories_on_conflict {constraint: e_tournament_categories_constraint,update_columns?: e_tournament_categories_update_column[],where?: (e_tournament_categories_bool_exp | null)} +/** 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 +} -/** Ordering options when selecting data from "e_tournament_categories". */ -export interface e_tournament_categories_order_by {description?: (order_by | null),tournament_categories_aggregate?: (tournament_categories_aggregate_order_by | null),value?: (order_by | null)} +/** 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_tournament_categories */ -export interface e_tournament_categories_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_tournament_categories" */ -export interface e_tournament_categories_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_tournament_categories" */ -export interface e_tournament_categories_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_tournament_categories_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_tournament_categories_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_tournament_categories_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_tournament_categories_set_input | null), -/** filter the rows which have to be updated */ -where: e_tournament_categories_bool_exp} +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_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 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_tournament_stage_types" */ -export interface e_tournament_stage_types_aggregateGenqlSelection{ - aggregate?: e_tournament_stage_types_aggregate_fieldsGenqlSelection - nodes?: e_tournament_stage_typesGenqlSelection +/** 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_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 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_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)} +/** 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_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)} +/** 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_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)} +/** 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_tournament_stage_types_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_tournament_stage_types_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_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 +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_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 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_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)} +/** 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_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)} +/** 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_tournament_stage_types */ -export interface e_tournament_stage_types_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_tournament_stage_types" */ -export interface e_tournament_stage_types_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_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)} +/** 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_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} +/** 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_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 +/** 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_tournament_status" */ -export interface e_tournament_status_aggregateGenqlSelection{ - aggregate?: e_tournament_status_aggregate_fieldsGenqlSelection - nodes?: e_tournament_statusGenqlSelection +/** 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_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 +/** 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_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)} +/** 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_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)} +/** 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_tournament_status" */ -export interface e_tournament_status_insert_input {description?: (Scalars['String'] | null),tournaments?: (tournaments_arr_rel_insert_input | 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_tournament_status_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_tournament_status_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_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_tournament_statusGenqlSelection +/** 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 } -/** 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 "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)} +/** 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_tournament_status */ -export interface e_tournament_status_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_tournament_status" */ -export interface e_tournament_status_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_tournament_status" */ -export interface e_tournament_status_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_tournament_status_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_tournament_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_tournament_status_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_tournament_status_set_input | null), -/** filter the rows which have to be updated */ -where: e_tournament_status_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_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 +/** aggregate sum on columns */ +export interface event_organizers_sum_fieldsGenqlSelection{ + steam_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 - __typename?: boolean | number - __scalar?: boolean | number -} +/** 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 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 + +/** aggregate var_pop on columns */ +export interface event_organizers_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number __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 var_pop() on columns of table "event_organizers" */ +export interface event_organizers_var_pop_order_by {steam_id?: (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)} +/** aggregate var_samp on columns */ +export interface event_organizers_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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)} +/** order by var_samp() on columns of table "event_organizers" */ +export interface event_organizers_var_samp_order_by {steam_id?: (order_by | null)} -/** aggregate max on columns */ -export interface e_utility_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregate variance on columns */ +export interface event_organizers_variance_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate min on columns */ -export interface e_utility_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** order by variance() on columns of table "event_organizers" */ +export interface event_organizers_variance_order_by {steam_id?: (order_by | null)} + + +/** 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 } -/** 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_utility_typesGenqlSelection +/** 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)} -/** 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_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_utility_types */ -export interface e_utility_types_pk_columns_input {value: Scalars['String']} - - -/** 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)} - +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} -/** 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_utility_types_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} +/** 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 +} -/** 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 e_utility_types_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_utility_types_set_input | null), -/** filter the rows which have to be updated */ -where: e_utility_types_bool_exp} +/** 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)} -/** 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 -} +/** 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)} -/** 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 +/** aggregate avg on columns */ +export interface event_players_avg_fieldsGenqlSelection{ + steam_id?: boolean | number __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 - __typename?: boolean | number - __scalar?: boolean | number -} +/** order by avg() on columns of table "event_players" */ +export interface event_players_avg_order_by {steam_id?: (order_by | 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 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)} -/** 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 incrementing numeric columns in table "event_players" */ +export interface event_players_inc_input {steam_id?: (Scalars['bigint'] | 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 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)} /** aggregate max on columns */ -export interface e_veto_pick_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +export interface event_players_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** 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 e_veto_pick_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +export interface event_players_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + steam_id?: 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{ +/** 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?: e_veto_pick_typesGenqlSelection + returning?: event_playersGenqlSelection __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)} - - -/** 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 "event_players" */ +export interface event_players_on_conflict {constraint: event_players_constraint,update_columns?: event_players_update_column[],where?: (event_players_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 "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)} -/** 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: event_players */ +export interface event_players_pk_columns_input {event_id: Scalars['uuid'],steam_id: Scalars['bigint']} -/** 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 "event_players" */ +export interface event_players_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | 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 event_players_stddev_fieldsGenqlSelection{ + 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 +/** 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 } -/** 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 +/** 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 } -/** 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)} +/** order by stddev_samp() on columns of table "event_players" */ +export interface event_players_stddev_samp_order_by {steam_id?: (order_by | 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 "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)} -/** 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 event_players_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} -/** aggregate max on columns */ -export interface e_winning_reasons_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregate sum on columns */ +export interface event_players_sum_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate min on columns */ -export interface e_winning_reasons_min_fieldsGenqlSelection{ - description?: boolean | number - value?: 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} -/** 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_pop on columns */ +export interface event_players_var_pop_fieldsGenqlSelection{ + 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)} - +/** order by var_pop() on columns of table "event_players" */ +export interface event_players_var_pop_order_by {steam_id?: (order_by | null)} -/** primary key columns input for table: e_winning_reasons */ -export interface e_winning_reasons_pk_columns_input {value: Scalars['String']} +/** 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_winning_reasons" */ -export interface e_winning_reasons_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_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)} +/** 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_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} +/** 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 "event_match_links" */ -export interface event_match_linksGenqlSelection{ +/** 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 */ - match?: matchesGenqlSelection - match_id?: boolean | number + team?: teamsGenqlSelection + team_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "event_match_links" */ -export interface event_match_links_aggregateGenqlSelection{ - aggregate?: event_match_links_aggregate_fieldsGenqlSelection - nodes?: event_match_linksGenqlSelection +/** 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 "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 +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 "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)} +/** 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)} -/** 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)} +/** 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)} + + +/** 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 event_match_links_max_fieldsGenqlSelection{ +export interface event_teams_max_fieldsGenqlSelection{ created_at?: boolean | number event_id?: boolean | number - match_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 event_match_links_min_fieldsGenqlSelection{ +export interface event_teams_min_fieldsGenqlSelection{ created_at?: boolean | number event_id?: boolean | number - match_id?: boolean | number + team_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "event_match_links" */ -export interface event_match_links_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?: event_match_linksGenqlSelection + returning?: event_teamsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** 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)} -/** 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)} +/** 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: event_match_links */ -export interface event_match_links_pk_columns_input {event_id: Scalars['uuid'],match_id: Scalars['uuid']} +/** 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 "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)} +/** 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 "event_match_links" */ -export interface event_match_links_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: event_match_links_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 event_match_links_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | 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 event_match_links_updates { +export interface event_teams_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (event_match_links_set_input | null), +_set?: (event_teams_set_input | null), /** filter the rows which have to be updated */ -where: event_match_links_bool_exp} +where: event_teams_bool_exp} -/** columns and relationships of "event_media" */ -export interface event_mediaGenqlSelection{ +/** columns and relationships of "event_tournaments" */ +export interface event_tournamentsGenqlSelection{ 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 */ - 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)} }) - /** An aggregate relationship */ - 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)} }) - size?: boolean | number - thumbnail_filename?: boolean | number - title?: boolean | number /** An object relationship */ - uploader?: playersGenqlSelection - uploader_steam_id?: boolean | number + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "event_media" */ -export interface event_media_aggregateGenqlSelection{ - aggregate?: event_media_aggregate_fieldsGenqlSelection - nodes?: event_mediaGenqlSelection +/** 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_media_aggregate_bool_exp {count?: (event_media_aggregate_bool_exp_count | null)} +export interface event_tournaments_aggregate_bool_exp {count?: (event_tournaments_aggregate_bool_exp_count | null)} -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} +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_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 +/** 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 } -/** 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)} +/** 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)} -/** input type for inserting array relation for remote table "event_media" */ -export interface event_media_arr_rel_insert_input {data: event_media_insert_input[], +/** 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_media_on_conflict | 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)} +on_conflict?: (event_tournaments_on_conflict | 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)} +/** 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_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)} +/** 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 event_media_max_fieldsGenqlSelection{ +export interface event_tournaments_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 + tournament_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)} +/** 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 event_media_min_fieldsGenqlSelection{ +export interface event_tournaments_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 + tournament_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** 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_media" */ -export interface event_media_mutation_responseGenqlSelection{ +/** 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?: event_mediaGenqlSelection + returning?: event_tournamentsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** 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)} -/** 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)} +/** 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)} -/** 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)} +/** primary key columns input for table: event_tournaments */ +export interface event_tournaments_pk_columns_input {event_id: Scalars['uuid'],tournament_id: Scalars['uuid']} -/** primary key columns input for table: event_media */ -export interface event_media_pk_columns_input {id: Scalars['uuid']} +/** 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)} -/** columns and relationships of "event_media_players" */ -export interface event_media_playersGenqlSelection{ - created_at?: boolean | number +/** Streaming cursor of the table "event_tournaments" */ +export interface event_tournaments_stream_cursor_input { +/** Stream column input with initial value */ +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 event_tournaments_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} + +export interface event_tournaments_updates { +/** 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} + + +/** columns and relationships of "events" */ +export interface eventsGenqlSelection{ + /** An array relationship */ + awards?: (award_recipientsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** An aggregate relationship */ + awards_aggregate?: (award_recipients_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) /** An object relationship */ - media?: event_mediaGenqlSelection - media_id?: boolean | number + 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 */ + 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)} }) + media_access?: boolean | number + /** An aggregate relationship */ + 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)} }) + name?: boolean | number /** An object relationship */ - player?: playersGenqlSelection - steam_id?: boolean | number + 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 "event_media_players" */ -export interface event_media_players_aggregateGenqlSelection{ - aggregate?: event_media_players_aggregate_fieldsGenqlSelection - nodes?: event_media_playersGenqlSelection +/** aggregated selection of "events" */ +export interface events_aggregateGenqlSelection{ + aggregate?: events_aggregate_fieldsGenqlSelection + nodes?: eventsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface event_media_players_aggregate_bool_exp {count?: (event_media_players_aggregate_bool_exp_count | null)} - -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 +/** 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 } -/** 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 +export interface events_avg_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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 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)} +/** 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),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_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 incrementing numeric columns in table "event_media_players" */ -export interface event_media_players_inc_input {steam_id?: (Scalars['bigint'] | 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 "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)} +/** input type for inserting data into table "events" */ +export interface events_insert_input {awards?: (award_recipients_arr_rel_insert_input | null),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 event_media_players_max_fieldsGenqlSelection{ +export interface events_max_fieldsGenqlSelection{ + banner_media_id?: boolean | number created_at?: boolean | number - media_id?: boolean | number - steam_id?: boolean | number + description?: 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 } -/** 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 event_media_players_min_fieldsGenqlSelection{ +export interface events_min_fieldsGenqlSelection{ + banner_media_id?: boolean | number created_at?: boolean | number - media_id?: boolean | number - steam_id?: boolean | number + description?: 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 } -/** 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{ +/** 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?: event_media_playersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 "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: 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 "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)} - - -/** 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: 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 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 -} - - -/** 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?: (event_media_players_set_input | null), -/** filter the rows which have to be updated */ -where: event_media_players_bool_exp} - - -/** aggregate var_pop on columns */ -export interface event_media_players_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number + returning?: eventsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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 -} +/** 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)} -/** 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)} +/** 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)} -/** aggregate variance on columns */ -export interface event_media_players_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** Ordering options when selecting data from "events". */ +export interface events_order_by {awards_aggregate?: (award_recipients_aggregate_order_by | null),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)} -/** order by variance() on columns of table "event_media_players" */ -export interface event_media_players_variance_order_by {steam_id?: (order_by | null)} +/** primary key columns input for table: events */ +export interface events_pk_columns_input {id: Scalars['uuid']} -/** 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)} +/** 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)} /** aggregate stddev on columns */ -export interface event_media_stddev_fieldsGenqlSelection{ - size?: boolean | number - uploader_steam_id?: boolean | number +export interface events_stddev_fieldsGenqlSelection{ + organizer_steam_id?: 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)} - - /** aggregate stddev_pop on columns */ -export interface event_media_stddev_pop_fieldsGenqlSelection{ - size?: boolean | number - uploader_steam_id?: boolean | number +export interface events_stddev_pop_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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)} - - /** aggregate stddev_samp on columns */ -export interface event_media_stddev_samp_fieldsGenqlSelection{ - size?: boolean | number - uploader_steam_id?: boolean | number +export interface events_stddev_samp_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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 "event_media" */ -export interface event_media_stream_cursor_input { +/** Streaming cursor of the table "events" */ +export interface events_stream_cursor_input { /** Stream column input with initial value */ -initial_value: event_media_stream_cursor_value_input, +initial_value: events_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -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)} +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 sum on columns */ -export interface event_media_sum_fieldsGenqlSelection{ - size?: boolean | number - uploader_steam_id?: boolean | number +export interface events_sum_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } - -/** 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 { +export interface events_updates { /** increments the numeric columns with given value of the filtered values */ -_inc?: (event_media_inc_input | null), +_inc?: (events_inc_input | null), /** sets the columns of the filtered rows to the given values */ -_set?: (event_media_set_input | null), +_set?: (events_set_input | null), /** filter the rows which have to be updated */ -where: event_media_bool_exp} +where: events_bool_exp} /** aggregate var_pop on columns */ -export interface event_media_var_pop_fieldsGenqlSelection{ - size?: boolean | number - uploader_steam_id?: boolean | number +export interface events_var_pop_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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 +export interface events_var_samp_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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)} - - /** aggregate variance on columns */ -export interface event_media_variance_fieldsGenqlSelection{ - size?: boolean | number - uploader_steam_id?: boolean | number +export interface events_variance_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** Boolean expression to compare columns of type "float8". All fields are combined with logical 'AND'. */ +export interface float8_comparison_exp {_eq?: (Scalars['float8'] | null),_gt?: (Scalars['float8'] | null),_gte?: (Scalars['float8'] | null),_in?: (Scalars['float8'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['float8'] | null),_lte?: (Scalars['float8'] | null),_neq?: (Scalars['float8'] | null),_nin?: (Scalars['float8'][] | null)} -/** columns and relationships of "event_organizers" */ -export interface event_organizersGenqlSelection{ - created_at?: boolean | number - /** An object relationship */ - event?: eventsGenqlSelection - event_id?: boolean | number +/** columns and relationships of "friends" */ +export interface friendsGenqlSelection{ /** An object relationship */ - organizer?: playersGenqlSelection - steam_id?: boolean | number + e_status?: e_friend_statusGenqlSelection + other_player_steam_id?: boolean | number + player_steam_id?: boolean | number + status?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "event_organizers" */ -export interface event_organizers_aggregateGenqlSelection{ - aggregate?: event_organizers_aggregate_fieldsGenqlSelection - nodes?: event_organizersGenqlSelection +/** aggregated selection of "friends" */ +export interface friends_aggregateGenqlSelection{ + aggregate?: friends_aggregate_fieldsGenqlSelection + nodes?: friendsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface event_organizers_aggregate_bool_exp {count?: (event_organizers_aggregate_bool_exp_count | null)} - -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 +/** aggregate fields of "friends" */ +export interface friends_aggregate_fieldsGenqlSelection{ + avg?: friends_avg_fieldsGenqlSelection + count?: { __args: {columns?: (friends_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: friends_max_fieldsGenqlSelection + min?: friends_min_fieldsGenqlSelection + stddev?: friends_stddev_fieldsGenqlSelection + stddev_pop?: friends_stddev_pop_fieldsGenqlSelection + stddev_samp?: friends_stddev_samp_fieldsGenqlSelection + sum?: friends_sum_fieldsGenqlSelection + var_pop?: friends_var_pop_fieldsGenqlSelection + var_samp?: friends_var_samp_fieldsGenqlSelection + variance?: friends_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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)} - - -/** 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)} - - /** aggregate avg on columns */ -export interface event_organizers_avg_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface friends_avg_fieldsGenqlSelection{ + other_player_steam_id?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by avg() on columns of table "event_organizers" */ -export interface event_organizers_avg_order_by {steam_id?: (order_by | 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)} +/** Boolean expression to filter rows from the table "friends". All fields are combined with a logical 'AND'. */ +export interface friends_bool_exp {_and?: (friends_bool_exp[] | null),_not?: (friends_bool_exp | null),_or?: (friends_bool_exp[] | null),e_status?: (e_friend_status_bool_exp | null),other_player_steam_id?: (bigint_comparison_exp | null),player_steam_id?: (bigint_comparison_exp | null),status?: (e_friend_status_enum_comparison_exp | null)} -/** input type for incrementing numeric columns in table "event_organizers" */ -export interface event_organizers_inc_input {steam_id?: (Scalars['bigint'] | null)} +/** input type for incrementing numeric columns in table "friends" */ +export interface friends_inc_input {other_player_steam_id?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null)} -/** 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)} +/** input type for inserting data into table "friends" */ +export interface friends_insert_input {e_status?: (e_friend_status_obj_rel_insert_input | null),other_player_steam_id?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),status?: (e_friend_status_enum | null)} /** aggregate max on columns */ -export interface event_organizers_max_fieldsGenqlSelection{ - created_at?: boolean | number - event_id?: boolean | number - steam_id?: boolean | number +export interface friends_max_fieldsGenqlSelection{ + other_player_steam_id?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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 +export interface friends_min_fieldsGenqlSelection{ + other_player_steam_id?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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{ +/** response of any mutation on the table "friends" */ +export interface friends_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: event_organizersGenqlSelection + returning?: friendsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** on_conflict condition type for table "friends" */ +export interface friends_on_conflict {constraint: friends_constraint,update_columns?: friends_update_column[],where?: (friends_bool_exp | 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)} +/** Ordering options when selecting data from "friends". */ +export interface friends_order_by {e_status?: (e_friend_status_order_by | null),other_player_steam_id?: (order_by | null),player_steam_id?: (order_by | null),status?: (order_by | null)} -/** primary key columns input for table: event_organizers */ -export interface event_organizers_pk_columns_input {event_id: Scalars['uuid'],steam_id: Scalars['bigint']} +/** primary key columns input for table: friends */ +export interface friends_pk_columns_input {other_player_steam_id: Scalars['bigint'],player_steam_id: Scalars['bigint']} -/** 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)} +/** input type for updating data in table "friends" */ +export interface friends_set_input {other_player_steam_id?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),status?: (e_friend_status_enum | null)} /** aggregate stddev on columns */ -export interface event_organizers_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface friends_stddev_fieldsGenqlSelection{ + other_player_steam_id?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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 +export interface friends_stddev_pop_fieldsGenqlSelection{ + other_player_steam_id?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_pop() on columns of table "event_organizers" */ -export interface event_organizers_stddev_pop_order_by {steam_id?: (order_by | null)} - - /** aggregate stddev_samp on columns */ -export interface event_organizers_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface friends_stddev_samp_fieldsGenqlSelection{ + other_player_steam_id?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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 "event_organizers" */ -export interface event_organizers_stream_cursor_input { +/** Streaming cursor of the table "friends" */ +export interface friends_stream_cursor_input { /** Stream column input with initial value */ -initial_value: event_organizers_stream_cursor_value_input, +initial_value: friends_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface event_organizers_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} +export interface friends_stream_cursor_value_input {other_player_steam_id?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),status?: (e_friend_status_enum | null)} /** aggregate sum on columns */ -export interface event_organizers_sum_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface friends_sum_fieldsGenqlSelection{ + other_player_steam_id?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } - -/** 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 { +export interface friends_updates { /** increments the numeric columns with given value of the filtered values */ -_inc?: (event_organizers_inc_input | null), +_inc?: (friends_inc_input | null), /** sets the columns of the filtered rows to the given values */ -_set?: (event_organizers_set_input | null), +_set?: (friends_set_input | null), /** filter the rows which have to be updated */ -where: event_organizers_bool_exp} +where: friends_bool_exp} /** aggregate var_pop on columns */ -export interface event_organizers_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface friends_var_pop_fieldsGenqlSelection{ + other_player_steam_id?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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 +export interface friends_var_samp_fieldsGenqlSelection{ + other_player_steam_id?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by var_samp() on columns of table "event_organizers" */ -export interface event_organizers_var_samp_order_by {steam_id?: (order_by | null)} - - /** aggregate variance on columns */ -export interface event_organizers_variance_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface friends_variance_fieldsGenqlSelection{ + other_player_steam_id?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by variance() on columns of table "event_organizers" */ -export interface event_organizers_variance_order_by {steam_id?: (order_by | null)} - - -/** columns and relationships of "event_players" */ -export interface event_playersGenqlSelection{ - created_at?: boolean | number +/** columns and relationships of "game_mode_plugins" */ +export interface game_mode_pluginsGenqlSelection{ + config?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number /** An object relationship */ - event?: eventsGenqlSelection - event_id?: boolean | number + game_mode?: game_modesGenqlSelection + game_mode_id?: boolean | number + load_order?: boolean | number /** An object relationship */ - player?: playersGenqlSelection - steam_id?: boolean | number + plugin?: game_pluginsGenqlSelection + plugin_slug?: boolean | number + required?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "event_players" */ -export interface event_players_aggregateGenqlSelection{ - aggregate?: event_players_aggregate_fieldsGenqlSelection - nodes?: event_playersGenqlSelection +/** aggregated selection of "game_mode_plugins" */ +export interface game_mode_plugins_aggregateGenqlSelection{ + aggregate?: game_mode_plugins_aggregate_fieldsGenqlSelection + nodes?: game_mode_pluginsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface event_players_aggregate_bool_exp {count?: (event_players_aggregate_bool_exp_count | null)} +export interface game_mode_plugins_aggregate_bool_exp {bool_and?: (game_mode_plugins_aggregate_bool_exp_bool_and | null),bool_or?: (game_mode_plugins_aggregate_bool_exp_bool_or | null),count?: (game_mode_plugins_aggregate_bool_exp_count | null)} -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} +export interface game_mode_plugins_aggregate_bool_exp_bool_and {arguments: game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (game_mode_plugins_bool_exp | null),predicate: Boolean_comparison_exp} +export interface game_mode_plugins_aggregate_bool_exp_bool_or {arguments: game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (game_mode_plugins_bool_exp | null),predicate: Boolean_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 +export interface game_mode_plugins_aggregate_bool_exp_count {arguments?: (game_mode_plugins_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (game_mode_plugins_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "game_mode_plugins" */ +export interface game_mode_plugins_aggregate_fieldsGenqlSelection{ + avg?: game_mode_plugins_avg_fieldsGenqlSelection + count?: { __args: {columns?: (game_mode_plugins_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: game_mode_plugins_max_fieldsGenqlSelection + min?: game_mode_plugins_min_fieldsGenqlSelection + stddev?: game_mode_plugins_stddev_fieldsGenqlSelection + stddev_pop?: game_mode_plugins_stddev_pop_fieldsGenqlSelection + stddev_samp?: game_mode_plugins_stddev_samp_fieldsGenqlSelection + sum?: game_mode_plugins_sum_fieldsGenqlSelection + var_pop?: game_mode_plugins_var_pop_fieldsGenqlSelection + var_samp?: game_mode_plugins_var_samp_fieldsGenqlSelection + variance?: game_mode_plugins_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** order by aggregate values of table "game_mode_plugins" */ +export interface game_mode_plugins_aggregate_order_by {avg?: (game_mode_plugins_avg_order_by | null),count?: (order_by | null),max?: (game_mode_plugins_max_order_by | null),min?: (game_mode_plugins_min_order_by | null),stddev?: (game_mode_plugins_stddev_order_by | null),stddev_pop?: (game_mode_plugins_stddev_pop_order_by | null),stddev_samp?: (game_mode_plugins_stddev_samp_order_by | null),sum?: (game_mode_plugins_sum_order_by | null),var_pop?: (game_mode_plugins_var_pop_order_by | null),var_samp?: (game_mode_plugins_var_samp_order_by | null),variance?: (game_mode_plugins_variance_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[], +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface game_mode_plugins_append_input {config?: (Scalars['jsonb'] | null)} + + +/** input type for inserting array relation for remote table "game_mode_plugins" */ +export interface game_mode_plugins_arr_rel_insert_input {data: game_mode_plugins_insert_input[], /** upsert condition */ -on_conflict?: (event_players_on_conflict | null)} +on_conflict?: (game_mode_plugins_on_conflict | null)} /** aggregate avg on columns */ -export interface event_players_avg_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface game_mode_plugins_avg_fieldsGenqlSelection{ + load_order?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by avg() on columns of table "event_players" */ -export interface event_players_avg_order_by {steam_id?: (order_by | null)} +/** order by avg() on columns of table "game_mode_plugins" */ +export interface game_mode_plugins_avg_order_by {load_order?: (order_by | 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)} +/** Boolean expression to filter rows from the table "game_mode_plugins". All fields are combined with a logical 'AND'. */ +export interface game_mode_plugins_bool_exp {_and?: (game_mode_plugins_bool_exp[] | null),_not?: (game_mode_plugins_bool_exp | null),_or?: (game_mode_plugins_bool_exp[] | null),config?: (jsonb_comparison_exp | null),game_mode?: (game_modes_bool_exp | null),game_mode_id?: (uuid_comparison_exp | null),load_order?: (Int_comparison_exp | null),plugin?: (game_plugins_bool_exp | null),plugin_slug?: (String_comparison_exp | null),required?: (Boolean_comparison_exp | null)} -/** input type for incrementing numeric columns in table "event_players" */ -export interface event_players_inc_input {steam_id?: (Scalars['bigint'] | null)} +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface game_mode_plugins_delete_at_path_input {config?: (Scalars['String'][] | null)} -/** 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)} +/** 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 game_mode_plugins_delete_elem_input {config?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface game_mode_plugins_delete_key_input {config?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "game_mode_plugins" */ +export interface game_mode_plugins_inc_input {load_order?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "game_mode_plugins" */ +export interface game_mode_plugins_insert_input {config?: (Scalars['jsonb'] | null),game_mode?: (game_modes_obj_rel_insert_input | null),game_mode_id?: (Scalars['uuid'] | null),load_order?: (Scalars['Int'] | null),plugin?: (game_plugins_obj_rel_insert_input | null),plugin_slug?: (Scalars['String'] | null),required?: (Scalars['Boolean'] | null)} /** aggregate max on columns */ -export interface event_players_max_fieldsGenqlSelection{ - created_at?: boolean | number - event_id?: boolean | number - steam_id?: boolean | number +export interface game_mode_plugins_max_fieldsGenqlSelection{ + game_mode_id?: boolean | number + load_order?: boolean | number + plugin_slug?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** order by max() on columns of table "game_mode_plugins" */ +export interface game_mode_plugins_max_order_by {game_mode_id?: (order_by | null),load_order?: (order_by | null),plugin_slug?: (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 +export interface game_mode_plugins_min_fieldsGenqlSelection{ + game_mode_id?: boolean | number + load_order?: boolean | number + plugin_slug?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** order by min() on columns of table "game_mode_plugins" */ +export interface game_mode_plugins_min_order_by {game_mode_id?: (order_by | null),load_order?: (order_by | null),plugin_slug?: (order_by | null)} -/** response of any mutation on the table "event_players" */ -export interface event_players_mutation_responseGenqlSelection{ +/** response of any mutation on the table "game_mode_plugins" */ +export interface game_mode_plugins_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: event_playersGenqlSelection + returning?: game_mode_pluginsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** on_conflict condition type for table "game_mode_plugins" */ +export interface game_mode_plugins_on_conflict {constraint: game_mode_plugins_constraint,update_columns?: game_mode_plugins_update_column[],where?: (game_mode_plugins_bool_exp | 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)} +/** Ordering options when selecting data from "game_mode_plugins". */ +export interface game_mode_plugins_order_by {config?: (order_by | null),game_mode?: (game_modes_order_by | null),game_mode_id?: (order_by | null),load_order?: (order_by | null),plugin?: (game_plugins_order_by | null),plugin_slug?: (order_by | null),required?: (order_by | null)} -/** primary key columns input for table: event_players */ -export interface event_players_pk_columns_input {event_id: Scalars['uuid'],steam_id: Scalars['bigint']} +/** primary key columns input for table: game_mode_plugins */ +export interface game_mode_plugins_pk_columns_input {game_mode_id: Scalars['uuid'],plugin_slug: Scalars['String']} -/** 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)} +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface game_mode_plugins_prepend_input {config?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "game_mode_plugins" */ +export interface game_mode_plugins_set_input {config?: (Scalars['jsonb'] | null),game_mode_id?: (Scalars['uuid'] | null),load_order?: (Scalars['Int'] | null),plugin_slug?: (Scalars['String'] | null),required?: (Scalars['Boolean'] | null)} /** aggregate stddev on columns */ -export interface event_players_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface game_mode_plugins_stddev_fieldsGenqlSelection{ + load_order?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev() on columns of table "event_players" */ -export interface event_players_stddev_order_by {steam_id?: (order_by | null)} +/** order by stddev() on columns of table "game_mode_plugins" */ +export interface game_mode_plugins_stddev_order_by {load_order?: (order_by | null)} /** aggregate stddev_pop on columns */ -export interface event_players_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface game_mode_plugins_stddev_pop_fieldsGenqlSelection{ + load_order?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_pop() on columns of table "event_players" */ -export interface event_players_stddev_pop_order_by {steam_id?: (order_by | null)} +/** order by stddev_pop() on columns of table "game_mode_plugins" */ +export interface game_mode_plugins_stddev_pop_order_by {load_order?: (order_by | null)} /** aggregate stddev_samp on columns */ -export interface event_players_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface game_mode_plugins_stddev_samp_fieldsGenqlSelection{ + load_order?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_samp() on columns of table "event_players" */ -export interface event_players_stddev_samp_order_by {steam_id?: (order_by | null)} +/** order by stddev_samp() on columns of table "game_mode_plugins" */ +export interface game_mode_plugins_stddev_samp_order_by {load_order?: (order_by | null)} -/** Streaming cursor of the table "event_players" */ -export interface event_players_stream_cursor_input { +/** Streaming cursor of the table "game_mode_plugins" */ +export interface game_mode_plugins_stream_cursor_input { /** Stream column input with initial value */ -initial_value: event_players_stream_cursor_value_input, +initial_value: game_mode_plugins_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | 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)} +export interface game_mode_plugins_stream_cursor_value_input {config?: (Scalars['jsonb'] | null),game_mode_id?: (Scalars['uuid'] | null),load_order?: (Scalars['Int'] | null),plugin_slug?: (Scalars['String'] | null),required?: (Scalars['Boolean'] | null)} /** aggregate sum on columns */ -export interface event_players_sum_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface game_mode_plugins_sum_fieldsGenqlSelection{ + load_order?: 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)} +/** order by sum() on columns of table "game_mode_plugins" */ +export interface game_mode_plugins_sum_order_by {load_order?: (order_by | null)} -export interface event_players_updates { +export interface game_mode_plugins_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (game_mode_plugins_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (game_mode_plugins_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?: (game_mode_plugins_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (game_mode_plugins_delete_key_input | null), /** increments the numeric columns with given value of the filtered values */ -_inc?: (event_players_inc_input | null), +_inc?: (game_mode_plugins_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (game_mode_plugins_prepend_input | null), /** sets the columns of the filtered rows to the given values */ -_set?: (event_players_set_input | null), +_set?: (game_mode_plugins_set_input | null), /** filter the rows which have to be updated */ -where: event_players_bool_exp} +where: game_mode_plugins_bool_exp} /** aggregate var_pop on columns */ -export interface event_players_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface game_mode_plugins_var_pop_fieldsGenqlSelection{ + load_order?: 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)} +/** order by var_pop() on columns of table "game_mode_plugins" */ +export interface game_mode_plugins_var_pop_order_by {load_order?: (order_by | null)} /** aggregate var_samp on columns */ -export interface event_players_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface game_mode_plugins_var_samp_fieldsGenqlSelection{ + load_order?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by var_samp() on columns of table "event_players" */ -export interface event_players_var_samp_order_by {steam_id?: (order_by | null)} +/** order by var_samp() on columns of table "game_mode_plugins" */ +export interface game_mode_plugins_var_samp_order_by {load_order?: (order_by | null)} /** aggregate variance on columns */ -export interface event_players_variance_fieldsGenqlSelection{ - steam_id?: boolean | number +export interface game_mode_plugins_variance_fieldsGenqlSelection{ + load_order?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by variance() on columns of table "event_players" */ -export interface event_players_variance_order_by {steam_id?: (order_by | null)} +/** order by variance() on columns of table "game_mode_plugins" */ +export interface game_mode_plugins_variance_order_by {load_order?: (order_by | null)} -/** columns and relationships of "event_teams" */ -export interface event_teamsGenqlSelection{ +/** columns and relationships of "game_modes" */ +export interface game_modesGenqlSelection{ + archived_at?: boolean | number + cfg?: boolean | number + competitive_safe?: boolean | number created_at?: boolean | number - /** An object relationship */ - event?: eventsGenqlSelection - event_id?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number + description?: boolean | number + enabled?: boolean | number + extra_game_params?: boolean | number + icon?: boolean | number + id?: boolean | number + /** An array relationship */ + match_options?: (match_optionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_options_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_options_order_by[] | null), + /** filter the rows returned */ + where?: (match_options_bool_exp | null)} }) + /** An aggregate relationship */ + match_options_aggregate?: (match_options_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_options_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_options_order_by[] | null), + /** filter the rows returned */ + where?: (match_options_bool_exp | null)} }) + name?: boolean | number + /** An array relationship */ + plugins?: (game_mode_pluginsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_mode_plugins_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?: (game_mode_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_mode_plugins_bool_exp | null)} }) + /** An aggregate relationship */ + plugins_aggregate?: (game_mode_plugins_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_mode_plugins_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?: (game_mode_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_mode_plugins_bool_exp | null)} }) + /** Plugins in this mode with no build for the deployment's runtime */ + runtime_conflicts?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + slug?: boolean | number + /** Frameworks every plugin in this mode publishes for; empty means the selection cannot run */ + supported_runtimes?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + updated_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "event_teams" */ -export interface event_teams_aggregateGenqlSelection{ - aggregate?: event_teams_aggregate_fieldsGenqlSelection - nodes?: event_teamsGenqlSelection +/** aggregated selection of "game_modes" */ +export interface game_modes_aggregateGenqlSelection{ + aggregate?: game_modes_aggregate_fieldsGenqlSelection + nodes?: game_modesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface event_teams_aggregate_bool_exp {count?: (event_teams_aggregate_bool_exp_count | null)} -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 "game_modes" */ +export interface game_modes_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (game_modes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: game_modes_max_fieldsGenqlSelection + min?: game_modes_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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 +/** Boolean expression to filter rows from the table "game_modes". All fields are combined with a logical 'AND'. */ +export interface game_modes_bool_exp {_and?: (game_modes_bool_exp[] | null),_not?: (game_modes_bool_exp | null),_or?: (game_modes_bool_exp[] | null),archived_at?: (timestamptz_comparison_exp | null),cfg?: (String_comparison_exp | null),competitive_safe?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),extra_game_params?: (String_comparison_exp | null),icon?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),match_options?: (match_options_bool_exp | null),match_options_aggregate?: (match_options_aggregate_bool_exp | null),name?: (String_comparison_exp | null),plugins?: (game_mode_plugins_bool_exp | null),plugins_aggregate?: (game_mode_plugins_aggregate_bool_exp | null),runtime_conflicts?: (jsonb_comparison_exp | null),slug?: (String_comparison_exp | null),supported_runtimes?: (jsonb_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for inserting data into table "game_modes" */ +export interface game_modes_insert_input {archived_at?: (Scalars['timestamptz'] | null),cfg?: (Scalars['String'] | null),competitive_safe?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),extra_game_params?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match_options?: (match_options_arr_rel_insert_input | null),name?: (Scalars['String'] | null),plugins?: (game_mode_plugins_arr_rel_insert_input | null),slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface game_modes_max_fieldsGenqlSelection{ + archived_at?: boolean | number + cfg?: boolean | number + created_at?: boolean | number + description?: boolean | number + extra_game_params?: boolean | number + icon?: boolean | number + id?: boolean | number + name?: boolean | number + slug?: boolean | number + updated_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** aggregate min on columns */ +export interface game_modes_min_fieldsGenqlSelection{ + archived_at?: boolean | number + cfg?: boolean | number + created_at?: boolean | number + description?: boolean | number + extra_game_params?: boolean | number + icon?: boolean | number + id?: boolean | number + name?: boolean | number + slug?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** input type for inserting array relation for remote table "event_teams" */ -export interface event_teams_arr_rel_insert_input {data: event_teams_insert_input[], +/** response of any mutation on the table "game_modes" */ +export interface game_modes_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: game_modesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "game_modes" */ +export interface game_modes_obj_rel_insert_input {data: game_modes_insert_input, /** upsert condition */ -on_conflict?: (event_teams_on_conflict | null)} +on_conflict?: (game_modes_on_conflict | 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)} +/** on_conflict condition type for table "game_modes" */ +export interface game_modes_on_conflict {constraint: game_modes_constraint,update_columns?: game_modes_update_column[],where?: (game_modes_bool_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)} +/** Ordering options when selecting data from "game_modes". */ +export interface game_modes_order_by {archived_at?: (order_by | null),cfg?: (order_by | null),competitive_safe?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),enabled?: (order_by | null),extra_game_params?: (order_by | null),icon?: (order_by | null),id?: (order_by | null),match_options_aggregate?: (match_options_aggregate_order_by | null),name?: (order_by | null),plugins_aggregate?: (game_mode_plugins_aggregate_order_by | null),runtime_conflicts?: (order_by | null),slug?: (order_by | null),supported_runtimes?: (order_by | null),updated_at?: (order_by | null)} -/** aggregate max on columns */ -export interface event_teams_max_fieldsGenqlSelection{ +/** primary key columns input for table: game_modes */ +export interface game_modes_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "game_modes" */ +export interface game_modes_set_input {archived_at?: (Scalars['timestamptz'] | null),cfg?: (Scalars['String'] | null),competitive_safe?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),extra_game_params?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** Streaming cursor of the table "game_modes" */ +export interface game_modes_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: game_modes_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface game_modes_stream_cursor_value_input {archived_at?: (Scalars['timestamptz'] | null),cfg?: (Scalars['String'] | null),competitive_safe?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),extra_game_params?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + +export interface game_modes_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (game_modes_set_input | null), +/** filter the rows which have to be updated */ +where: game_modes_bool_exp} + + +/** columns and relationships of "game_plugin_installs" */ +export interface game_plugin_installsGenqlSelection{ + always_load?: boolean | number + channel?: boolean | number created_at?: boolean | number - event_id?: boolean | number - team_id?: boolean | number + disable_server_guidelines?: boolean | number + enabled?: boolean | number + /** An object relationship */ + plugin?: game_pluginsGenqlSelection + plugin_slug?: boolean | number + updated_at?: boolean | number + version?: 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)} +/** aggregated selection of "game_plugin_installs" */ +export interface game_plugin_installs_aggregateGenqlSelection{ + aggregate?: game_plugin_installs_aggregate_fieldsGenqlSelection + nodes?: game_plugin_installsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate min on columns */ -export interface event_teams_min_fieldsGenqlSelection{ +/** aggregate fields of "game_plugin_installs" */ +export interface game_plugin_installs_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (game_plugin_installs_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: game_plugin_installs_max_fieldsGenqlSelection + min?: game_plugin_installs_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "game_plugin_installs". All fields are combined with a logical 'AND'. */ +export interface game_plugin_installs_bool_exp {_and?: (game_plugin_installs_bool_exp[] | null),_not?: (game_plugin_installs_bool_exp | null),_or?: (game_plugin_installs_bool_exp[] | null),always_load?: (Boolean_comparison_exp | null),channel?: (e_game_plugin_channels_enum_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),disable_server_guidelines?: (Boolean_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),plugin?: (game_plugins_bool_exp | null),plugin_slug?: (String_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),version?: (String_comparison_exp | null)} + + +/** input type for inserting data into table "game_plugin_installs" */ +export interface game_plugin_installs_insert_input {always_load?: (Scalars['Boolean'] | null),channel?: (e_game_plugin_channels_enum | null),created_at?: (Scalars['timestamptz'] | null),disable_server_guidelines?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),plugin?: (game_plugins_obj_rel_insert_input | null),plugin_slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface game_plugin_installs_max_fieldsGenqlSelection{ created_at?: boolean | number - event_id?: boolean | number - team_id?: boolean | number + plugin_slug?: boolean | number + updated_at?: boolean | number + version?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** aggregate min on columns */ +export interface game_plugin_installs_min_fieldsGenqlSelection{ + created_at?: boolean | number + plugin_slug?: boolean | number + updated_at?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** response of any mutation on the table "event_teams" */ -export interface event_teams_mutation_responseGenqlSelection{ +/** response of any mutation on the table "game_plugin_installs" */ +export interface game_plugin_installs_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: event_teamsGenqlSelection + returning?: game_plugin_installsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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 "game_plugin_installs" */ +export interface game_plugin_installs_on_conflict {constraint: game_plugin_installs_constraint,update_columns?: game_plugin_installs_update_column[],where?: (game_plugin_installs_bool_exp | 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)} +/** Ordering options when selecting data from "game_plugin_installs". */ +export interface game_plugin_installs_order_by {always_load?: (order_by | null),channel?: (order_by | null),created_at?: (order_by | null),disable_server_guidelines?: (order_by | null),enabled?: (order_by | null),plugin?: (game_plugins_order_by | null),plugin_slug?: (order_by | null),updated_at?: (order_by | null),version?: (order_by | null)} -/** primary key columns input for table: event_teams */ -export interface event_teams_pk_columns_input {event_id: Scalars['uuid'],team_id: Scalars['uuid']} +/** primary key columns input for table: game_plugin_installs */ +export interface game_plugin_installs_pk_columns_input {plugin_slug: Scalars['String']} -/** 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)} +/** input type for updating data in table "game_plugin_installs" */ +export interface game_plugin_installs_set_input {always_load?: (Scalars['Boolean'] | null),channel?: (e_game_plugin_channels_enum | null),created_at?: (Scalars['timestamptz'] | null),disable_server_guidelines?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),plugin_slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} -/** Streaming cursor of the table "event_teams" */ -export interface event_teams_stream_cursor_input { +/** Streaming cursor of the table "game_plugin_installs" */ +export interface game_plugin_installs_stream_cursor_input { /** Stream column input with initial value */ -initial_value: event_teams_stream_cursor_value_input, +initial_value: game_plugin_installs_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -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 game_plugin_installs_stream_cursor_value_input {always_load?: (Scalars['Boolean'] | null),channel?: (e_game_plugin_channels_enum | null),created_at?: (Scalars['timestamptz'] | null),disable_server_guidelines?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),plugin_slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} -export interface event_teams_updates { +export interface game_plugin_installs_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (event_teams_set_input | null), +_set?: (game_plugin_installs_set_input | null), /** filter the rows which have to be updated */ -where: event_teams_bool_exp} +where: game_plugin_installs_bool_exp} -/** columns and relationships of "event_tournaments" */ -export interface event_tournamentsGenqlSelection{ - created_at?: boolean | number - /** An object relationship */ - event?: eventsGenqlSelection - event_id?: boolean | number +/** columns and relationships of "game_plugin_versions" */ +export interface game_plugin_versionsGenqlSelection{ + install_path?: boolean | number + layout?: boolean | number /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number + plugin?: game_pluginsGenqlSelection + plugin_slug?: boolean | number + prerelease?: boolean | number + published_at?: boolean | number + runtime?: boolean | number + sha256?: boolean | number + size?: boolean | number + url?: boolean | number + version?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "event_tournaments" */ -export interface event_tournaments_aggregateGenqlSelection{ - aggregate?: event_tournaments_aggregate_fieldsGenqlSelection - nodes?: event_tournamentsGenqlSelection +/** aggregated selection of "game_plugin_versions" */ +export interface game_plugin_versions_aggregateGenqlSelection{ + aggregate?: game_plugin_versions_aggregate_fieldsGenqlSelection + nodes?: game_plugin_versionsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface event_tournaments_aggregate_bool_exp {count?: (event_tournaments_aggregate_bool_exp_count | null)} +export interface game_plugin_versions_aggregate_bool_exp {bool_and?: (game_plugin_versions_aggregate_bool_exp_bool_and | null),bool_or?: (game_plugin_versions_aggregate_bool_exp_bool_or | null),count?: (game_plugin_versions_aggregate_bool_exp_count | null)} -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} +export interface game_plugin_versions_aggregate_bool_exp_bool_and {arguments: game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (game_plugin_versions_bool_exp | null),predicate: Boolean_comparison_exp} +export interface game_plugin_versions_aggregate_bool_exp_bool_or {arguments: game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (game_plugin_versions_bool_exp | null),predicate: Boolean_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 +export interface game_plugin_versions_aggregate_bool_exp_count {arguments?: (game_plugin_versions_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (game_plugin_versions_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "game_plugin_versions" */ +export interface game_plugin_versions_aggregate_fieldsGenqlSelection{ + avg?: game_plugin_versions_avg_fieldsGenqlSelection + count?: { __args: {columns?: (game_plugin_versions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: game_plugin_versions_max_fieldsGenqlSelection + min?: game_plugin_versions_min_fieldsGenqlSelection + stddev?: game_plugin_versions_stddev_fieldsGenqlSelection + stddev_pop?: game_plugin_versions_stddev_pop_fieldsGenqlSelection + stddev_samp?: game_plugin_versions_stddev_samp_fieldsGenqlSelection + sum?: game_plugin_versions_sum_fieldsGenqlSelection + var_pop?: game_plugin_versions_var_pop_fieldsGenqlSelection + var_samp?: game_plugin_versions_var_samp_fieldsGenqlSelection + variance?: game_plugin_versions_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** order by aggregate values of table "game_plugin_versions" */ +export interface game_plugin_versions_aggregate_order_by {avg?: (game_plugin_versions_avg_order_by | null),count?: (order_by | null),max?: (game_plugin_versions_max_order_by | null),min?: (game_plugin_versions_min_order_by | null),stddev?: (game_plugin_versions_stddev_order_by | null),stddev_pop?: (game_plugin_versions_stddev_pop_order_by | null),stddev_samp?: (game_plugin_versions_stddev_samp_order_by | null),sum?: (game_plugin_versions_sum_order_by | null),var_pop?: (game_plugin_versions_var_pop_order_by | null),var_samp?: (game_plugin_versions_var_samp_order_by | null),variance?: (game_plugin_versions_variance_order_by | 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[], +/** input type for inserting array relation for remote table "game_plugin_versions" */ +export interface game_plugin_versions_arr_rel_insert_input {data: game_plugin_versions_insert_input[], /** upsert condition */ -on_conflict?: (event_tournaments_on_conflict | null)} +on_conflict?: (game_plugin_versions_on_conflict | 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)} +/** aggregate avg on columns */ +export interface game_plugin_versions_avg_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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)} +/** order by avg() on columns of table "game_plugin_versions" */ +export interface game_plugin_versions_avg_order_by {size?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "game_plugin_versions". All fields are combined with a logical 'AND'. */ +export interface game_plugin_versions_bool_exp {_and?: (game_plugin_versions_bool_exp[] | null),_not?: (game_plugin_versions_bool_exp | null),_or?: (game_plugin_versions_bool_exp[] | null),install_path?: (String_comparison_exp | null),layout?: (String_comparison_exp | null),plugin?: (game_plugins_bool_exp | null),plugin_slug?: (String_comparison_exp | null),prerelease?: (Boolean_comparison_exp | null),published_at?: (timestamptz_comparison_exp | null),runtime?: (e_plugin_runtimes_enum_comparison_exp | null),sha256?: (String_comparison_exp | null),size?: (Int_comparison_exp | null),url?: (String_comparison_exp | null),version?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "game_plugin_versions" */ +export interface game_plugin_versions_inc_input {size?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "game_plugin_versions" */ +export interface game_plugin_versions_insert_input {install_path?: (Scalars['String'] | null),layout?: (Scalars['String'] | null),plugin?: (game_plugins_obj_rel_insert_input | null),plugin_slug?: (Scalars['String'] | null),prerelease?: (Scalars['Boolean'] | null),published_at?: (Scalars['timestamptz'] | null),runtime?: (e_plugin_runtimes_enum | null),sha256?: (Scalars['String'] | null),size?: (Scalars['Int'] | null),url?: (Scalars['String'] | null),version?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface event_tournaments_max_fieldsGenqlSelection{ - created_at?: boolean | number - event_id?: boolean | number - tournament_id?: boolean | number +export interface game_plugin_versions_max_fieldsGenqlSelection{ + install_path?: boolean | number + layout?: boolean | number + plugin_slug?: boolean | number + published_at?: boolean | number + sha256?: boolean | number + size?: boolean | number + url?: boolean | number + version?: 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)} +/** order by max() on columns of table "game_plugin_versions" */ +export interface game_plugin_versions_max_order_by {install_path?: (order_by | null),layout?: (order_by | null),plugin_slug?: (order_by | null),published_at?: (order_by | null),sha256?: (order_by | null),size?: (order_by | null),url?: (order_by | null),version?: (order_by | null)} /** aggregate min on columns */ -export interface event_tournaments_min_fieldsGenqlSelection{ - created_at?: boolean | number - event_id?: boolean | number - tournament_id?: boolean | number +export interface game_plugin_versions_min_fieldsGenqlSelection{ + install_path?: boolean | number + layout?: boolean | number + plugin_slug?: boolean | number + published_at?: boolean | number + sha256?: boolean | number + size?: boolean | number + url?: boolean | number + version?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** order by min() on columns of table "game_plugin_versions" */ +export interface game_plugin_versions_min_order_by {install_path?: (order_by | null),layout?: (order_by | null),plugin_slug?: (order_by | null),published_at?: (order_by | null),sha256?: (order_by | null),size?: (order_by | null),url?: (order_by | null),version?: (order_by | null)} -/** response of any mutation on the table "event_tournaments" */ -export interface event_tournaments_mutation_responseGenqlSelection{ +/** response of any mutation on the table "game_plugin_versions" */ +export interface game_plugin_versions_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: event_tournamentsGenqlSelection + returning?: game_plugin_versionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "game_plugin_versions" */ +export interface game_plugin_versions_on_conflict {constraint: game_plugin_versions_constraint,update_columns?: game_plugin_versions_update_column[],where?: (game_plugin_versions_bool_exp | null)} + + +/** Ordering options when selecting data from "game_plugin_versions". */ +export interface game_plugin_versions_order_by {install_path?: (order_by | null),layout?: (order_by | null),plugin?: (game_plugins_order_by | null),plugin_slug?: (order_by | null),prerelease?: (order_by | null),published_at?: (order_by | null),runtime?: (order_by | null),sha256?: (order_by | null),size?: (order_by | null),url?: (order_by | null),version?: (order_by | null)} + + +/** primary key columns input for table: game_plugin_versions */ +export interface game_plugin_versions_pk_columns_input {plugin_slug: Scalars['String'],runtime: e_plugin_runtimes_enum,version: Scalars['String']} + + +/** input type for updating data in table "game_plugin_versions" */ +export interface game_plugin_versions_set_input {install_path?: (Scalars['String'] | null),layout?: (Scalars['String'] | null),plugin_slug?: (Scalars['String'] | null),prerelease?: (Scalars['Boolean'] | null),published_at?: (Scalars['timestamptz'] | null),runtime?: (e_plugin_runtimes_enum | null),sha256?: (Scalars['String'] | null),size?: (Scalars['Int'] | null),url?: (Scalars['String'] | null),version?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface game_plugin_versions_stddev_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "game_plugin_versions" */ +export interface game_plugin_versions_stddev_order_by {size?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface game_plugin_versions_stddev_pop_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "game_plugin_versions" */ +export interface game_plugin_versions_stddev_pop_order_by {size?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface game_plugin_versions_stddev_samp_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "game_plugin_versions" */ +export interface game_plugin_versions_stddev_samp_order_by {size?: (order_by | null)} + + +/** Streaming cursor of the table "game_plugin_versions" */ +export interface game_plugin_versions_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: game_plugin_versions_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface game_plugin_versions_stream_cursor_value_input {install_path?: (Scalars['String'] | null),layout?: (Scalars['String'] | null),plugin_slug?: (Scalars['String'] | null),prerelease?: (Scalars['Boolean'] | null),published_at?: (Scalars['timestamptz'] | null),runtime?: (e_plugin_runtimes_enum | null),sha256?: (Scalars['String'] | null),size?: (Scalars['Int'] | null),url?: (Scalars['String'] | null),version?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface game_plugin_versions_sum_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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)} +/** order by sum() on columns of table "game_plugin_versions" */ +export interface game_plugin_versions_sum_order_by {size?: (order_by | null)} +export interface game_plugin_versions_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (game_plugin_versions_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (game_plugin_versions_set_input | null), +/** filter the rows which have to be updated */ +where: game_plugin_versions_bool_exp} -/** 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)} +/** aggregate var_pop on columns */ +export interface game_plugin_versions_var_pop_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** primary key columns input for table: event_tournaments */ -export interface event_tournaments_pk_columns_input {event_id: Scalars['uuid'],tournament_id: Scalars['uuid']} +/** order by var_pop() on columns of table "game_plugin_versions" */ +export interface game_plugin_versions_var_pop_order_by {size?: (order_by | 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)} +/** aggregate var_samp on columns */ +export interface game_plugin_versions_var_samp_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** Streaming cursor of the table "event_tournaments" */ -export interface event_tournaments_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: event_tournaments_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} +/** order by var_samp() on columns of table "game_plugin_versions" */ +export interface game_plugin_versions_var_samp_order_by {size?: (order_by | null)} -/** Initial value of the column from where the streaming should start */ -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 event_tournaments_updates { -/** 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} +/** aggregate variance on columns */ +export interface game_plugin_versions_variance_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** columns and relationships of "events" */ -export interface eventsGenqlSelection{ - /** An array relationship */ - awards?: (award_recipientsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), - /** filter the rows returned */ - where?: (award_recipients_bool_exp | null)} }) - /** An aggregate relationship */ - awards_aggregate?: (award_recipients_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (award_recipients_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?: (award_recipients_order_by[] | null), - /** filter the rows returned */ - where?: (award_recipients_bool_exp | null)} }) - /** 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 +/** order by variance() on columns of table "game_plugin_versions" */ +export interface game_plugin_versions_variance_order_by {size?: (order_by | null)} + + +/** columns and relationships of "game_plugins" */ +export interface game_pluginsGenqlSelection{ + author?: boolean | number + config_path?: boolean | number + config_schema?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + cvars?: 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 */ - media?: (event_mediaGenqlSelection & { __args?: { + game_modes?: (game_mode_pluginsGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (event_media_select_column[] | null), + distinct_on?: (game_mode_plugins_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), + order_by?: (game_mode_plugins_order_by[] | null), /** filter the rows returned */ - where?: (event_media_bool_exp | null)} }) - media_access?: boolean | number + where?: (game_mode_plugins_bool_exp | null)} }) /** An aggregate relationship */ - media_aggregate?: (event_media_aggregateGenqlSelection & { __args?: { + game_modes_aggregate?: (game_mode_plugins_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (event_media_select_column[] | null), + distinct_on?: (game_mode_plugins_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), + order_by?: (game_mode_plugins_order_by[] | null), /** filter the rows returned */ - where?: (event_media_bool_exp | null)} }) + where?: (game_mode_plugins_bool_exp | null)} }) + homepage?: boolean | number + hot_swappable?: boolean | number + /** Installed | Partial | Pending | Failed | Manual | NotInstalled */ + install_state?: boolean | number + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count?: boolean | number + kind?: boolean | number 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?: { + node_installs?: (game_server_node_pluginsGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (event_teams_select_column[] | null), + distinct_on?: (game_server_node_plugins_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), + order_by?: (game_server_node_plugins_order_by[] | null), /** filter the rows returned */ - where?: (event_teams_bool_exp | null)} }) + where?: (game_server_node_plugins_bool_exp | null)} }) /** An aggregate relationship */ - teams_aggregate?: (event_teams_aggregateGenqlSelection & { __args?: { + node_installs_aggregate?: (game_server_node_plugins_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (event_teams_select_column[] | null), + distinct_on?: (game_server_node_plugins_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), + order_by?: (game_server_node_plugins_order_by[] | null), /** filter the rows returned */ - where?: (event_teams_bool_exp | null)} }) + where?: (game_server_node_plugins_bool_exp | null)} }) + pairs_with?: boolean | number + panel?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + requires_server_guidelines_disabled?: boolean | number + requires_service?: boolean | number + slug?: boolean | number + source?: boolean | number + synced_at?: boolean | number + tags?: boolean | number + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count?: boolean | number + verified?: boolean | number /** An array relationship */ - tournaments?: (event_tournamentsGenqlSelection & { __args?: { + versions?: (game_plugin_versionsGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (event_tournaments_select_column[] | null), + distinct_on?: (game_plugin_versions_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), + order_by?: (game_plugin_versions_order_by[] | null), /** filter the rows returned */ - where?: (event_tournaments_bool_exp | null)} }) + where?: (game_plugin_versions_bool_exp | null)} }) /** An aggregate relationship */ - tournaments_aggregate?: (event_tournaments_aggregateGenqlSelection & { __args?: { + versions_aggregate?: (game_plugin_versions_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (event_tournaments_select_column[] | null), + distinct_on?: (game_plugin_versions_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), + order_by?: (game_plugin_versions_order_by[] | null), /** filter the rows returned */ - where?: (event_tournaments_bool_exp | null)} }) - visibility?: boolean | number + where?: (game_plugin_versions_bool_exp | null)} }) + wiring?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "events" */ -export interface events_aggregateGenqlSelection{ - aggregate?: events_aggregate_fieldsGenqlSelection - nodes?: eventsGenqlSelection +/** aggregated selection of "game_plugins" */ +export interface game_plugins_aggregateGenqlSelection{ + aggregate?: game_plugins_aggregate_fieldsGenqlSelection + nodes?: game_pluginsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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 +/** aggregate fields of "game_plugins" */ +export interface game_plugins_aggregate_fieldsGenqlSelection{ + avg?: game_plugins_avg_fieldsGenqlSelection + count?: { __args: {columns?: (game_plugins_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: game_plugins_max_fieldsGenqlSelection + min?: game_plugins_min_fieldsGenqlSelection + stddev?: game_plugins_stddev_fieldsGenqlSelection + stddev_pop?: game_plugins_stddev_pop_fieldsGenqlSelection + stddev_samp?: game_plugins_stddev_samp_fieldsGenqlSelection + sum?: game_plugins_sum_fieldsGenqlSelection + var_pop?: game_plugins_var_pop_fieldsGenqlSelection + var_samp?: game_plugins_var_samp_fieldsGenqlSelection + variance?: game_plugins_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface game_plugins_append_input {config_schema?: (Scalars['jsonb'] | null),panel?: (Scalars['jsonb'] | null),wiring?: (Scalars['jsonb'] | null)} + + /** aggregate avg on columns */ -export interface events_avg_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number +export interface game_plugins_avg_fieldsGenqlSelection{ + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count?: boolean | number + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** 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),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_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)} +/** Boolean expression to filter rows from the table "game_plugins". All fields are combined with a logical 'AND'. */ +export interface game_plugins_bool_exp {_and?: (game_plugins_bool_exp[] | null),_not?: (game_plugins_bool_exp | null),_or?: (game_plugins_bool_exp[] | null),author?: (String_comparison_exp | null),config_path?: (String_comparison_exp | null),config_schema?: (jsonb_comparison_exp | null),cvars?: (String_array_comparison_exp | null),description?: (String_comparison_exp | null),game_modes?: (game_mode_plugins_bool_exp | null),game_modes_aggregate?: (game_mode_plugins_aggregate_bool_exp | null),homepage?: (String_comparison_exp | null),hot_swappable?: (Boolean_comparison_exp | null),install_state?: (String_comparison_exp | null),installed_node_count?: (Int_comparison_exp | null),kind?: (e_game_plugin_kinds_enum_comparison_exp | null),name?: (String_comparison_exp | null),node_installs?: (game_server_node_plugins_bool_exp | null),node_installs_aggregate?: (game_server_node_plugins_aggregate_bool_exp | null),pairs_with?: (String_array_comparison_exp | null),panel?: (jsonb_comparison_exp | null),requires_server_guidelines_disabled?: (Boolean_comparison_exp | null),requires_service?: (String_comparison_exp | null),slug?: (String_comparison_exp | null),source?: (String_comparison_exp | null),synced_at?: (timestamptz_comparison_exp | null),tags?: (String_array_comparison_exp | null),target_node_count?: (Int_comparison_exp | null),verified?: (Boolean_comparison_exp | null),versions?: (game_plugin_versions_bool_exp | null),versions_aggregate?: (game_plugin_versions_aggregate_bool_exp | null),wiring?: (jsonb_comparison_exp | null)} -/** input type for incrementing numeric columns in table "events" */ -export interface events_inc_input {organizer_steam_id?: (Scalars['bigint'] | null)} +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface game_plugins_delete_at_path_input {config_schema?: (Scalars['String'][] | null),panel?: (Scalars['String'][] | null),wiring?: (Scalars['String'][] | null)} -/** input type for inserting data into table "events" */ -export interface events_insert_input {awards?: (award_recipients_arr_rel_insert_input | null),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)} +/** 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 game_plugins_delete_elem_input {config_schema?: (Scalars['Int'] | null),panel?: (Scalars['Int'] | null),wiring?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface game_plugins_delete_key_input {config_schema?: (Scalars['String'] | null),panel?: (Scalars['String'] | null),wiring?: (Scalars['String'] | null)} + + +/** input type for inserting data into table "game_plugins" */ +export interface game_plugins_insert_input {author?: (Scalars['String'] | null),config_path?: (Scalars['String'] | null),config_schema?: (Scalars['jsonb'] | null),cvars?: (Scalars['String'][] | null),description?: (Scalars['String'] | null),game_modes?: (game_mode_plugins_arr_rel_insert_input | null),homepage?: (Scalars['String'] | null),hot_swappable?: (Scalars['Boolean'] | null),kind?: (e_game_plugin_kinds_enum | null),name?: (Scalars['String'] | null),node_installs?: (game_server_node_plugins_arr_rel_insert_input | null),pairs_with?: (Scalars['String'][] | null),panel?: (Scalars['jsonb'] | null),requires_server_guidelines_disabled?: (Scalars['Boolean'] | null),requires_service?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),synced_at?: (Scalars['timestamptz'] | null),tags?: (Scalars['String'][] | null),verified?: (Scalars['Boolean'] | null),versions?: (game_plugin_versions_arr_rel_insert_input | null),wiring?: (Scalars['jsonb'] | null)} /** aggregate max on columns */ -export interface events_max_fieldsGenqlSelection{ - banner_media_id?: boolean | number - created_at?: boolean | number +export interface game_plugins_max_fieldsGenqlSelection{ + author?: boolean | number + config_path?: boolean | number + cvars?: boolean | number description?: boolean | number - ends_at?: boolean | number - id?: boolean | number + homepage?: boolean | number + /** Installed | Partial | Pending | Failed | Manual | NotInstalled */ + install_state?: boolean | number + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count?: boolean | number name?: boolean | number - organizer_steam_id?: boolean | number - starts_at?: boolean | number + pairs_with?: boolean | number + requires_service?: boolean | number + slug?: boolean | number + source?: boolean | number + synced_at?: boolean | number + tags?: boolean | number + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate min on columns */ -export interface events_min_fieldsGenqlSelection{ - banner_media_id?: boolean | number - created_at?: boolean | number +export interface game_plugins_min_fieldsGenqlSelection{ + author?: boolean | number + config_path?: boolean | number + cvars?: boolean | number description?: boolean | number - ends_at?: boolean | number - id?: boolean | number + homepage?: boolean | number + /** Installed | Partial | Pending | Failed | Manual | NotInstalled */ + install_state?: boolean | number + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count?: boolean | number name?: boolean | number - organizer_steam_id?: boolean | number - starts_at?: boolean | number + pairs_with?: boolean | number + requires_service?: boolean | number + slug?: boolean | number + source?: boolean | number + synced_at?: boolean | number + tags?: boolean | number + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "events" */ -export interface events_mutation_responseGenqlSelection{ +/** response of any mutation on the table "game_plugins" */ +export interface game_plugins_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: eventsGenqlSelection + returning?: game_pluginsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "events" */ -export interface events_obj_rel_insert_input {data: events_insert_input, +/** input type for inserting object relation for remote table "game_plugins" */ +export interface game_plugins_obj_rel_insert_input {data: game_plugins_insert_input, /** upsert condition */ -on_conflict?: (events_on_conflict | null)} +on_conflict?: (game_plugins_on_conflict | null)} -/** 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)} +/** on_conflict condition type for table "game_plugins" */ +export interface game_plugins_on_conflict {constraint: game_plugins_constraint,update_columns?: game_plugins_update_column[],where?: (game_plugins_bool_exp | null)} -/** Ordering options when selecting data from "events". */ -export interface events_order_by {awards_aggregate?: (award_recipients_aggregate_order_by | null),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)} +/** Ordering options when selecting data from "game_plugins". */ +export interface game_plugins_order_by {author?: (order_by | null),config_path?: (order_by | null),config_schema?: (order_by | null),cvars?: (order_by | null),description?: (order_by | null),game_modes_aggregate?: (game_mode_plugins_aggregate_order_by | null),homepage?: (order_by | null),hot_swappable?: (order_by | null),install_state?: (order_by | null),installed_node_count?: (order_by | null),kind?: (order_by | null),name?: (order_by | null),node_installs_aggregate?: (game_server_node_plugins_aggregate_order_by | null),pairs_with?: (order_by | null),panel?: (order_by | null),requires_server_guidelines_disabled?: (order_by | null),requires_service?: (order_by | null),slug?: (order_by | null),source?: (order_by | null),synced_at?: (order_by | null),tags?: (order_by | null),target_node_count?: (order_by | null),verified?: (order_by | null),versions_aggregate?: (game_plugin_versions_aggregate_order_by | null),wiring?: (order_by | null)} -/** primary key columns input for table: events */ -export interface events_pk_columns_input {id: Scalars['uuid']} +/** primary key columns input for table: game_plugins */ +export interface game_plugins_pk_columns_input {slug: Scalars['String']} -/** 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)} +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface game_plugins_prepend_input {config_schema?: (Scalars['jsonb'] | null),panel?: (Scalars['jsonb'] | null),wiring?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "game_plugins" */ +export interface game_plugins_set_input {author?: (Scalars['String'] | null),config_path?: (Scalars['String'] | null),config_schema?: (Scalars['jsonb'] | null),cvars?: (Scalars['String'][] | null),description?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),hot_swappable?: (Scalars['Boolean'] | null),kind?: (e_game_plugin_kinds_enum | null),name?: (Scalars['String'] | null),pairs_with?: (Scalars['String'][] | null),panel?: (Scalars['jsonb'] | null),requires_server_guidelines_disabled?: (Scalars['Boolean'] | null),requires_service?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),synced_at?: (Scalars['timestamptz'] | null),tags?: (Scalars['String'][] | null),verified?: (Scalars['Boolean'] | null),wiring?: (Scalars['jsonb'] | null)} /** aggregate stddev on columns */ -export interface events_stddev_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number +export interface game_plugins_stddev_fieldsGenqlSelection{ + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count?: boolean | number + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate stddev_pop on columns */ -export interface events_stddev_pop_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number +export interface game_plugins_stddev_pop_fieldsGenqlSelection{ + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count?: boolean | number + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate stddev_samp on columns */ -export interface events_stddev_samp_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number +export interface game_plugins_stddev_samp_fieldsGenqlSelection{ + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count?: boolean | number + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Streaming cursor of the table "events" */ -export interface events_stream_cursor_input { +/** Streaming cursor of the table "game_plugins" */ +export interface game_plugins_stream_cursor_input { /** Stream column input with initial value */ -initial_value: events_stream_cursor_value_input, +initial_value: game_plugins_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | 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)} +export interface game_plugins_stream_cursor_value_input {author?: (Scalars['String'] | null),config_path?: (Scalars['String'] | null),config_schema?: (Scalars['jsonb'] | null),cvars?: (Scalars['String'][] | null),description?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),hot_swappable?: (Scalars['Boolean'] | null),kind?: (e_game_plugin_kinds_enum | null),name?: (Scalars['String'] | null),pairs_with?: (Scalars['String'][] | null),panel?: (Scalars['jsonb'] | null),requires_server_guidelines_disabled?: (Scalars['Boolean'] | null),requires_service?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),synced_at?: (Scalars['timestamptz'] | null),tags?: (Scalars['String'][] | null),verified?: (Scalars['Boolean'] | null),wiring?: (Scalars['jsonb'] | null)} /** aggregate sum on columns */ -export interface events_sum_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number +export interface game_plugins_sum_fieldsGenqlSelection{ + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count?: boolean | number + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count?: 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), +export interface game_plugins_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (game_plugins_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (game_plugins_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?: (game_plugins_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (game_plugins_delete_key_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (game_plugins_prepend_input | null), /** sets the columns of the filtered rows to the given values */ -_set?: (events_set_input | null), +_set?: (game_plugins_set_input | null), /** filter the rows which have to be updated */ -where: events_bool_exp} +where: game_plugins_bool_exp} /** aggregate var_pop on columns */ -export interface events_var_pop_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number +export interface game_plugins_var_pop_fieldsGenqlSelection{ + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count?: boolean | number + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate var_samp on columns */ -export interface events_var_samp_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number +export interface game_plugins_var_samp_fieldsGenqlSelection{ + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count?: boolean | number + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate variance on columns */ -export interface events_variance_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number +export interface game_plugins_variance_fieldsGenqlSelection{ + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count?: boolean | number + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to compare columns of type "float8". All fields are combined with logical 'AND'. */ -export interface float8_comparison_exp {_eq?: (Scalars['float8'] | null),_gt?: (Scalars['float8'] | null),_gte?: (Scalars['float8'] | null),_in?: (Scalars['float8'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['float8'] | null),_lte?: (Scalars['float8'] | null),_neq?: (Scalars['float8'] | null),_nin?: (Scalars['float8'][] | null)} - - -/** columns and relationships of "friends" */ -export interface friendsGenqlSelection{ +/** columns and relationships of "game_server_node_plugins" */ +export interface game_server_node_pluginsGenqlSelection{ + channel?: boolean | number + created_at?: boolean | number + detected?: boolean | number + detected_version?: boolean | number /** An object relationship */ - e_status?: e_friend_statusGenqlSelection - other_player_steam_id?: boolean | number - player_steam_id?: boolean | number + game_server_node?: game_server_nodesGenqlSelection + game_server_node_id?: boolean | number + id?: boolean | number + installed_at?: boolean | number + last_error?: boolean | number + /** An object relationship */ + plugin?: game_pluginsGenqlSelection + plugin_slug?: boolean | number + runtime?: boolean | number + source?: boolean | number status?: boolean | number + updated_at?: boolean | number + version?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "friends" */ -export interface friends_aggregateGenqlSelection{ - aggregate?: friends_aggregate_fieldsGenqlSelection - nodes?: friendsGenqlSelection +/** aggregated selection of "game_server_node_plugins" */ +export interface game_server_node_plugins_aggregateGenqlSelection{ + aggregate?: game_server_node_plugins_aggregate_fieldsGenqlSelection + nodes?: game_server_node_pluginsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +export interface game_server_node_plugins_aggregate_bool_exp {bool_and?: (game_server_node_plugins_aggregate_bool_exp_bool_and | null),bool_or?: (game_server_node_plugins_aggregate_bool_exp_bool_or | null),count?: (game_server_node_plugins_aggregate_bool_exp_count | null)} -/** aggregate fields of "friends" */ -export interface friends_aggregate_fieldsGenqlSelection{ - avg?: friends_avg_fieldsGenqlSelection - count?: { __args: {columns?: (friends_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: friends_max_fieldsGenqlSelection - min?: friends_min_fieldsGenqlSelection - stddev?: friends_stddev_fieldsGenqlSelection - stddev_pop?: friends_stddev_pop_fieldsGenqlSelection - stddev_samp?: friends_stddev_samp_fieldsGenqlSelection - sum?: friends_sum_fieldsGenqlSelection - var_pop?: friends_var_pop_fieldsGenqlSelection - var_samp?: friends_var_samp_fieldsGenqlSelection - variance?: friends_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} +export interface game_server_node_plugins_aggregate_bool_exp_bool_and {arguments: game_server_node_plugins_select_column_game_server_node_plugins_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (game_server_node_plugins_bool_exp | null),predicate: Boolean_comparison_exp} +export interface game_server_node_plugins_aggregate_bool_exp_bool_or {arguments: game_server_node_plugins_select_column_game_server_node_plugins_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (game_server_node_plugins_bool_exp | null),predicate: Boolean_comparison_exp} -/** aggregate avg on columns */ -export interface friends_avg_fieldsGenqlSelection{ - other_player_steam_id?: boolean | number - player_steam_id?: boolean | number +export interface game_server_node_plugins_aggregate_bool_exp_count {arguments?: (game_server_node_plugins_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (game_server_node_plugins_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "game_server_node_plugins" */ +export interface game_server_node_plugins_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (game_server_node_plugins_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: game_server_node_plugins_max_fieldsGenqlSelection + min?: game_server_node_plugins_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "friends". All fields are combined with a logical 'AND'. */ -export interface friends_bool_exp {_and?: (friends_bool_exp[] | null),_not?: (friends_bool_exp | null),_or?: (friends_bool_exp[] | null),e_status?: (e_friend_status_bool_exp | null),other_player_steam_id?: (bigint_comparison_exp | null),player_steam_id?: (bigint_comparison_exp | null),status?: (e_friend_status_enum_comparison_exp | null)} +/** order by aggregate values of table "game_server_node_plugins" */ +export interface game_server_node_plugins_aggregate_order_by {count?: (order_by | null),max?: (game_server_node_plugins_max_order_by | null),min?: (game_server_node_plugins_min_order_by | null)} -/** input type for incrementing numeric columns in table "friends" */ -export interface friends_inc_input {other_player_steam_id?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null)} +/** input type for inserting array relation for remote table "game_server_node_plugins" */ +export interface game_server_node_plugins_arr_rel_insert_input {data: game_server_node_plugins_insert_input[], +/** upsert condition */ +on_conflict?: (game_server_node_plugins_on_conflict | null)} -/** input type for inserting data into table "friends" */ -export interface friends_insert_input {e_status?: (e_friend_status_obj_rel_insert_input | null),other_player_steam_id?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),status?: (e_friend_status_enum | null)} +/** Boolean expression to filter rows from the table "game_server_node_plugins". All fields are combined with a logical 'AND'. */ +export interface game_server_node_plugins_bool_exp {_and?: (game_server_node_plugins_bool_exp[] | null),_not?: (game_server_node_plugins_bool_exp | null),_or?: (game_server_node_plugins_bool_exp[] | null),channel?: (e_game_plugin_channels_enum_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),detected?: (Boolean_comparison_exp | null),detected_version?: (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),installed_at?: (timestamptz_comparison_exp | null),last_error?: (String_comparison_exp | null),plugin?: (game_plugins_bool_exp | null),plugin_slug?: (String_comparison_exp | null),runtime?: (e_plugin_runtimes_enum_comparison_exp | null),source?: (String_comparison_exp | null),status?: (e_game_plugin_install_statuses_enum_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),version?: (String_comparison_exp | null)} + + +/** input type for inserting data into table "game_server_node_plugins" */ +export interface game_server_node_plugins_insert_input {channel?: (e_game_plugin_channels_enum | null),created_at?: (Scalars['timestamptz'] | null),detected?: (Scalars['Boolean'] | null),detected_version?: (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),installed_at?: (Scalars['timestamptz'] | null),last_error?: (Scalars['String'] | null),plugin?: (game_plugins_obj_rel_insert_input | null),plugin_slug?: (Scalars['String'] | null),runtime?: (e_plugin_runtimes_enum | null),source?: (Scalars['String'] | null),status?: (e_game_plugin_install_statuses_enum | null),updated_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface friends_max_fieldsGenqlSelection{ - other_player_steam_id?: boolean | number - player_steam_id?: boolean | number +export interface game_server_node_plugins_max_fieldsGenqlSelection{ + created_at?: boolean | number + detected_version?: boolean | number + game_server_node_id?: boolean | number + id?: boolean | number + installed_at?: boolean | number + last_error?: boolean | number + plugin_slug?: boolean | number + source?: boolean | number + updated_at?: boolean | number + version?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by max() on columns of table "game_server_node_plugins" */ +export interface game_server_node_plugins_max_order_by {created_at?: (order_by | null),detected_version?: (order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),installed_at?: (order_by | null),last_error?: (order_by | null),plugin_slug?: (order_by | null),source?: (order_by | null),updated_at?: (order_by | null),version?: (order_by | null)} + + /** aggregate min on columns */ -export interface friends_min_fieldsGenqlSelection{ - other_player_steam_id?: boolean | number - player_steam_id?: boolean | number +export interface game_server_node_plugins_min_fieldsGenqlSelection{ + created_at?: boolean | number + detected_version?: boolean | number + game_server_node_id?: boolean | number + id?: boolean | number + installed_at?: boolean | number + last_error?: boolean | number + plugin_slug?: boolean | number + source?: boolean | number + updated_at?: boolean | number + version?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "friends" */ -export interface friends_mutation_responseGenqlSelection{ +/** order by min() on columns of table "game_server_node_plugins" */ +export interface game_server_node_plugins_min_order_by {created_at?: (order_by | null),detected_version?: (order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),installed_at?: (order_by | null),last_error?: (order_by | null),plugin_slug?: (order_by | null),source?: (order_by | null),updated_at?: (order_by | null),version?: (order_by | null)} + + +/** response of any mutation on the table "game_server_node_plugins" */ +export interface game_server_node_plugins_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: friendsGenqlSelection + returning?: game_server_node_pluginsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "friends" */ -export interface friends_on_conflict {constraint: friends_constraint,update_columns?: friends_update_column[],where?: (friends_bool_exp | null)} - - -/** Ordering options when selecting data from "friends". */ -export interface friends_order_by {e_status?: (e_friend_status_order_by | null),other_player_steam_id?: (order_by | null),player_steam_id?: (order_by | null),status?: (order_by | null)} - - -/** primary key columns input for table: friends */ -export interface friends_pk_columns_input {other_player_steam_id: Scalars['bigint'],player_steam_id: Scalars['bigint']} - - -/** input type for updating data in table "friends" */ -export interface friends_set_input {other_player_steam_id?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),status?: (e_friend_status_enum | null)} +/** on_conflict condition type for table "game_server_node_plugins" */ +export interface game_server_node_plugins_on_conflict {constraint: game_server_node_plugins_constraint,update_columns?: game_server_node_plugins_update_column[],where?: (game_server_node_plugins_bool_exp | null)} -/** aggregate stddev on columns */ -export interface friends_stddev_fieldsGenqlSelection{ - other_player_steam_id?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** Ordering options when selecting data from "game_server_node_plugins". */ +export interface game_server_node_plugins_order_by {channel?: (order_by | null),created_at?: (order_by | null),detected?: (order_by | null),detected_version?: (order_by | null),game_server_node?: (game_server_nodes_order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),installed_at?: (order_by | null),last_error?: (order_by | null),plugin?: (game_plugins_order_by | null),plugin_slug?: (order_by | null),runtime?: (order_by | null),source?: (order_by | null),status?: (order_by | null),updated_at?: (order_by | null),version?: (order_by | null)} -/** aggregate stddev_pop on columns */ -export interface friends_stddev_pop_fieldsGenqlSelection{ - other_player_steam_id?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** primary key columns input for table: game_server_node_plugins */ +export interface game_server_node_plugins_pk_columns_input {id: Scalars['uuid']} -/** aggregate stddev_samp on columns */ -export interface friends_stddev_samp_fieldsGenqlSelection{ - other_player_steam_id?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** input type for updating data in table "game_server_node_plugins" */ +export interface game_server_node_plugins_set_input {channel?: (e_game_plugin_channels_enum | null),created_at?: (Scalars['timestamptz'] | null),detected?: (Scalars['Boolean'] | null),detected_version?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),installed_at?: (Scalars['timestamptz'] | null),last_error?: (Scalars['String'] | null),plugin_slug?: (Scalars['String'] | null),runtime?: (e_plugin_runtimes_enum | null),source?: (Scalars['String'] | null),status?: (e_game_plugin_install_statuses_enum | null),updated_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} -/** Streaming cursor of the table "friends" */ -export interface friends_stream_cursor_input { +/** Streaming cursor of the table "game_server_node_plugins" */ +export interface game_server_node_plugins_stream_cursor_input { /** Stream column input with initial value */ -initial_value: friends_stream_cursor_value_input, +initial_value: game_server_node_plugins_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface friends_stream_cursor_value_input {other_player_steam_id?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),status?: (e_friend_status_enum | null)} - - -/** aggregate sum on columns */ -export interface friends_sum_fieldsGenqlSelection{ - other_player_steam_id?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +export interface game_server_node_plugins_stream_cursor_value_input {channel?: (e_game_plugin_channels_enum | null),created_at?: (Scalars['timestamptz'] | null),detected?: (Scalars['Boolean'] | null),detected_version?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),installed_at?: (Scalars['timestamptz'] | null),last_error?: (Scalars['String'] | null),plugin_slug?: (Scalars['String'] | null),runtime?: (e_plugin_runtimes_enum | null),source?: (Scalars['String'] | null),status?: (e_game_plugin_install_statuses_enum | null),updated_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} -export interface friends_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (friends_inc_input | null), +export interface game_server_node_plugins_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (friends_set_input | null), +_set?: (game_server_node_plugins_set_input | null), /** filter the rows which have to be updated */ -where: friends_bool_exp} - - -/** aggregate var_pop on columns */ -export interface friends_var_pop_fieldsGenqlSelection{ - other_player_steam_id?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface friends_var_samp_fieldsGenqlSelection{ - other_player_steam_id?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface friends_variance_fieldsGenqlSelection{ - other_player_steam_id?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +where: game_server_node_plugins_bool_exp} /** columns and relationships of "game_server_nodes" */ @@ -48452,6 +51503,31 @@ export interface game_server_nodesGenqlSelection{ pinned_version?: game_versionsGenqlSelection /** A computed field, executes function "game_server_node_plugin_supported" */ plugin_supported?: boolean | number + /** An array relationship */ + plugins?: (game_server_node_pluginsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_server_node_plugins_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?: (game_server_node_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_server_node_plugins_bool_exp | null)} }) + /** An aggregate relationship */ + plugins_aggregate?: (game_server_node_plugins_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_server_node_plugins_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?: (game_server_node_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_server_node_plugins_bool_exp | null)} }) + plugins_synced_at?: boolean | number public_ip?: boolean | number region?: boolean | number /** An array relationship */ @@ -48576,7 +51652,7 @@ export interface game_server_nodes_avg_order_by {build_id?: (order_by | null),cp /** Boolean expression to filter rows from the table "game_server_nodes". All fields are combined with a logical 'AND'. */ -export interface game_server_nodes_bool_exp {_and?: (game_server_nodes_bool_exp[] | null),_not?: (game_server_nodes_bool_exp | null),_or?: (game_server_nodes_bool_exp[] | null),available_server_count?: (Int_comparison_exp | null),build_id?: (Int_comparison_exp | null),cpu_cores_per_socket?: (Int_comparison_exp | null),cpu_frequency_info?: (jsonb_comparison_exp | null),cpu_governor_info?: (jsonb_comparison_exp | null),cpu_sockets?: (Int_comparison_exp | null),cpu_threads_per_core?: (Int_comparison_exp | null),cpu_warnings?: (jsonb_comparison_exp | null),cs2_launch_options?: (jsonb_comparison_exp | null),cs2_video_settings?: (jsonb_comparison_exp | null),csgo_build_id?: (Int_comparison_exp | null),demo_network_limiter?: (Int_comparison_exp | null),disk_available_gb?: (Int_comparison_exp | null),disk_used_percent?: (Int_comparison_exp | null),e_region?: (server_regions_bool_exp | null),e_status?: (e_game_server_node_statuses_bool_exp | null),enabled?: (Boolean_comparison_exp | null),enabled_for_match_making?: (Boolean_comparison_exp | null),end_port_range?: (Int_comparison_exp | null),gpu?: (Boolean_comparison_exp | null),gpu_demos_enabled?: (Boolean_comparison_exp | null),gpu_info?: (jsonb_comparison_exp | null),gpu_rendering_enabled?: (Boolean_comparison_exp | null),gpu_streaming_enabled?: (Boolean_comparison_exp | null),id?: (String_comparison_exp | null),label?: (String_comparison_exp | null),lan_ip?: (inet_comparison_exp | null),node_ip?: (inet_comparison_exp | null),offline_at?: (timestamptz_comparison_exp | null),pin_build_id?: (Int_comparison_exp | null),pin_plugin_runtime?: (String_comparison_exp | null),pin_plugin_version?: (String_comparison_exp | null),pinned_version?: (game_versions_bool_exp | null),plugin_supported?: (Boolean_comparison_exp | null),public_ip?: (inet_comparison_exp | null),region?: (String_comparison_exp | null),servers?: (servers_bool_exp | null),servers_aggregate?: (servers_aggregate_bool_exp | null),shader_bake_progress?: (numeric_comparison_exp | null),shader_bake_progress_stage?: (String_comparison_exp | null),shader_bake_status?: (String_comparison_exp | null),shader_bake_status_history?: (jsonb_comparison_exp | null),start_port_range?: (Int_comparison_exp | null),status?: (e_game_server_node_statuses_enum_comparison_exp | null),supports_cpu_pinning?: (Boolean_comparison_exp | null),supports_low_latency?: (Boolean_comparison_exp | null),token?: (String_comparison_exp | null),total_server_count?: (Int_comparison_exp | null),update_status?: (String_comparison_exp | null),version?: (game_versions_bool_exp | null)} +export interface game_server_nodes_bool_exp {_and?: (game_server_nodes_bool_exp[] | null),_not?: (game_server_nodes_bool_exp | null),_or?: (game_server_nodes_bool_exp[] | null),available_server_count?: (Int_comparison_exp | null),build_id?: (Int_comparison_exp | null),cpu_cores_per_socket?: (Int_comparison_exp | null),cpu_frequency_info?: (jsonb_comparison_exp | null),cpu_governor_info?: (jsonb_comparison_exp | null),cpu_sockets?: (Int_comparison_exp | null),cpu_threads_per_core?: (Int_comparison_exp | null),cpu_warnings?: (jsonb_comparison_exp | null),cs2_launch_options?: (jsonb_comparison_exp | null),cs2_video_settings?: (jsonb_comparison_exp | null),csgo_build_id?: (Int_comparison_exp | null),demo_network_limiter?: (Int_comparison_exp | null),disk_available_gb?: (Int_comparison_exp | null),disk_used_percent?: (Int_comparison_exp | null),e_region?: (server_regions_bool_exp | null),e_status?: (e_game_server_node_statuses_bool_exp | null),enabled?: (Boolean_comparison_exp | null),enabled_for_match_making?: (Boolean_comparison_exp | null),end_port_range?: (Int_comparison_exp | null),gpu?: (Boolean_comparison_exp | null),gpu_demos_enabled?: (Boolean_comparison_exp | null),gpu_info?: (jsonb_comparison_exp | null),gpu_rendering_enabled?: (Boolean_comparison_exp | null),gpu_streaming_enabled?: (Boolean_comparison_exp | null),id?: (String_comparison_exp | null),label?: (String_comparison_exp | null),lan_ip?: (inet_comparison_exp | null),node_ip?: (inet_comparison_exp | null),offline_at?: (timestamptz_comparison_exp | null),pin_build_id?: (Int_comparison_exp | null),pin_plugin_runtime?: (String_comparison_exp | null),pin_plugin_version?: (String_comparison_exp | null),pinned_version?: (game_versions_bool_exp | null),plugin_supported?: (Boolean_comparison_exp | null),plugins?: (game_server_node_plugins_bool_exp | null),plugins_aggregate?: (game_server_node_plugins_aggregate_bool_exp | null),plugins_synced_at?: (timestamptz_comparison_exp | null),public_ip?: (inet_comparison_exp | null),region?: (String_comparison_exp | null),servers?: (servers_bool_exp | null),servers_aggregate?: (servers_aggregate_bool_exp | null),shader_bake_progress?: (numeric_comparison_exp | null),shader_bake_progress_stage?: (String_comparison_exp | null),shader_bake_status?: (String_comparison_exp | null),shader_bake_status_history?: (jsonb_comparison_exp | null),start_port_range?: (Int_comparison_exp | null),status?: (e_game_server_node_statuses_enum_comparison_exp | null),supports_cpu_pinning?: (Boolean_comparison_exp | null),supports_low_latency?: (Boolean_comparison_exp | null),token?: (String_comparison_exp | null),total_server_count?: (Int_comparison_exp | null),update_status?: (String_comparison_exp | null),version?: (game_versions_bool_exp | null)} /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ @@ -48596,7 +51672,7 @@ export interface game_server_nodes_inc_input {build_id?: (Scalars['Int'] | null) /** input type for inserting data into table "game_server_nodes" */ -export interface game_server_nodes_insert_input {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),cpu_warnings?: (Scalars['jsonb'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | 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),e_region?: (server_regions_obj_rel_insert_input | null),e_status?: (e_game_server_node_statuses_obj_rel_insert_input | null),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),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),pinned_version?: (game_versions_obj_rel_insert_input | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),servers?: (servers_arr_rel_insert_input | null),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'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null),version?: (game_versions_obj_rel_insert_input | null)} +export interface game_server_nodes_insert_input {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),cpu_warnings?: (Scalars['jsonb'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | 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),e_region?: (server_regions_obj_rel_insert_input | null),e_status?: (e_game_server_node_statuses_obj_rel_insert_input | null),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),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),pinned_version?: (game_versions_obj_rel_insert_input | null),plugins?: (game_server_node_plugins_arr_rel_insert_input | null),plugins_synced_at?: (Scalars['timestamptz'] | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),servers?: (servers_arr_rel_insert_input | null),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'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null),version?: (game_versions_obj_rel_insert_input | null)} /** aggregate max on columns */ @@ -48618,6 +51694,7 @@ export interface game_server_nodes_max_fieldsGenqlSelection{ pin_build_id?: boolean | number pin_plugin_runtime?: boolean | number pin_plugin_version?: boolean | number + plugins_synced_at?: boolean | number region?: boolean | number shader_bake_progress?: boolean | number shader_bake_progress_stage?: boolean | number @@ -48633,7 +51710,7 @@ export interface game_server_nodes_max_fieldsGenqlSelection{ /** order by max() on columns of table "game_server_nodes" */ -export interface game_server_nodes_max_order_by {build_id?: (order_by | null),cpu_cores_per_socket?: (order_by | null),cpu_sockets?: (order_by | null),cpu_threads_per_core?: (order_by | null),csgo_build_id?: (order_by | null),demo_network_limiter?: (order_by | null),disk_available_gb?: (order_by | null),disk_used_percent?: (order_by | null),end_port_range?: (order_by | null),id?: (order_by | null),label?: (order_by | null),offline_at?: (order_by | null),pin_build_id?: (order_by | null),pin_plugin_runtime?: (order_by | null),pin_plugin_version?: (order_by | null),region?: (order_by | null),shader_bake_progress?: (order_by | null),shader_bake_progress_stage?: (order_by | null),shader_bake_status?: (order_by | null),start_port_range?: (order_by | null),token?: (order_by | null),update_status?: (order_by | null)} +export interface game_server_nodes_max_order_by {build_id?: (order_by | null),cpu_cores_per_socket?: (order_by | null),cpu_sockets?: (order_by | null),cpu_threads_per_core?: (order_by | null),csgo_build_id?: (order_by | null),demo_network_limiter?: (order_by | null),disk_available_gb?: (order_by | null),disk_used_percent?: (order_by | null),end_port_range?: (order_by | null),id?: (order_by | null),label?: (order_by | null),offline_at?: (order_by | null),pin_build_id?: (order_by | null),pin_plugin_runtime?: (order_by | null),pin_plugin_version?: (order_by | null),plugins_synced_at?: (order_by | null),region?: (order_by | null),shader_bake_progress?: (order_by | null),shader_bake_progress_stage?: (order_by | null),shader_bake_status?: (order_by | null),start_port_range?: (order_by | null),token?: (order_by | null),update_status?: (order_by | null)} /** aggregate min on columns */ @@ -48655,6 +51732,7 @@ export interface game_server_nodes_min_fieldsGenqlSelection{ pin_build_id?: boolean | number pin_plugin_runtime?: boolean | number pin_plugin_version?: boolean | number + plugins_synced_at?: boolean | number region?: boolean | number shader_bake_progress?: boolean | number shader_bake_progress_stage?: boolean | number @@ -48670,7 +51748,7 @@ export interface game_server_nodes_min_fieldsGenqlSelection{ /** order by min() on columns of table "game_server_nodes" */ -export interface game_server_nodes_min_order_by {build_id?: (order_by | null),cpu_cores_per_socket?: (order_by | null),cpu_sockets?: (order_by | null),cpu_threads_per_core?: (order_by | null),csgo_build_id?: (order_by | null),demo_network_limiter?: (order_by | null),disk_available_gb?: (order_by | null),disk_used_percent?: (order_by | null),end_port_range?: (order_by | null),id?: (order_by | null),label?: (order_by | null),offline_at?: (order_by | null),pin_build_id?: (order_by | null),pin_plugin_runtime?: (order_by | null),pin_plugin_version?: (order_by | null),region?: (order_by | null),shader_bake_progress?: (order_by | null),shader_bake_progress_stage?: (order_by | null),shader_bake_status?: (order_by | null),start_port_range?: (order_by | null),token?: (order_by | null),update_status?: (order_by | null)} +export interface game_server_nodes_min_order_by {build_id?: (order_by | null),cpu_cores_per_socket?: (order_by | null),cpu_sockets?: (order_by | null),cpu_threads_per_core?: (order_by | null),csgo_build_id?: (order_by | null),demo_network_limiter?: (order_by | null),disk_available_gb?: (order_by | null),disk_used_percent?: (order_by | null),end_port_range?: (order_by | null),id?: (order_by | null),label?: (order_by | null),offline_at?: (order_by | null),pin_build_id?: (order_by | null),pin_plugin_runtime?: (order_by | null),pin_plugin_version?: (order_by | null),plugins_synced_at?: (order_by | null),region?: (order_by | null),shader_bake_progress?: (order_by | null),shader_bake_progress_stage?: (order_by | null),shader_bake_status?: (order_by | null),start_port_range?: (order_by | null),token?: (order_by | null),update_status?: (order_by | null)} /** response of any mutation on the table "game_server_nodes" */ @@ -48695,7 +51773,7 @@ export interface game_server_nodes_on_conflict {constraint: game_server_nodes_co /** Ordering options when selecting data from "game_server_nodes". */ -export interface game_server_nodes_order_by {available_server_count?: (order_by | null),build_id?: (order_by | null),cpu_cores_per_socket?: (order_by | null),cpu_frequency_info?: (order_by | null),cpu_governor_info?: (order_by | null),cpu_sockets?: (order_by | null),cpu_threads_per_core?: (order_by | null),cpu_warnings?: (order_by | null),cs2_launch_options?: (order_by | null),cs2_video_settings?: (order_by | null),csgo_build_id?: (order_by | null),demo_network_limiter?: (order_by | null),disk_available_gb?: (order_by | null),disk_used_percent?: (order_by | null),e_region?: (server_regions_order_by | null),e_status?: (e_game_server_node_statuses_order_by | null),enabled?: (order_by | null),enabled_for_match_making?: (order_by | null),end_port_range?: (order_by | null),gpu?: (order_by | null),gpu_demos_enabled?: (order_by | null),gpu_info?: (order_by | null),gpu_rendering_enabled?: (order_by | null),gpu_streaming_enabled?: (order_by | null),id?: (order_by | null),label?: (order_by | null),lan_ip?: (order_by | null),node_ip?: (order_by | null),offline_at?: (order_by | null),pin_build_id?: (order_by | null),pin_plugin_runtime?: (order_by | null),pin_plugin_version?: (order_by | null),pinned_version?: (game_versions_order_by | null),plugin_supported?: (order_by | null),public_ip?: (order_by | null),region?: (order_by | null),servers_aggregate?: (servers_aggregate_order_by | null),shader_bake_progress?: (order_by | null),shader_bake_progress_stage?: (order_by | null),shader_bake_status?: (order_by | null),shader_bake_status_history?: (order_by | null),start_port_range?: (order_by | null),status?: (order_by | null),supports_cpu_pinning?: (order_by | null),supports_low_latency?: (order_by | null),token?: (order_by | null),total_server_count?: (order_by | null),update_status?: (order_by | null),version?: (game_versions_order_by | null)} +export interface game_server_nodes_order_by {available_server_count?: (order_by | null),build_id?: (order_by | null),cpu_cores_per_socket?: (order_by | null),cpu_frequency_info?: (order_by | null),cpu_governor_info?: (order_by | null),cpu_sockets?: (order_by | null),cpu_threads_per_core?: (order_by | null),cpu_warnings?: (order_by | null),cs2_launch_options?: (order_by | null),cs2_video_settings?: (order_by | null),csgo_build_id?: (order_by | null),demo_network_limiter?: (order_by | null),disk_available_gb?: (order_by | null),disk_used_percent?: (order_by | null),e_region?: (server_regions_order_by | null),e_status?: (e_game_server_node_statuses_order_by | null),enabled?: (order_by | null),enabled_for_match_making?: (order_by | null),end_port_range?: (order_by | null),gpu?: (order_by | null),gpu_demos_enabled?: (order_by | null),gpu_info?: (order_by | null),gpu_rendering_enabled?: (order_by | null),gpu_streaming_enabled?: (order_by | null),id?: (order_by | null),label?: (order_by | null),lan_ip?: (order_by | null),node_ip?: (order_by | null),offline_at?: (order_by | null),pin_build_id?: (order_by | null),pin_plugin_runtime?: (order_by | null),pin_plugin_version?: (order_by | null),pinned_version?: (game_versions_order_by | null),plugin_supported?: (order_by | null),plugins_aggregate?: (game_server_node_plugins_aggregate_order_by | null),plugins_synced_at?: (order_by | null),public_ip?: (order_by | null),region?: (order_by | null),servers_aggregate?: (servers_aggregate_order_by | null),shader_bake_progress?: (order_by | null),shader_bake_progress_stage?: (order_by | null),shader_bake_status?: (order_by | null),shader_bake_status_history?: (order_by | null),start_port_range?: (order_by | null),status?: (order_by | null),supports_cpu_pinning?: (order_by | null),supports_low_latency?: (order_by | null),token?: (order_by | null),total_server_count?: (order_by | null),update_status?: (order_by | null),version?: (game_versions_order_by | null)} /** primary key columns input for table: game_server_nodes */ @@ -48707,7 +51785,7 @@ export interface game_server_nodes_prepend_input {cpu_frequency_info?: (Scalars[ /** input type for updating data in table "game_server_nodes" */ -export interface game_server_nodes_set_input {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),cpu_warnings?: (Scalars['jsonb'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | 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),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),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),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),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'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null)} +export interface game_server_nodes_set_input {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),cpu_warnings?: (Scalars['jsonb'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | 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),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),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),plugins_synced_at?: (Scalars['timestamptz'] | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),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'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null)} /** aggregate stddev on columns */ @@ -48800,7 +51878,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface game_server_nodes_stream_cursor_value_input {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),cpu_warnings?: (Scalars['jsonb'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | 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),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),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),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),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'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null)} +export interface game_server_nodes_stream_cursor_value_input {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),cpu_warnings?: (Scalars['jsonb'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | 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),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),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),plugins_synced_at?: (Scalars['timestamptz'] | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),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'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null)} /** aggregate sum on columns */ @@ -55971,6 +59049,9 @@ export interface match_optionsGenqlSelection{ check_in_setting?: boolean | number coaches?: boolean | number default_models?: boolean | number + /** An object relationship */ + game_mode?: game_modesGenqlSelection + game_mode_id?: boolean | number halftime_pausematch?: boolean | number /** A computed field, executes function "has_active_matches" */ has_active_matches?: boolean | number @@ -56039,6 +59120,14 @@ export interface match_options_aggregateGenqlSelection{ __scalar?: boolean | number } +export interface match_options_aggregate_bool_exp {bool_and?: (match_options_aggregate_bool_exp_bool_and | null),bool_or?: (match_options_aggregate_bool_exp_bool_or | null),count?: (match_options_aggregate_bool_exp_count | null)} + +export interface match_options_aggregate_bool_exp_bool_and {arguments: match_options_select_column_match_options_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_options_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface match_options_aggregate_bool_exp_bool_or {arguments: match_options_select_column_match_options_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_options_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface match_options_aggregate_bool_exp_count {arguments?: (match_options_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_options_bool_exp | null),predicate: Int_comparison_exp} + /** aggregate fields of "match_options" */ export interface match_options_aggregate_fieldsGenqlSelection{ @@ -56058,6 +59147,16 @@ export interface match_options_aggregate_fieldsGenqlSelection{ } +/** order by aggregate values of table "match_options" */ +export interface match_options_aggregate_order_by {avg?: (match_options_avg_order_by | null),count?: (order_by | null),max?: (match_options_max_order_by | null),min?: (match_options_min_order_by | null),stddev?: (match_options_stddev_order_by | null),stddev_pop?: (match_options_stddev_pop_order_by | null),stddev_samp?: (match_options_stddev_samp_order_by | null),sum?: (match_options_sum_order_by | null),var_pop?: (match_options_var_pop_order_by | null),var_samp?: (match_options_var_samp_order_by | null),variance?: (match_options_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "match_options" */ +export interface match_options_arr_rel_insert_input {data: match_options_insert_input[], +/** upsert condition */ +on_conflict?: (match_options_on_conflict | null)} + + /** aggregate avg on columns */ export interface match_options_avg_fieldsGenqlSelection{ auto_cancel_duration?: boolean | number @@ -56073,8 +59172,12 @@ export interface match_options_avg_fieldsGenqlSelection{ } +/** order by avg() on columns of table "match_options" */ +export interface match_options_avg_order_by {auto_cancel_duration?: (order_by | null),best_of?: (order_by | null),live_match_timeout?: (order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),round_restart_delay?: (order_by | null),tv_delay?: (order_by | null),veto_pick_timeout?: (order_by | null)} + + /** Boolean expression to filter rows from the table "match_options". All fields are combined with a logical 'AND'. */ -export interface match_options_bool_exp {_and?: (match_options_bool_exp[] | null),_not?: (match_options_bool_exp | null),_or?: (match_options_bool_exp[] | null),auto_cancel_duration?: (Int_comparison_exp | null),auto_cancellation?: (Boolean_comparison_exp | null),best_of?: (Int_comparison_exp | null),camera_allow_teammates?: (Boolean_comparison_exp | null),camera_required?: (Boolean_comparison_exp | null),check_in_setting?: (e_check_in_settings_enum_comparison_exp | null),coaches?: (Boolean_comparison_exp | null),default_models?: (Boolean_comparison_exp | null),halftime_pausematch?: (Boolean_comparison_exp | null),has_active_matches?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),knife_round?: (Boolean_comparison_exp | null),live_match_timeout?: (Int_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),map_veto?: (Boolean_comparison_exp | null),match_mode?: (e_match_mode_enum_comparison_exp | null),matches?: (matches_bool_exp | null),matches_aggregate?: (matches_aggregate_bool_exp | null),mr?: (Int_comparison_exp | null),number_of_substitutes?: (Int_comparison_exp | null),overtime?: (Boolean_comparison_exp | null),prefer_dedicated_server?: (Boolean_comparison_exp | null),ready_setting?: (e_ready_settings_enum_comparison_exp | null),region_veto?: (Boolean_comparison_exp | null),regions?: (String_array_comparison_exp | null),round_restart_delay?: (Int_comparison_exp | null),tech_timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_bracket?: (tournament_brackets_bool_exp | null),tournament_stage?: (tournament_stages_bool_exp | null),tv_delay?: (Int_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null),veto_pick_timeout?: (Int_comparison_exp | null)} +export interface match_options_bool_exp {_and?: (match_options_bool_exp[] | null),_not?: (match_options_bool_exp | null),_or?: (match_options_bool_exp[] | null),auto_cancel_duration?: (Int_comparison_exp | null),auto_cancellation?: (Boolean_comparison_exp | null),best_of?: (Int_comparison_exp | null),camera_allow_teammates?: (Boolean_comparison_exp | null),camera_required?: (Boolean_comparison_exp | null),check_in_setting?: (e_check_in_settings_enum_comparison_exp | null),coaches?: (Boolean_comparison_exp | null),default_models?: (Boolean_comparison_exp | null),game_mode?: (game_modes_bool_exp | null),game_mode_id?: (uuid_comparison_exp | null),halftime_pausematch?: (Boolean_comparison_exp | null),has_active_matches?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),knife_round?: (Boolean_comparison_exp | null),live_match_timeout?: (Int_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),map_veto?: (Boolean_comparison_exp | null),match_mode?: (e_match_mode_enum_comparison_exp | null),matches?: (matches_bool_exp | null),matches_aggregate?: (matches_aggregate_bool_exp | null),mr?: (Int_comparison_exp | null),number_of_substitutes?: (Int_comparison_exp | null),overtime?: (Boolean_comparison_exp | null),prefer_dedicated_server?: (Boolean_comparison_exp | null),ready_setting?: (e_ready_settings_enum_comparison_exp | null),region_veto?: (Boolean_comparison_exp | null),regions?: (String_array_comparison_exp | null),round_restart_delay?: (Int_comparison_exp | null),tech_timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_bracket?: (tournament_brackets_bool_exp | null),tournament_stage?: (tournament_stages_bool_exp | null),tv_delay?: (Int_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null),veto_pick_timeout?: (Int_comparison_exp | null)} /** input type for incrementing numeric columns in table "match_options" */ @@ -56082,13 +59185,14 @@ export interface match_options_inc_input {auto_cancel_duration?: (Scalars['Int'] /** input type for inserting data into table "match_options" */ -export interface match_options_insert_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),camera_allow_teammates?: (Scalars['Boolean'] | null),camera_required?: (Scalars['Boolean'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),matches?: (matches_arr_rel_insert_input | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_bracket?: (tournament_brackets_obj_rel_insert_input | null),tournament_stage?: (tournament_stages_obj_rel_insert_input | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null),veto_pick_timeout?: (Scalars['Int'] | null)} +export interface match_options_insert_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),camera_allow_teammates?: (Scalars['Boolean'] | null),camera_required?: (Scalars['Boolean'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),game_mode?: (game_modes_obj_rel_insert_input | null),game_mode_id?: (Scalars['uuid'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),matches?: (matches_arr_rel_insert_input | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_bracket?: (tournament_brackets_obj_rel_insert_input | null),tournament_stage?: (tournament_stages_obj_rel_insert_input | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null),veto_pick_timeout?: (Scalars['Int'] | null)} /** aggregate max on columns */ export interface match_options_max_fieldsGenqlSelection{ auto_cancel_duration?: boolean | number best_of?: boolean | number + game_mode_id?: boolean | number id?: boolean | number invite_code?: boolean | number live_match_timeout?: boolean | number @@ -56104,10 +59208,15 @@ export interface match_options_max_fieldsGenqlSelection{ } +/** order by max() on columns of table "match_options" */ +export interface match_options_max_order_by {auto_cancel_duration?: (order_by | null),best_of?: (order_by | null),game_mode_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),live_match_timeout?: (order_by | null),map_pool_id?: (order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),regions?: (order_by | null),round_restart_delay?: (order_by | null),tv_delay?: (order_by | null),veto_pick_timeout?: (order_by | null)} + + /** aggregate min on columns */ export interface match_options_min_fieldsGenqlSelection{ auto_cancel_duration?: boolean | number best_of?: boolean | number + game_mode_id?: boolean | number id?: boolean | number invite_code?: boolean | number live_match_timeout?: boolean | number @@ -56123,6 +59232,10 @@ export interface match_options_min_fieldsGenqlSelection{ } +/** order by min() on columns of table "match_options" */ +export interface match_options_min_order_by {auto_cancel_duration?: (order_by | null),best_of?: (order_by | null),game_mode_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),live_match_timeout?: (order_by | null),map_pool_id?: (order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),regions?: (order_by | null),round_restart_delay?: (order_by | null),tv_delay?: (order_by | null),veto_pick_timeout?: (order_by | null)} + + /** response of any mutation on the table "match_options" */ export interface match_options_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ @@ -56145,7 +59258,7 @@ export interface match_options_on_conflict {constraint: match_options_constraint /** Ordering options when selecting data from "match_options". */ -export interface match_options_order_by {auto_cancel_duration?: (order_by | null),auto_cancellation?: (order_by | null),best_of?: (order_by | null),camera_allow_teammates?: (order_by | null),camera_required?: (order_by | null),check_in_setting?: (order_by | null),coaches?: (order_by | null),default_models?: (order_by | null),halftime_pausematch?: (order_by | null),has_active_matches?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),knife_round?: (order_by | null),live_match_timeout?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),map_veto?: (order_by | null),match_mode?: (order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),overtime?: (order_by | null),prefer_dedicated_server?: (order_by | null),ready_setting?: (order_by | null),region_veto?: (order_by | null),regions?: (order_by | null),round_restart_delay?: (order_by | null),tech_timeout_setting?: (order_by | null),timeout_setting?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_bracket?: (tournament_brackets_order_by | null),tournament_stage?: (tournament_stages_order_by | null),tv_delay?: (order_by | null),type?: (order_by | null),veto_pick_timeout?: (order_by | null)} +export interface match_options_order_by {auto_cancel_duration?: (order_by | null),auto_cancellation?: (order_by | null),best_of?: (order_by | null),camera_allow_teammates?: (order_by | null),camera_required?: (order_by | null),check_in_setting?: (order_by | null),coaches?: (order_by | null),default_models?: (order_by | null),game_mode?: (game_modes_order_by | null),game_mode_id?: (order_by | null),halftime_pausematch?: (order_by | null),has_active_matches?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),knife_round?: (order_by | null),live_match_timeout?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),map_veto?: (order_by | null),match_mode?: (order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),overtime?: (order_by | null),prefer_dedicated_server?: (order_by | null),ready_setting?: (order_by | null),region_veto?: (order_by | null),regions?: (order_by | null),round_restart_delay?: (order_by | null),tech_timeout_setting?: (order_by | null),timeout_setting?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_bracket?: (tournament_brackets_order_by | null),tournament_stage?: (tournament_stages_order_by | null),tv_delay?: (order_by | null),type?: (order_by | null),veto_pick_timeout?: (order_by | null)} /** primary key columns input for table: match_options */ @@ -56153,7 +59266,7 @@ export interface match_options_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "match_options" */ -export interface match_options_set_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),camera_allow_teammates?: (Scalars['Boolean'] | null),camera_required?: (Scalars['Boolean'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null),veto_pick_timeout?: (Scalars['Int'] | null)} +export interface match_options_set_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),camera_allow_teammates?: (Scalars['Boolean'] | null),camera_required?: (Scalars['Boolean'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),game_mode_id?: (Scalars['uuid'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null),veto_pick_timeout?: (Scalars['Int'] | null)} /** aggregate stddev on columns */ @@ -56171,6 +59284,10 @@ export interface match_options_stddev_fieldsGenqlSelection{ } +/** order by stddev() on columns of table "match_options" */ +export interface match_options_stddev_order_by {auto_cancel_duration?: (order_by | null),best_of?: (order_by | null),live_match_timeout?: (order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),round_restart_delay?: (order_by | null),tv_delay?: (order_by | null),veto_pick_timeout?: (order_by | null)} + + /** aggregate stddev_pop on columns */ export interface match_options_stddev_pop_fieldsGenqlSelection{ auto_cancel_duration?: boolean | number @@ -56186,6 +59303,10 @@ export interface match_options_stddev_pop_fieldsGenqlSelection{ } +/** order by stddev_pop() on columns of table "match_options" */ +export interface match_options_stddev_pop_order_by {auto_cancel_duration?: (order_by | null),best_of?: (order_by | null),live_match_timeout?: (order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),round_restart_delay?: (order_by | null),tv_delay?: (order_by | null),veto_pick_timeout?: (order_by | null)} + + /** aggregate stddev_samp on columns */ export interface match_options_stddev_samp_fieldsGenqlSelection{ auto_cancel_duration?: boolean | number @@ -56201,6 +59322,10 @@ export interface match_options_stddev_samp_fieldsGenqlSelection{ } +/** order by stddev_samp() on columns of table "match_options" */ +export interface match_options_stddev_samp_order_by {auto_cancel_duration?: (order_by | null),best_of?: (order_by | null),live_match_timeout?: (order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),round_restart_delay?: (order_by | null),tv_delay?: (order_by | null),veto_pick_timeout?: (order_by | null)} + + /** Streaming cursor of the table "match_options" */ export interface match_options_stream_cursor_input { /** Stream column input with initial value */ @@ -56210,7 +59335,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface match_options_stream_cursor_value_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),camera_allow_teammates?: (Scalars['Boolean'] | null),camera_required?: (Scalars['Boolean'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null),veto_pick_timeout?: (Scalars['Int'] | null)} +export interface match_options_stream_cursor_value_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),camera_allow_teammates?: (Scalars['Boolean'] | null),camera_required?: (Scalars['Boolean'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),game_mode_id?: (Scalars['uuid'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null),veto_pick_timeout?: (Scalars['Int'] | null)} /** aggregate sum on columns */ @@ -56227,6 +59352,10 @@ export interface match_options_sum_fieldsGenqlSelection{ __scalar?: boolean | number } + +/** order by sum() on columns of table "match_options" */ +export interface match_options_sum_order_by {auto_cancel_duration?: (order_by | null),best_of?: (order_by | null),live_match_timeout?: (order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),round_restart_delay?: (order_by | null),tv_delay?: (order_by | null),veto_pick_timeout?: (order_by | null)} + export interface match_options_updates { /** increments the numeric columns with given value of the filtered values */ _inc?: (match_options_inc_input | null), @@ -56251,6 +59380,10 @@ export interface match_options_var_pop_fieldsGenqlSelection{ } +/** order by var_pop() on columns of table "match_options" */ +export interface match_options_var_pop_order_by {auto_cancel_duration?: (order_by | null),best_of?: (order_by | null),live_match_timeout?: (order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),round_restart_delay?: (order_by | null),tv_delay?: (order_by | null),veto_pick_timeout?: (order_by | null)} + + /** aggregate var_samp on columns */ export interface match_options_var_samp_fieldsGenqlSelection{ auto_cancel_duration?: boolean | number @@ -56266,6 +59399,10 @@ export interface match_options_var_samp_fieldsGenqlSelection{ } +/** order by var_samp() on columns of table "match_options" */ +export interface match_options_var_samp_order_by {auto_cancel_duration?: (order_by | null),best_of?: (order_by | null),live_match_timeout?: (order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),round_restart_delay?: (order_by | null),tv_delay?: (order_by | null),veto_pick_timeout?: (order_by | null)} + + /** aggregate variance on columns */ export interface match_options_variance_fieldsGenqlSelection{ auto_cancel_duration?: boolean | number @@ -56281,6 +59418,10 @@ export interface match_options_variance_fieldsGenqlSelection{ } +/** order by variance() on columns of table "match_options" */ +export interface match_options_variance_order_by {auto_cancel_duration?: (order_by | null),best_of?: (order_by | null),live_match_timeout?: (order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),round_restart_delay?: (order_by | null),tv_delay?: (order_by | null),veto_pick_timeout?: (order_by | null)} + + /** columns and relationships of "match_region_veto_picks" */ export interface match_region_veto_picksGenqlSelection{ auto_picked?: boolean | number @@ -56870,6 +60011,7 @@ export interface matchesGenqlSelection{ connection_link?: boolean | number /** A computed field, executes function "get_match_connection_string" */ connection_string?: boolean | number + counts_toward_ranking?: boolean | number created_at?: boolean | number /** A computed field, executes function "get_current_match_map" */ current_match_map_id?: boolean | number @@ -57360,7 +60502,11 @@ export interface matches_aggregateGenqlSelection{ __scalar?: boolean | number } -export interface matches_aggregate_bool_exp {count?: (matches_aggregate_bool_exp_count | null)} +export interface matches_aggregate_bool_exp {bool_and?: (matches_aggregate_bool_exp_bool_and | null),bool_or?: (matches_aggregate_bool_exp_bool_or | null),count?: (matches_aggregate_bool_exp_count | null)} + +export interface matches_aggregate_bool_exp_bool_and {arguments: matches_select_column_matches_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (matches_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface matches_aggregate_bool_exp_bool_or {arguments: matches_select_column_matches_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (matches_bool_exp | null),predicate: Boolean_comparison_exp} export interface matches_aggregate_bool_exp_count {arguments?: (matches_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (matches_bool_exp | null),predicate: Int_comparison_exp} @@ -57410,7 +60556,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_plugin_runtime?: (String_comparison_exp | null),server_region?: (String_comparison_exp | null),server_type?: (String_comparison_exp | null),share_code?: (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),veto_pick_expires_at?: (timestamptz_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),counts_toward_ranking?: (Boolean_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),share_code?: (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),veto_pick_expires_at?: (timestamptz_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" */ @@ -57418,7 +60564,7 @@ export interface matches_inc_input {organizer_steam_id?: (Scalars['bigint'] | nu /** input type for inserting data into table "matches" */ -export interface matches_insert_input {cancels_at?: (Scalars['timestamptz'] | null),clutches?: (v_match_clutches_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),demos?: (match_map_demos_arr_rel_insert_input | null),draft_games?: (draft_games_arr_rel_insert_input | null),e_match_status?: (e_match_status_obj_rel_insert_input | null),e_region?: (server_regions_obj_rel_insert_input | null),elo_changes?: (v_player_elo_arr_rel_insert_input | null),ended_at?: (Scalars['timestamptz'] | null),external_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),lineup_1?: (match_lineups_obj_rel_insert_input | null),lineup_1_id?: (Scalars['uuid'] | null),lineup_2?: (match_lineups_obj_rel_insert_input | null),lineup_2_id?: (Scalars['uuid'] | null),map_veto_picks?: (match_map_veto_picks_arr_rel_insert_input | null),match_maps?: (match_maps_arr_rel_insert_input | null),match_options_id?: (Scalars['uuid'] | null),opening_duels?: (v_match_player_opening_duels_arr_rel_insert_input | null),options?: (match_options_obj_rel_insert_input | null),organizer?: (players_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),password?: (Scalars['String'] | null),player_assists?: (player_assists_arr_rel_insert_input | null),player_damages?: (player_damages_arr_rel_insert_input | null),player_flashes?: (player_flashes_arr_rel_insert_input | null),player_kills?: (player_kills_arr_rel_insert_input | null),player_objectives?: (player_objectives_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),player_utility?: (player_utility_arr_rel_insert_input | null),region?: (Scalars['String'] | null),region_veto_picks?: (match_region_veto_picks_arr_rel_insert_input | null),scheduled_at?: (Scalars['timestamptz'] | null),server?: (servers_obj_rel_insert_input | null),server_error?: (Scalars['String'] | null),server_id?: (Scalars['uuid'] | null),share_code?: (Scalars['String'] | null),source?: (Scalars['String'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_status_enum | null),streams?: (match_streams_arr_rel_insert_input | null),tournament_brackets?: (tournament_brackets_arr_rel_insert_input | null),veto_pick_expires_at?: (Scalars['timestamptz'] | null),winner?: (match_lineups_obj_rel_insert_input | null),winning_lineup_id?: (Scalars['uuid'] | null)} +export interface matches_insert_input {cancels_at?: (Scalars['timestamptz'] | null),clutches?: (v_match_clutches_arr_rel_insert_input | null),counts_toward_ranking?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),demos?: (match_map_demos_arr_rel_insert_input | null),draft_games?: (draft_games_arr_rel_insert_input | null),e_match_status?: (e_match_status_obj_rel_insert_input | null),e_region?: (server_regions_obj_rel_insert_input | null),elo_changes?: (v_player_elo_arr_rel_insert_input | null),ended_at?: (Scalars['timestamptz'] | null),external_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),lineup_1?: (match_lineups_obj_rel_insert_input | null),lineup_1_id?: (Scalars['uuid'] | null),lineup_2?: (match_lineups_obj_rel_insert_input | null),lineup_2_id?: (Scalars['uuid'] | null),map_veto_picks?: (match_map_veto_picks_arr_rel_insert_input | null),match_maps?: (match_maps_arr_rel_insert_input | null),match_options_id?: (Scalars['uuid'] | null),opening_duels?: (v_match_player_opening_duels_arr_rel_insert_input | null),options?: (match_options_obj_rel_insert_input | null),organizer?: (players_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),password?: (Scalars['String'] | null),player_assists?: (player_assists_arr_rel_insert_input | null),player_damages?: (player_damages_arr_rel_insert_input | null),player_flashes?: (player_flashes_arr_rel_insert_input | null),player_kills?: (player_kills_arr_rel_insert_input | null),player_objectives?: (player_objectives_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),player_utility?: (player_utility_arr_rel_insert_input | null),region?: (Scalars['String'] | null),region_veto_picks?: (match_region_veto_picks_arr_rel_insert_input | null),scheduled_at?: (Scalars['timestamptz'] | null),server?: (servers_obj_rel_insert_input | null),server_error?: (Scalars['String'] | null),server_id?: (Scalars['uuid'] | null),share_code?: (Scalars['String'] | null),source?: (Scalars['String'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_status_enum | null),streams?: (match_streams_arr_rel_insert_input | null),tournament_brackets?: (tournament_brackets_arr_rel_insert_input | null),veto_pick_expires_at?: (Scalars['timestamptz'] | null),winner?: (match_lineups_obj_rel_insert_input | null),winning_lineup_id?: (Scalars['uuid'] | null)} /** aggregate max on columns */ @@ -57559,7 +60705,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_plugin_runtime?: (order_by | null),server_region?: (order_by | null),server_type?: (order_by | null),share_code?: (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),veto_pick_expires_at?: (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),counts_toward_ranking?: (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),share_code?: (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),veto_pick_expires_at?: (order_by | null),winner?: (match_lineups_order_by | null),winning_lineup_id?: (order_by | null)} /** primary key columns input for table: matches */ @@ -57567,7 +60713,7 @@ export interface matches_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "matches" */ -export interface matches_set_input {cancels_at?: (Scalars['timestamptz'] | null),created_at?: (Scalars['timestamptz'] | null),ended_at?: (Scalars['timestamptz'] | null),external_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),lineup_1_id?: (Scalars['uuid'] | null),lineup_2_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),organizer_steam_id?: (Scalars['bigint'] | null),password?: (Scalars['String'] | null),region?: (Scalars['String'] | null),scheduled_at?: (Scalars['timestamptz'] | null),server_error?: (Scalars['String'] | null),server_id?: (Scalars['uuid'] | null),share_code?: (Scalars['String'] | null),source?: (Scalars['String'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_status_enum | null),veto_pick_expires_at?: (Scalars['timestamptz'] | null),winning_lineup_id?: (Scalars['uuid'] | null)} +export interface matches_set_input {cancels_at?: (Scalars['timestamptz'] | null),counts_toward_ranking?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),ended_at?: (Scalars['timestamptz'] | null),external_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),lineup_1_id?: (Scalars['uuid'] | null),lineup_2_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),organizer_steam_id?: (Scalars['bigint'] | null),password?: (Scalars['String'] | null),region?: (Scalars['String'] | null),scheduled_at?: (Scalars['timestamptz'] | null),server_error?: (Scalars['String'] | null),server_id?: (Scalars['uuid'] | null),share_code?: (Scalars['String'] | null),source?: (Scalars['String'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_status_enum | null),veto_pick_expires_at?: (Scalars['timestamptz'] | null),winning_lineup_id?: (Scalars['uuid'] | null)} /** aggregate stddev on columns */ @@ -57627,7 +60773,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface matches_stream_cursor_value_input {cancels_at?: (Scalars['timestamptz'] | null),created_at?: (Scalars['timestamptz'] | null),effective_at?: (Scalars['timestamptz'] | null),ended_at?: (Scalars['timestamptz'] | null),external_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),lineup_1_id?: (Scalars['uuid'] | null),lineup_2_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),organizer_steam_id?: (Scalars['bigint'] | null),password?: (Scalars['String'] | null),region?: (Scalars['String'] | null),scheduled_at?: (Scalars['timestamptz'] | null),server_error?: (Scalars['String'] | null),server_id?: (Scalars['uuid'] | null),share_code?: (Scalars['String'] | null),source?: (Scalars['String'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_status_enum | null),veto_pick_expires_at?: (Scalars['timestamptz'] | null),winning_lineup_id?: (Scalars['uuid'] | null)} +export interface matches_stream_cursor_value_input {cancels_at?: (Scalars['timestamptz'] | null),counts_toward_ranking?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),effective_at?: (Scalars['timestamptz'] | null),ended_at?: (Scalars['timestamptz'] | null),external_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),lineup_1_id?: (Scalars['uuid'] | null),lineup_2_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),organizer_steam_id?: (Scalars['bigint'] | null),password?: (Scalars['String'] | null),region?: (Scalars['String'] | null),scheduled_at?: (Scalars['timestamptz'] | null),server_error?: (Scalars['String'] | null),server_id?: (Scalars['uuid'] | null),share_code?: (Scalars['String'] | null),source?: (Scalars['String'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_status_enum | null),veto_pick_expires_at?: (Scalars['timestamptz'] | null),winning_lineup_id?: (Scalars['uuid'] | null)} /** aggregate sum on columns */ @@ -57807,6 +60953,8 @@ export interface mutation_rootGenqlSelection{ ResetTournamentMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], reset_status?: (Scalars['String'] | null), scheduled_at?: (Scalars['timestamptz'] | null), winning_lineup_id?: (Scalars['uuid'] | null)} }) /** accept team invite */ acceptInvite?: (SuccessOutputGenqlSelection & { __args: {invite_id: Scalars['uuid'], type: Scalars['String']} }) + /** Add a game plugin the registry does not carry, from a release URL */ + addCustomGamePlugin?: (AddCustomGamePluginOutputGenqlSelection & { __args: {description?: (Scalars['String'] | null), installPath?: (Scalars['String'] | null), layout?: (Scalars['String'] | null), name?: (Scalars['String'] | null), runtime: Scalars['String'], slug?: (Scalars['String'] | null), url: Scalars['String'], version?: (Scalars['String'] | null)} }) /** addDraftPlayer */ addDraftPlayer?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], lineup?: (Scalars['Int'] | null), steamId: Scalars['String']} }) /** Add a friends-role presence bot account to the pool */ @@ -58060,6 +61208,24 @@ export interface mutation_rootGenqlSelection{ where: e_game_cfg_types_bool_exp} }) /** delete single row from the table: "e_game_cfg_types" */ delete_e_game_cfg_types_by_pk?: (e_game_cfg_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_game_plugin_channels" */ + delete_e_game_plugin_channels?: (e_game_plugin_channels_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_game_plugin_channels_bool_exp} }) + /** delete single row from the table: "e_game_plugin_channels" */ + delete_e_game_plugin_channels_by_pk?: (e_game_plugin_channelsGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_game_plugin_install_statuses" */ + delete_e_game_plugin_install_statuses?: (e_game_plugin_install_statuses_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_game_plugin_install_statuses_bool_exp} }) + /** delete single row from the table: "e_game_plugin_install_statuses" */ + delete_e_game_plugin_install_statuses_by_pk?: (e_game_plugin_install_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_game_plugin_kinds" */ + delete_e_game_plugin_kinds?: (e_game_plugin_kinds_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_game_plugin_kinds_bool_exp} }) + /** delete single row from the table: "e_game_plugin_kinds" */ + delete_e_game_plugin_kinds_by_pk?: (e_game_plugin_kindsGenqlSelection & { __args: {value: Scalars['String']} }) /** delete data from the table: "e_game_server_node_statuses" */ delete_e_game_server_node_statuses?: (e_game_server_node_statuses_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -58312,6 +61478,42 @@ export interface mutation_rootGenqlSelection{ where: friends_bool_exp} }) /** delete single row from the table: "friends" */ delete_friends_by_pk?: (friendsGenqlSelection & { __args: {other_player_steam_id: Scalars['bigint'], player_steam_id: Scalars['bigint']} }) + /** delete data from the table: "game_mode_plugins" */ + delete_game_mode_plugins?: (game_mode_plugins_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: game_mode_plugins_bool_exp} }) + /** delete single row from the table: "game_mode_plugins" */ + delete_game_mode_plugins_by_pk?: (game_mode_pluginsGenqlSelection & { __args: {game_mode_id: Scalars['uuid'], plugin_slug: Scalars['String']} }) + /** delete data from the table: "game_modes" */ + delete_game_modes?: (game_modes_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: game_modes_bool_exp} }) + /** delete single row from the table: "game_modes" */ + delete_game_modes_by_pk?: (game_modesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "game_plugin_installs" */ + delete_game_plugin_installs?: (game_plugin_installs_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: game_plugin_installs_bool_exp} }) + /** delete single row from the table: "game_plugin_installs" */ + delete_game_plugin_installs_by_pk?: (game_plugin_installsGenqlSelection & { __args: {plugin_slug: Scalars['String']} }) + /** delete data from the table: "game_plugin_versions" */ + delete_game_plugin_versions?: (game_plugin_versions_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: game_plugin_versions_bool_exp} }) + /** delete single row from the table: "game_plugin_versions" */ + delete_game_plugin_versions_by_pk?: (game_plugin_versionsGenqlSelection & { __args: {plugin_slug: Scalars['String'], runtime: e_plugin_runtimes_enum, version: Scalars['String']} }) + /** delete data from the table: "game_plugins" */ + delete_game_plugins?: (game_plugins_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: game_plugins_bool_exp} }) + /** delete single row from the table: "game_plugins" */ + delete_game_plugins_by_pk?: (game_pluginsGenqlSelection & { __args: {slug: Scalars['String']} }) + /** delete data from the table: "game_server_node_plugins" */ + delete_game_server_node_plugins?: (game_server_node_plugins_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: game_server_node_plugins_bool_exp} }) + /** delete single row from the table: "game_server_node_plugins" */ + delete_game_server_node_plugins_by_pk?: (game_server_node_pluginsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** delete data from the table: "game_server_nodes" */ delete_game_server_nodes?: (game_server_nodes_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -58867,6 +62069,8 @@ export interface mutation_rootGenqlSelection{ forfeitMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], winning_lineup_id: Scalars['uuid']} }) /** Live pod GSI snapshot — slots, sides, alive/dead. Drives the stream-deck. */ getLiveStreamSpecState?: (LiveStreamSpecStateGenqlSelection & { __args: {match_id: Scalars['uuid']} }) + /** Fetch a plugin's README from its repository */ + getPluginReadme?: (PluginReadmeOutputGenqlSelection & { __args: {runtime?: (Scalars['String'] | null), slug: Scalars['String']} }) getTestUploadLink?: GetTestUploadResponseGenqlSelection /** Grant an award to a player or team */ grantAward?: (AwardRecipientGenqlSelection & { __args: {award_id: Scalars['uuid'], event_id?: (Scalars['uuid'] | null), league_season_id?: (Scalars['uuid'] | null), note?: (Scalars['String'] | null), player_steam_id?: (Scalars['String'] | null), season_id?: (Scalars['uuid'] | null), team_id?: (Scalars['uuid'] | null), tournament_id?: (Scalars['uuid'] | null)} }) @@ -59182,6 +62386,42 @@ export interface mutation_rootGenqlSelection{ object: e_game_cfg_types_insert_input, /** upsert condition */ on_conflict?: (e_game_cfg_types_on_conflict | null)} }) + /** insert data into the table: "e_game_plugin_channels" */ + insert_e_game_plugin_channels?: (e_game_plugin_channels_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_game_plugin_channels_insert_input[], + /** upsert condition */ + on_conflict?: (e_game_plugin_channels_on_conflict | null)} }) + /** insert a single row into the table: "e_game_plugin_channels" */ + insert_e_game_plugin_channels_one?: (e_game_plugin_channelsGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_game_plugin_channels_insert_input, + /** upsert condition */ + on_conflict?: (e_game_plugin_channels_on_conflict | null)} }) + /** insert data into the table: "e_game_plugin_install_statuses" */ + insert_e_game_plugin_install_statuses?: (e_game_plugin_install_statuses_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_game_plugin_install_statuses_insert_input[], + /** upsert condition */ + on_conflict?: (e_game_plugin_install_statuses_on_conflict | null)} }) + /** insert a single row into the table: "e_game_plugin_install_statuses" */ + insert_e_game_plugin_install_statuses_one?: (e_game_plugin_install_statusesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_game_plugin_install_statuses_insert_input, + /** upsert condition */ + on_conflict?: (e_game_plugin_install_statuses_on_conflict | null)} }) + /** insert data into the table: "e_game_plugin_kinds" */ + insert_e_game_plugin_kinds?: (e_game_plugin_kinds_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_game_plugin_kinds_insert_input[], + /** upsert condition */ + on_conflict?: (e_game_plugin_kinds_on_conflict | null)} }) + /** insert a single row into the table: "e_game_plugin_kinds" */ + insert_e_game_plugin_kinds_one?: (e_game_plugin_kindsGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_game_plugin_kinds_insert_input, + /** upsert condition */ + on_conflict?: (e_game_plugin_kinds_on_conflict | null)} }) /** insert data into the table: "e_game_server_node_statuses" */ insert_e_game_server_node_statuses?: (e_game_server_node_statuses_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -59686,6 +62926,78 @@ export interface mutation_rootGenqlSelection{ object: friends_insert_input, /** upsert condition */ on_conflict?: (friends_on_conflict | null)} }) + /** insert data into the table: "game_mode_plugins" */ + insert_game_mode_plugins?: (game_mode_plugins_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: game_mode_plugins_insert_input[], + /** upsert condition */ + on_conflict?: (game_mode_plugins_on_conflict | null)} }) + /** insert a single row into the table: "game_mode_plugins" */ + insert_game_mode_plugins_one?: (game_mode_pluginsGenqlSelection & { __args: { + /** the row to be inserted */ + object: game_mode_plugins_insert_input, + /** upsert condition */ + on_conflict?: (game_mode_plugins_on_conflict | null)} }) + /** insert data into the table: "game_modes" */ + insert_game_modes?: (game_modes_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: game_modes_insert_input[], + /** upsert condition */ + on_conflict?: (game_modes_on_conflict | null)} }) + /** insert a single row into the table: "game_modes" */ + insert_game_modes_one?: (game_modesGenqlSelection & { __args: { + /** the row to be inserted */ + object: game_modes_insert_input, + /** upsert condition */ + on_conflict?: (game_modes_on_conflict | null)} }) + /** insert data into the table: "game_plugin_installs" */ + insert_game_plugin_installs?: (game_plugin_installs_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: game_plugin_installs_insert_input[], + /** upsert condition */ + on_conflict?: (game_plugin_installs_on_conflict | null)} }) + /** insert a single row into the table: "game_plugin_installs" */ + insert_game_plugin_installs_one?: (game_plugin_installsGenqlSelection & { __args: { + /** the row to be inserted */ + object: game_plugin_installs_insert_input, + /** upsert condition */ + on_conflict?: (game_plugin_installs_on_conflict | null)} }) + /** insert data into the table: "game_plugin_versions" */ + insert_game_plugin_versions?: (game_plugin_versions_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: game_plugin_versions_insert_input[], + /** upsert condition */ + on_conflict?: (game_plugin_versions_on_conflict | null)} }) + /** insert a single row into the table: "game_plugin_versions" */ + insert_game_plugin_versions_one?: (game_plugin_versionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: game_plugin_versions_insert_input, + /** upsert condition */ + on_conflict?: (game_plugin_versions_on_conflict | null)} }) + /** insert data into the table: "game_plugins" */ + insert_game_plugins?: (game_plugins_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: game_plugins_insert_input[], + /** upsert condition */ + on_conflict?: (game_plugins_on_conflict | null)} }) + /** insert a single row into the table: "game_plugins" */ + insert_game_plugins_one?: (game_pluginsGenqlSelection & { __args: { + /** the row to be inserted */ + object: game_plugins_insert_input, + /** upsert condition */ + on_conflict?: (game_plugins_on_conflict | null)} }) + /** insert data into the table: "game_server_node_plugins" */ + insert_game_server_node_plugins?: (game_server_node_plugins_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: game_server_node_plugins_insert_input[], + /** upsert condition */ + on_conflict?: (game_server_node_plugins_on_conflict | null)} }) + /** insert a single row into the table: "game_server_node_plugins" */ + insert_game_server_node_plugins_one?: (game_server_node_pluginsGenqlSelection & { __args: { + /** the row to be inserted */ + object: game_server_node_plugins_insert_input, + /** upsert condition */ + on_conflict?: (game_server_node_plugins_on_conflict | null)} }) /** insert data into the table: "game_server_nodes" */ insert_game_server_nodes?: (game_server_nodes_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -60786,6 +64098,8 @@ export interface mutation_rootGenqlSelection{ object: v_team_stage_results_insert_input, /** upsert condition */ on_conflict?: (v_team_stage_results_on_conflict | null)} }) + /** Install a game plugin into a node's plugin store */ + installGamePlugin?: (SuccessOutputGenqlSelection & { __args: {slug: Scalars['String'], version?: (Scalars['String'] | null)} }) /** joinDraftGame */ joinDraftGame?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], inviteCode?: (Scalars['String'] | null)} }) /** joinDraftGameAsParty */ @@ -60820,6 +64134,8 @@ export interface mutation_rootGenqlSelection{ pollSteamMatchHistory?: SteamMatchHistoryPollOutputGenqlSelection /** previewDraftGame */ previewDraftGame?: (DraftGamePreviewOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], inviteCode?: (Scalars['String'] | null)} }) + /** Resolve a game mode into the plugins and cfg a server would load */ + previewGameMode?: (PreviewGameModeOutputGenqlSelection & { __args: {gameModeId: Scalars['uuid']} }) /** Build a multi-segment ClipSpec from a player+preset and queue it via the batch render path (no live demo session required) */ queueClipFromPreset?: (CreateClipRenderOutputGenqlSelection & { __args: {fps?: (Scalars['Int'] | null), match_map_id: Scalars['uuid'], preset: Scalars['String'], resolution?: (Scalars['String'] | null), target_name?: (Scalars['String'] | null), target_steam_id: Scalars['String'], title?: (Scalars['String'] | null)} }) randomizeTeams?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) @@ -60842,6 +64158,8 @@ export interface mutation_rootGenqlSelection{ recomputePlayerElo?: RecomputeEloStartedOutputGenqlSelection /** Return the progress of the ELO recompute run (admin only). */ recomputePlayerEloStatus?: RecomputeEloStatusOutputGenqlSelection + /** Re-read which plugins are actually on a node */ + reconcileNodePlugins?: (ReconcileNodePluginsOutputGenqlSelection & { __args: {nodeId: Scalars['String']} }) reconnectLive?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) /** Reindex every player into the Typesense search index (admin only). Runs in the background; track via refreshAllPlayersStatus. */ refreshAllPlayers?: ReindexStartedOutputGenqlSelection @@ -60966,10 +64284,14 @@ export interface mutation_rootGenqlSelection{ swapLineups?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) switchLineup?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['String']} }) switchLiveMatch?: (SuccessOutputGenqlSelection & { __args: {from_match_id: Scalars['uuid'], mode: Scalars['String'], to_match_id: Scalars['uuid']} }) + /** Pull the game plugin registry into this panel's catalog */ + syncPluginRegistry?: SyncPluginRegistryOutputGenqlSelection syncSteamFriends?: SuccessOutputGenqlSelection /** Test FACEIT Data + Downloads API connectivity for the current admin */ testFaceitIntegration?: FaceitTestOutputGenqlSelection testUpload?: TestUploadResponseGenqlSelection + /** Remove a game plugin from a node's plugin store */ + uninstallGamePlugin?: (SuccessOutputGenqlSelection & { __args: {force?: (Scalars['Boolean'] | null), slug: Scalars['String']} }) unlinkDiscord?: SuccessOutputGenqlSelection unlinkSteamMatchHistory?: SuccessOutputGenqlSelection unsanctionServerPlayer?: (SanctionResultGenqlSelection & { __args: {serverId?: (Scalars['String'] | null), steam_id: Scalars['String'], type: Scalars['String']} }) @@ -61435,6 +64757,48 @@ export interface mutation_rootGenqlSelection{ update_e_game_cfg_types_many?: (e_game_cfg_types_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: e_game_cfg_types_updates[]} }) + /** update data of the table: "e_game_plugin_channels" */ + update_e_game_plugin_channels?: (e_game_plugin_channels_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_game_plugin_channels_set_input | null), + /** filter the rows which have to be updated */ + where: e_game_plugin_channels_bool_exp} }) + /** update single row of the table: "e_game_plugin_channels" */ + update_e_game_plugin_channels_by_pk?: (e_game_plugin_channelsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_game_plugin_channels_set_input | null), pk_columns: e_game_plugin_channels_pk_columns_input} }) + /** update multiples rows of table: "e_game_plugin_channels" */ + update_e_game_plugin_channels_many?: (e_game_plugin_channels_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_game_plugin_channels_updates[]} }) + /** update data of the table: "e_game_plugin_install_statuses" */ + update_e_game_plugin_install_statuses?: (e_game_plugin_install_statuses_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_game_plugin_install_statuses_set_input | null), + /** filter the rows which have to be updated */ + where: e_game_plugin_install_statuses_bool_exp} }) + /** update single row of the table: "e_game_plugin_install_statuses" */ + update_e_game_plugin_install_statuses_by_pk?: (e_game_plugin_install_statusesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_game_plugin_install_statuses_set_input | null), pk_columns: e_game_plugin_install_statuses_pk_columns_input} }) + /** update multiples rows of table: "e_game_plugin_install_statuses" */ + update_e_game_plugin_install_statuses_many?: (e_game_plugin_install_statuses_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_game_plugin_install_statuses_updates[]} }) + /** update data of the table: "e_game_plugin_kinds" */ + update_e_game_plugin_kinds?: (e_game_plugin_kinds_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_game_plugin_kinds_set_input | null), + /** filter the rows which have to be updated */ + where: e_game_plugin_kinds_bool_exp} }) + /** update single row of the table: "e_game_plugin_kinds" */ + update_e_game_plugin_kinds_by_pk?: (e_game_plugin_kindsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_game_plugin_kinds_set_input | null), pk_columns: e_game_plugin_kinds_pk_columns_input} }) + /** update multiples rows of table: "e_game_plugin_kinds" */ + update_e_game_plugin_kinds_many?: (e_game_plugin_kinds_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_game_plugin_kinds_updates[]} }) /** update data of the table: "e_game_server_node_statuses" */ update_e_game_server_node_statuses?: (e_game_server_node_statuses_mutation_responseGenqlSelection & { __args: { /** sets the columns of the filtered rows to the given values */ @@ -62047,6 +65411,138 @@ export interface mutation_rootGenqlSelection{ update_friends_many?: (friends_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: friends_updates[]} }) + /** update data of the table: "game_mode_plugins" */ + update_game_mode_plugins?: (game_mode_plugins_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (game_mode_plugins_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (game_mode_plugins_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?: (game_mode_plugins_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (game_mode_plugins_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (game_mode_plugins_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (game_mode_plugins_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_mode_plugins_set_input | null), + /** filter the rows which have to be updated */ + where: game_mode_plugins_bool_exp} }) + /** update single row of the table: "game_mode_plugins" */ + update_game_mode_plugins_by_pk?: (game_mode_pluginsGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (game_mode_plugins_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (game_mode_plugins_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?: (game_mode_plugins_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (game_mode_plugins_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (game_mode_plugins_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (game_mode_plugins_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_mode_plugins_set_input | null), pk_columns: game_mode_plugins_pk_columns_input} }) + /** update multiples rows of table: "game_mode_plugins" */ + update_game_mode_plugins_many?: (game_mode_plugins_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: game_mode_plugins_updates[]} }) + /** update data of the table: "game_modes" */ + update_game_modes?: (game_modes_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (game_modes_set_input | null), + /** filter the rows which have to be updated */ + where: game_modes_bool_exp} }) + /** update single row of the table: "game_modes" */ + update_game_modes_by_pk?: (game_modesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (game_modes_set_input | null), pk_columns: game_modes_pk_columns_input} }) + /** update multiples rows of table: "game_modes" */ + update_game_modes_many?: (game_modes_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: game_modes_updates[]} }) + /** update data of the table: "game_plugin_installs" */ + update_game_plugin_installs?: (game_plugin_installs_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (game_plugin_installs_set_input | null), + /** filter the rows which have to be updated */ + where: game_plugin_installs_bool_exp} }) + /** update single row of the table: "game_plugin_installs" */ + update_game_plugin_installs_by_pk?: (game_plugin_installsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (game_plugin_installs_set_input | null), pk_columns: game_plugin_installs_pk_columns_input} }) + /** update multiples rows of table: "game_plugin_installs" */ + update_game_plugin_installs_many?: (game_plugin_installs_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: game_plugin_installs_updates[]} }) + /** update data of the table: "game_plugin_versions" */ + update_game_plugin_versions?: (game_plugin_versions_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (game_plugin_versions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_plugin_versions_set_input | null), + /** filter the rows which have to be updated */ + where: game_plugin_versions_bool_exp} }) + /** update single row of the table: "game_plugin_versions" */ + update_game_plugin_versions_by_pk?: (game_plugin_versionsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (game_plugin_versions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_plugin_versions_set_input | null), pk_columns: game_plugin_versions_pk_columns_input} }) + /** update multiples rows of table: "game_plugin_versions" */ + update_game_plugin_versions_many?: (game_plugin_versions_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: game_plugin_versions_updates[]} }) + /** update data of the table: "game_plugins" */ + update_game_plugins?: (game_plugins_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (game_plugins_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (game_plugins_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?: (game_plugins_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (game_plugins_delete_key_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (game_plugins_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_plugins_set_input | null), + /** filter the rows which have to be updated */ + where: game_plugins_bool_exp} }) + /** update single row of the table: "game_plugins" */ + update_game_plugins_by_pk?: (game_pluginsGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (game_plugins_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (game_plugins_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?: (game_plugins_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (game_plugins_delete_key_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (game_plugins_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_plugins_set_input | null), pk_columns: game_plugins_pk_columns_input} }) + /** update multiples rows of table: "game_plugins" */ + update_game_plugins_many?: (game_plugins_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: game_plugins_updates[]} }) + /** update data of the table: "game_server_node_plugins" */ + update_game_server_node_plugins?: (game_server_node_plugins_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (game_server_node_plugins_set_input | null), + /** filter the rows which have to be updated */ + where: game_server_node_plugins_bool_exp} }) + /** update single row of the table: "game_server_node_plugins" */ + update_game_server_node_plugins_by_pk?: (game_server_node_pluginsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (game_server_node_plugins_set_input | null), pk_columns: game_server_node_plugins_pk_columns_input} }) + /** update multiples rows of table: "game_server_node_plugins" */ + update_game_server_node_plugins_many?: (game_server_node_plugins_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: game_server_node_plugins_updates[]} }) /** update data of the table: "game_server_nodes" */ update_game_server_nodes?: (game_server_nodes_mutation_responseGenqlSelection & { __args: { /** append existing jsonb value of filtered columns with new jsonb value */ @@ -63315,16 +66811,36 @@ export interface mutation_rootGenqlSelection{ updates: server_regions_updates[]} }) /** update data of the table: "servers" */ update_servers?: (servers_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (servers_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (servers_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?: (servers_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (servers_delete_key_input | null), /** increments the numeric columns with given value of the filtered values */ _inc?: (servers_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (servers_prepend_input | null), /** sets the columns of the filtered rows to the given values */ _set?: (servers_set_input | null), /** filter the rows which have to be updated */ where: servers_bool_exp} }) /** update single row of the table: "servers" */ update_servers_by_pk?: (serversGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (servers_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (servers_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?: (servers_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (servers_delete_key_input | null), /** increments the numeric columns with given value of the filtered values */ _inc?: (servers_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (servers_prepend_input | null), /** sets the columns of the filtered rows to the given values */ _set?: (servers_set_input | null), pk_columns: servers_pk_columns_input} }) /** update multiples rows of table: "servers" */ @@ -76491,6 +80007,84 @@ export interface query_rootGenqlSelection{ where?: (e_game_cfg_types_bool_exp | null)} }) /** fetch data from the table: "e_game_cfg_types" using primary key columns */ e_game_cfg_types_by_pk?: (e_game_cfg_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_game_plugin_channels" */ + e_game_plugin_channels?: (e_game_plugin_channelsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_plugin_channels_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_game_plugin_channels_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_plugin_channels_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_game_plugin_channels" */ + e_game_plugin_channels_aggregate?: (e_game_plugin_channels_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_plugin_channels_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_game_plugin_channels_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_plugin_channels_bool_exp | null)} }) + /** fetch data from the table: "e_game_plugin_channels" using primary key columns */ + e_game_plugin_channels_by_pk?: (e_game_plugin_channelsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_game_plugin_install_statuses" */ + e_game_plugin_install_statuses?: (e_game_plugin_install_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_plugin_install_statuses_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_game_plugin_install_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_plugin_install_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_game_plugin_install_statuses" */ + e_game_plugin_install_statuses_aggregate?: (e_game_plugin_install_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_plugin_install_statuses_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_game_plugin_install_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_plugin_install_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_game_plugin_install_statuses" using primary key columns */ + e_game_plugin_install_statuses_by_pk?: (e_game_plugin_install_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_game_plugin_kinds" */ + e_game_plugin_kinds?: (e_game_plugin_kindsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_plugin_kinds_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_game_plugin_kinds_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_plugin_kinds_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_game_plugin_kinds" */ + e_game_plugin_kinds_aggregate?: (e_game_plugin_kinds_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_plugin_kinds_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_game_plugin_kinds_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_plugin_kinds_bool_exp | null)} }) + /** fetch data from the table: "e_game_plugin_kinds" using primary key columns */ + e_game_plugin_kinds_by_pk?: (e_game_plugin_kindsGenqlSelection & { __args: {value: Scalars['String']} }) /** fetch data from the table: "e_game_server_node_statuses" */ e_game_server_node_statuses?: (e_game_server_node_statusesGenqlSelection & { __args?: { /** distinct select on columns */ @@ -77583,6 +81177,162 @@ export interface query_rootGenqlSelection{ where?: (friends_bool_exp | null)} }) /** fetch data from the table: "friends" using primary key columns */ friends_by_pk?: (friendsGenqlSelection & { __args: {other_player_steam_id: Scalars['bigint'], player_steam_id: Scalars['bigint']} }) + /** fetch data from the table: "game_mode_plugins" */ + game_mode_plugins?: (game_mode_pluginsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_mode_plugins_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?: (game_mode_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_mode_plugins_bool_exp | null)} }) + /** fetch aggregated fields from the table: "game_mode_plugins" */ + game_mode_plugins_aggregate?: (game_mode_plugins_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_mode_plugins_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?: (game_mode_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_mode_plugins_bool_exp | null)} }) + /** fetch data from the table: "game_mode_plugins" using primary key columns */ + game_mode_plugins_by_pk?: (game_mode_pluginsGenqlSelection & { __args: {game_mode_id: Scalars['uuid'], plugin_slug: Scalars['String']} }) + /** fetch data from the table: "game_modes" */ + game_modes?: (game_modesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_modes_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?: (game_modes_order_by[] | null), + /** filter the rows returned */ + where?: (game_modes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "game_modes" */ + game_modes_aggregate?: (game_modes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_modes_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?: (game_modes_order_by[] | null), + /** filter the rows returned */ + where?: (game_modes_bool_exp | null)} }) + /** fetch data from the table: "game_modes" using primary key columns */ + game_modes_by_pk?: (game_modesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "game_plugin_installs" */ + game_plugin_installs?: (game_plugin_installsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_plugin_installs_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?: (game_plugin_installs_order_by[] | null), + /** filter the rows returned */ + where?: (game_plugin_installs_bool_exp | null)} }) + /** fetch aggregated fields from the table: "game_plugin_installs" */ + game_plugin_installs_aggregate?: (game_plugin_installs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_plugin_installs_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?: (game_plugin_installs_order_by[] | null), + /** filter the rows returned */ + where?: (game_plugin_installs_bool_exp | null)} }) + /** fetch data from the table: "game_plugin_installs" using primary key columns */ + game_plugin_installs_by_pk?: (game_plugin_installsGenqlSelection & { __args: {plugin_slug: Scalars['String']} }) + /** fetch data from the table: "game_plugin_versions" */ + game_plugin_versions?: (game_plugin_versionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_plugin_versions_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?: (game_plugin_versions_order_by[] | null), + /** filter the rows returned */ + where?: (game_plugin_versions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "game_plugin_versions" */ + game_plugin_versions_aggregate?: (game_plugin_versions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_plugin_versions_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?: (game_plugin_versions_order_by[] | null), + /** filter the rows returned */ + where?: (game_plugin_versions_bool_exp | null)} }) + /** fetch data from the table: "game_plugin_versions" using primary key columns */ + game_plugin_versions_by_pk?: (game_plugin_versionsGenqlSelection & { __args: {plugin_slug: Scalars['String'], runtime: e_plugin_runtimes_enum, version: Scalars['String']} }) + /** fetch data from the table: "game_plugins" */ + game_plugins?: (game_pluginsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_plugins_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?: (game_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_plugins_bool_exp | null)} }) + /** fetch aggregated fields from the table: "game_plugins" */ + game_plugins_aggregate?: (game_plugins_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_plugins_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?: (game_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_plugins_bool_exp | null)} }) + /** fetch data from the table: "game_plugins" using primary key columns */ + game_plugins_by_pk?: (game_pluginsGenqlSelection & { __args: {slug: Scalars['String']} }) + /** fetch data from the table: "game_server_node_plugins" */ + game_server_node_plugins?: (game_server_node_pluginsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_server_node_plugins_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?: (game_server_node_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_server_node_plugins_bool_exp | null)} }) + /** fetch aggregated fields from the table: "game_server_node_plugins" */ + game_server_node_plugins_aggregate?: (game_server_node_plugins_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_server_node_plugins_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?: (game_server_node_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_server_node_plugins_bool_exp | null)} }) + /** fetch data from the table: "game_server_node_plugins" using primary key columns */ + game_server_node_plugins_by_pk?: (game_server_node_pluginsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** An array relationship */ game_server_nodes?: (game_server_nodesGenqlSelection & { __args?: { /** distinct select on columns */ @@ -78405,7 +82155,7 @@ export interface query_rootGenqlSelection{ where?: (match_maps_bool_exp | null)} }) /** fetch data from the table: "match_maps" using primary key columns */ match_maps_by_pk?: (match_mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "match_options" */ + /** An array relationship */ match_options?: (match_optionsGenqlSelection & { __args?: { /** distinct select on columns */ distinct_on?: (match_options_select_column[] | null), @@ -78417,7 +82167,7 @@ export interface query_rootGenqlSelection{ order_by?: (match_options_order_by[] | null), /** filter the rows returned */ where?: (match_options_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_options" */ + /** An aggregate relationship */ match_options_aggregate?: (match_options_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ distinct_on?: (match_options_select_column[] | null), @@ -81488,12 +85238,18 @@ export interface serversGenqlSelection{ enabled?: boolean | number game?: boolean | number /** An object relationship */ + game_mode?: game_modesGenqlSelection + game_mode_id?: boolean | number + /** An object relationship */ game_server_node?: game_server_nodesGenqlSelection game_server_node_id?: boolean | number host?: boolean | number id?: boolean | number is_dedicated?: boolean | number label?: boolean | number + loaded_plugins?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number /** An array relationship */ matches?: (matchesGenqlSelection & { __args?: { /** distinct select on columns */ @@ -81522,6 +85278,7 @@ export interface serversGenqlSelection{ offline_at?: boolean | number plugin_runtime?: boolean | number plugin_version?: boolean | number + plugins_checked_at?: boolean | number port?: boolean | number rcon_password?: boolean | number rcon_status?: boolean | number @@ -81577,6 +85334,10 @@ export interface servers_aggregate_fieldsGenqlSelection{ export interface servers_aggregate_order_by {avg?: (servers_avg_order_by | null),count?: (order_by | null),max?: (servers_max_order_by | null),min?: (servers_min_order_by | null),stddev?: (servers_stddev_order_by | null),stddev_pop?: (servers_stddev_pop_order_by | null),stddev_samp?: (servers_stddev_samp_order_by | null),sum?: (servers_sum_order_by | null),var_pop?: (servers_var_pop_order_by | null),var_samp?: (servers_var_samp_order_by | null),variance?: (servers_variance_order_by | null)} +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface servers_append_input {loaded_plugins?: (Scalars['jsonb'] | null)} + + /** input type for inserting array relation for remote table "servers" */ export interface servers_arr_rel_insert_input {data: servers_insert_input[], /** upsert condition */ @@ -81598,7 +85359,19 @@ export interface servers_avg_order_by {max_players?: (order_by | null),port?: (o /** Boolean expression to filter rows from the table "servers". All fields are combined with a logical 'AND'. */ -export interface servers_bool_exp {_and?: (servers_bool_exp[] | null),_not?: (servers_bool_exp | null),_or?: (servers_bool_exp[] | null),api_password?: (uuid_comparison_exp | null),boot_status?: (String_comparison_exp | null),boot_status_detail?: (String_comparison_exp | null),connect_password?: (String_comparison_exp | null),connected?: (Boolean_comparison_exp | null),connection_link?: (String_comparison_exp | null),connection_string?: (String_comparison_exp | null),current_match?: (matches_bool_exp | null),enabled?: (Boolean_comparison_exp | null),game?: (String_comparison_exp | null),game_server_node?: (game_server_nodes_bool_exp | null),game_server_node_id?: (String_comparison_exp | null),host?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_dedicated?: (Boolean_comparison_exp | null),label?: (String_comparison_exp | null),matches?: (matches_bool_exp | null),matches_aggregate?: (matches_aggregate_bool_exp | null),max_players?: (Int_comparison_exp | null),offline_at?: (timestamptz_comparison_exp | null),plugin_runtime?: (e_plugin_runtimes_enum_comparison_exp | null),plugin_version?: (String_comparison_exp | null),port?: (Int_comparison_exp | null),rcon_password?: (bytea_comparison_exp | null),rcon_status?: (Boolean_comparison_exp | null),region?: (String_comparison_exp | null),reserved_by_match_id?: (uuid_comparison_exp | null),server_region?: (server_regions_bool_exp | null),steam_relay?: (String_comparison_exp | null),tv_port?: (Int_comparison_exp | null),type?: (e_server_types_enum_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} +export interface servers_bool_exp {_and?: (servers_bool_exp[] | null),_not?: (servers_bool_exp | null),_or?: (servers_bool_exp[] | null),api_password?: (uuid_comparison_exp | null),boot_status?: (String_comparison_exp | null),boot_status_detail?: (String_comparison_exp | null),connect_password?: (String_comparison_exp | null),connected?: (Boolean_comparison_exp | null),connection_link?: (String_comparison_exp | null),connection_string?: (String_comparison_exp | null),current_match?: (matches_bool_exp | null),enabled?: (Boolean_comparison_exp | null),game?: (String_comparison_exp | null),game_mode?: (game_modes_bool_exp | null),game_mode_id?: (uuid_comparison_exp | null),game_server_node?: (game_server_nodes_bool_exp | null),game_server_node_id?: (String_comparison_exp | null),host?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_dedicated?: (Boolean_comparison_exp | null),label?: (String_comparison_exp | null),loaded_plugins?: (jsonb_comparison_exp | null),matches?: (matches_bool_exp | null),matches_aggregate?: (matches_aggregate_bool_exp | null),max_players?: (Int_comparison_exp | null),offline_at?: (timestamptz_comparison_exp | null),plugin_runtime?: (e_plugin_runtimes_enum_comparison_exp | null),plugin_version?: (String_comparison_exp | null),plugins_checked_at?: (timestamptz_comparison_exp | null),port?: (Int_comparison_exp | null),rcon_password?: (bytea_comparison_exp | null),rcon_status?: (Boolean_comparison_exp | null),region?: (String_comparison_exp | null),reserved_by_match_id?: (uuid_comparison_exp | null),server_region?: (server_regions_bool_exp | null),steam_relay?: (String_comparison_exp | null),tv_port?: (Int_comparison_exp | null),type?: (e_server_types_enum_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface servers_delete_at_path_input {loaded_plugins?: (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 servers_delete_elem_input {loaded_plugins?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface servers_delete_key_input {loaded_plugins?: (Scalars['String'] | null)} /** input type for incrementing numeric columns in table "servers" */ @@ -81606,7 +85379,7 @@ export interface servers_inc_input {max_players?: (Scalars['Int'] | null),port?: /** input type for inserting data into table "servers" */ -export interface servers_insert_input {api_password?: (Scalars['uuid'] | null),boot_status?: (Scalars['String'] | null),boot_status_detail?: (Scalars['String'] | null),connect_password?: (Scalars['String'] | null),connected?: (Scalars['Boolean'] | null),current_match?: (matches_obj_rel_insert_input | null),enabled?: (Scalars['Boolean'] | null),game?: (Scalars['String'] | null),game_server_node?: (game_server_nodes_obj_rel_insert_input | null),game_server_node_id?: (Scalars['String'] | null),host?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_dedicated?: (Scalars['Boolean'] | null),label?: (Scalars['String'] | null),matches?: (matches_arr_rel_insert_input | null),max_players?: (Scalars['Int'] | null),offline_at?: (Scalars['timestamptz'] | null),plugin_runtime?: (e_plugin_runtimes_enum | null),plugin_version?: (Scalars['String'] | null),port?: (Scalars['Int'] | null),rcon_password?: (Scalars['bytea'] | null),rcon_status?: (Scalars['Boolean'] | null),region?: (Scalars['String'] | null),reserved_by_match_id?: (Scalars['uuid'] | null),server_region?: (server_regions_obj_rel_insert_input | null),steam_relay?: (Scalars['String'] | null),tv_port?: (Scalars['Int'] | null),type?: (e_server_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface servers_insert_input {api_password?: (Scalars['uuid'] | null),boot_status?: (Scalars['String'] | null),boot_status_detail?: (Scalars['String'] | null),connect_password?: (Scalars['String'] | null),connected?: (Scalars['Boolean'] | null),current_match?: (matches_obj_rel_insert_input | null),enabled?: (Scalars['Boolean'] | null),game?: (Scalars['String'] | null),game_mode?: (game_modes_obj_rel_insert_input | null),game_mode_id?: (Scalars['uuid'] | null),game_server_node?: (game_server_nodes_obj_rel_insert_input | null),game_server_node_id?: (Scalars['String'] | null),host?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_dedicated?: (Scalars['Boolean'] | null),label?: (Scalars['String'] | null),loaded_plugins?: (Scalars['jsonb'] | null),matches?: (matches_arr_rel_insert_input | null),max_players?: (Scalars['Int'] | null),offline_at?: (Scalars['timestamptz'] | null),plugin_runtime?: (e_plugin_runtimes_enum | null),plugin_version?: (Scalars['String'] | null),plugins_checked_at?: (Scalars['timestamptz'] | null),port?: (Scalars['Int'] | null),rcon_password?: (Scalars['bytea'] | null),rcon_status?: (Scalars['Boolean'] | null),region?: (Scalars['String'] | null),reserved_by_match_id?: (Scalars['uuid'] | null),server_region?: (server_regions_obj_rel_insert_input | null),steam_relay?: (Scalars['String'] | null),tv_port?: (Scalars['Int'] | null),type?: (e_server_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate max on columns */ @@ -81620,6 +85393,7 @@ export interface servers_max_fieldsGenqlSelection{ /** A computed field, executes function "get_server_connection_string" */ connection_string?: boolean | number game?: boolean | number + game_mode_id?: boolean | number game_server_node_id?: boolean | number host?: boolean | number id?: boolean | number @@ -81627,6 +85401,7 @@ export interface servers_max_fieldsGenqlSelection{ max_players?: boolean | number offline_at?: boolean | number plugin_version?: boolean | number + plugins_checked_at?: boolean | number port?: boolean | number region?: boolean | number reserved_by_match_id?: boolean | number @@ -81639,7 +85414,7 @@ export interface servers_max_fieldsGenqlSelection{ /** order by max() on columns of table "servers" */ -export interface servers_max_order_by {api_password?: (order_by | null),boot_status?: (order_by | null),boot_status_detail?: (order_by | null),connect_password?: (order_by | null),game?: (order_by | null),game_server_node_id?: (order_by | null),host?: (order_by | null),id?: (order_by | null),label?: (order_by | null),max_players?: (order_by | null),offline_at?: (order_by | null),plugin_version?: (order_by | null),port?: (order_by | null),region?: (order_by | null),reserved_by_match_id?: (order_by | null),steam_relay?: (order_by | null),tv_port?: (order_by | null),updated_at?: (order_by | null)} +export interface servers_max_order_by {api_password?: (order_by | null),boot_status?: (order_by | null),boot_status_detail?: (order_by | null),connect_password?: (order_by | null),game?: (order_by | null),game_mode_id?: (order_by | null),game_server_node_id?: (order_by | null),host?: (order_by | null),id?: (order_by | null),label?: (order_by | null),max_players?: (order_by | null),offline_at?: (order_by | null),plugin_version?: (order_by | null),plugins_checked_at?: (order_by | null),port?: (order_by | null),region?: (order_by | null),reserved_by_match_id?: (order_by | null),steam_relay?: (order_by | null),tv_port?: (order_by | null),updated_at?: (order_by | null)} /** aggregate min on columns */ @@ -81653,6 +85428,7 @@ export interface servers_min_fieldsGenqlSelection{ /** A computed field, executes function "get_server_connection_string" */ connection_string?: boolean | number game?: boolean | number + game_mode_id?: boolean | number game_server_node_id?: boolean | number host?: boolean | number id?: boolean | number @@ -81660,6 +85436,7 @@ export interface servers_min_fieldsGenqlSelection{ max_players?: boolean | number offline_at?: boolean | number plugin_version?: boolean | number + plugins_checked_at?: boolean | number port?: boolean | number region?: boolean | number reserved_by_match_id?: boolean | number @@ -81672,7 +85449,7 @@ export interface servers_min_fieldsGenqlSelection{ /** order by min() on columns of table "servers" */ -export interface servers_min_order_by {api_password?: (order_by | null),boot_status?: (order_by | null),boot_status_detail?: (order_by | null),connect_password?: (order_by | null),game?: (order_by | null),game_server_node_id?: (order_by | null),host?: (order_by | null),id?: (order_by | null),label?: (order_by | null),max_players?: (order_by | null),offline_at?: (order_by | null),plugin_version?: (order_by | null),port?: (order_by | null),region?: (order_by | null),reserved_by_match_id?: (order_by | null),steam_relay?: (order_by | null),tv_port?: (order_by | null),updated_at?: (order_by | null)} +export interface servers_min_order_by {api_password?: (order_by | null),boot_status?: (order_by | null),boot_status_detail?: (order_by | null),connect_password?: (order_by | null),game?: (order_by | null),game_mode_id?: (order_by | null),game_server_node_id?: (order_by | null),host?: (order_by | null),id?: (order_by | null),label?: (order_by | null),max_players?: (order_by | null),offline_at?: (order_by | null),plugin_version?: (order_by | null),plugins_checked_at?: (order_by | null),port?: (order_by | null),region?: (order_by | null),reserved_by_match_id?: (order_by | null),steam_relay?: (order_by | null),tv_port?: (order_by | null),updated_at?: (order_by | null)} /** response of any mutation on the table "servers" */ @@ -81697,15 +85474,19 @@ export interface servers_on_conflict {constraint: servers_constraint,update_colu /** Ordering options when selecting data from "servers". */ -export interface servers_order_by {api_password?: (order_by | null),boot_status?: (order_by | null),boot_status_detail?: (order_by | null),connect_password?: (order_by | null),connected?: (order_by | null),connection_link?: (order_by | null),connection_string?: (order_by | null),current_match?: (matches_order_by | null),enabled?: (order_by | null),game?: (order_by | null),game_server_node?: (game_server_nodes_order_by | null),game_server_node_id?: (order_by | null),host?: (order_by | null),id?: (order_by | null),is_dedicated?: (order_by | null),label?: (order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),max_players?: (order_by | null),offline_at?: (order_by | null),plugin_runtime?: (order_by | null),plugin_version?: (order_by | null),port?: (order_by | null),rcon_password?: (order_by | null),rcon_status?: (order_by | null),region?: (order_by | null),reserved_by_match_id?: (order_by | null),server_region?: (server_regions_order_by | null),steam_relay?: (order_by | null),tv_port?: (order_by | null),type?: (order_by | null),updated_at?: (order_by | null)} +export interface servers_order_by {api_password?: (order_by | null),boot_status?: (order_by | null),boot_status_detail?: (order_by | null),connect_password?: (order_by | null),connected?: (order_by | null),connection_link?: (order_by | null),connection_string?: (order_by | null),current_match?: (matches_order_by | null),enabled?: (order_by | null),game?: (order_by | null),game_mode?: (game_modes_order_by | null),game_mode_id?: (order_by | null),game_server_node?: (game_server_nodes_order_by | null),game_server_node_id?: (order_by | null),host?: (order_by | null),id?: (order_by | null),is_dedicated?: (order_by | null),label?: (order_by | null),loaded_plugins?: (order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),max_players?: (order_by | null),offline_at?: (order_by | null),plugin_runtime?: (order_by | null),plugin_version?: (order_by | null),plugins_checked_at?: (order_by | null),port?: (order_by | null),rcon_password?: (order_by | null),rcon_status?: (order_by | null),region?: (order_by | null),reserved_by_match_id?: (order_by | null),server_region?: (server_regions_order_by | null),steam_relay?: (order_by | null),tv_port?: (order_by | null),type?: (order_by | null),updated_at?: (order_by | null)} /** primary key columns input for table: servers */ export interface servers_pk_columns_input {id: Scalars['uuid']} +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface servers_prepend_input {loaded_plugins?: (Scalars['jsonb'] | null)} + + /** input type for updating data in table "servers" */ -export interface servers_set_input {api_password?: (Scalars['uuid'] | null),boot_status?: (Scalars['String'] | null),boot_status_detail?: (Scalars['String'] | null),connect_password?: (Scalars['String'] | null),connected?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),game?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),host?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_dedicated?: (Scalars['Boolean'] | null),label?: (Scalars['String'] | null),max_players?: (Scalars['Int'] | null),offline_at?: (Scalars['timestamptz'] | null),plugin_runtime?: (e_plugin_runtimes_enum | null),plugin_version?: (Scalars['String'] | null),port?: (Scalars['Int'] | null),rcon_password?: (Scalars['bytea'] | null),rcon_status?: (Scalars['Boolean'] | null),region?: (Scalars['String'] | null),reserved_by_match_id?: (Scalars['uuid'] | null),steam_relay?: (Scalars['String'] | null),tv_port?: (Scalars['Int'] | null),type?: (e_server_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface servers_set_input {api_password?: (Scalars['uuid'] | null),boot_status?: (Scalars['String'] | null),boot_status_detail?: (Scalars['String'] | null),connect_password?: (Scalars['String'] | null),connected?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),game?: (Scalars['String'] | null),game_mode_id?: (Scalars['uuid'] | null),game_server_node_id?: (Scalars['String'] | null),host?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_dedicated?: (Scalars['Boolean'] | null),label?: (Scalars['String'] | null),loaded_plugins?: (Scalars['jsonb'] | null),max_players?: (Scalars['Int'] | null),offline_at?: (Scalars['timestamptz'] | null),plugin_runtime?: (e_plugin_runtimes_enum | null),plugin_version?: (Scalars['String'] | null),plugins_checked_at?: (Scalars['timestamptz'] | null),port?: (Scalars['Int'] | null),rcon_password?: (Scalars['bytea'] | null),rcon_status?: (Scalars['Boolean'] | null),region?: (Scalars['String'] | null),reserved_by_match_id?: (Scalars['uuid'] | null),steam_relay?: (Scalars['String'] | null),tv_port?: (Scalars['Int'] | null),type?: (e_server_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate stddev on columns */ @@ -81759,7 +85540,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface servers_stream_cursor_value_input {api_password?: (Scalars['uuid'] | null),boot_status?: (Scalars['String'] | null),boot_status_detail?: (Scalars['String'] | null),connect_password?: (Scalars['String'] | null),connected?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),game?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),host?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_dedicated?: (Scalars['Boolean'] | null),label?: (Scalars['String'] | null),max_players?: (Scalars['Int'] | null),offline_at?: (Scalars['timestamptz'] | null),plugin_runtime?: (e_plugin_runtimes_enum | null),plugin_version?: (Scalars['String'] | null),port?: (Scalars['Int'] | null),rcon_password?: (Scalars['bytea'] | null),rcon_status?: (Scalars['Boolean'] | null),region?: (Scalars['String'] | null),reserved_by_match_id?: (Scalars['uuid'] | null),steam_relay?: (Scalars['String'] | null),tv_port?: (Scalars['Int'] | null),type?: (e_server_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface servers_stream_cursor_value_input {api_password?: (Scalars['uuid'] | null),boot_status?: (Scalars['String'] | null),boot_status_detail?: (Scalars['String'] | null),connect_password?: (Scalars['String'] | null),connected?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),game?: (Scalars['String'] | null),game_mode_id?: (Scalars['uuid'] | null),game_server_node_id?: (Scalars['String'] | null),host?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_dedicated?: (Scalars['Boolean'] | null),label?: (Scalars['String'] | null),loaded_plugins?: (Scalars['jsonb'] | null),max_players?: (Scalars['Int'] | null),offline_at?: (Scalars['timestamptz'] | null),plugin_runtime?: (e_plugin_runtimes_enum | null),plugin_version?: (Scalars['String'] | null),plugins_checked_at?: (Scalars['timestamptz'] | null),port?: (Scalars['Int'] | null),rcon_password?: (Scalars['bytea'] | null),rcon_status?: (Scalars['Boolean'] | null),region?: (Scalars['String'] | null),reserved_by_match_id?: (Scalars['uuid'] | null),steam_relay?: (Scalars['String'] | null),tv_port?: (Scalars['Int'] | null),type?: (e_server_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate sum on columns */ @@ -81776,8 +85557,18 @@ export interface servers_sum_fieldsGenqlSelection{ export interface servers_sum_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} export interface servers_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (servers_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (servers_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?: (servers_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (servers_delete_key_input | null), /** increments the numeric columns with given value of the filtered values */ _inc?: (servers_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (servers_prepend_input | null), /** sets the columns of the filtered rows to the given values */ _set?: (servers_set_input | null), /** filter the rows which have to be updated */ @@ -83199,6 +86990,108 @@ export interface subscription_rootGenqlSelection{ cursor: (e_game_cfg_types_stream_cursor_input | null)[], /** filter the rows returned */ where?: (e_game_cfg_types_bool_exp | null)} }) + /** fetch data from the table: "e_game_plugin_channels" */ + e_game_plugin_channels?: (e_game_plugin_channelsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_plugin_channels_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_game_plugin_channels_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_plugin_channels_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_game_plugin_channels" */ + e_game_plugin_channels_aggregate?: (e_game_plugin_channels_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_plugin_channels_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_game_plugin_channels_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_plugin_channels_bool_exp | null)} }) + /** fetch data from the table: "e_game_plugin_channels" using primary key columns */ + e_game_plugin_channels_by_pk?: (e_game_plugin_channelsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_game_plugin_channels" */ + e_game_plugin_channels_stream?: (e_game_plugin_channelsGenqlSelection & { __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_game_plugin_channels_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_game_plugin_channels_bool_exp | null)} }) + /** fetch data from the table: "e_game_plugin_install_statuses" */ + e_game_plugin_install_statuses?: (e_game_plugin_install_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_plugin_install_statuses_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_game_plugin_install_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_plugin_install_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_game_plugin_install_statuses" */ + e_game_plugin_install_statuses_aggregate?: (e_game_plugin_install_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_plugin_install_statuses_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_game_plugin_install_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_plugin_install_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_game_plugin_install_statuses" using primary key columns */ + e_game_plugin_install_statuses_by_pk?: (e_game_plugin_install_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_game_plugin_install_statuses" */ + e_game_plugin_install_statuses_stream?: (e_game_plugin_install_statusesGenqlSelection & { __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_game_plugin_install_statuses_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_game_plugin_install_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_game_plugin_kinds" */ + e_game_plugin_kinds?: (e_game_plugin_kindsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_plugin_kinds_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_game_plugin_kinds_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_plugin_kinds_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_game_plugin_kinds" */ + e_game_plugin_kinds_aggregate?: (e_game_plugin_kinds_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_plugin_kinds_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_game_plugin_kinds_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_plugin_kinds_bool_exp | null)} }) + /** fetch data from the table: "e_game_plugin_kinds" using primary key columns */ + e_game_plugin_kinds_by_pk?: (e_game_plugin_kindsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_game_plugin_kinds" */ + e_game_plugin_kinds_stream?: (e_game_plugin_kindsGenqlSelection & { __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_game_plugin_kinds_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_game_plugin_kinds_bool_exp | null)} }) /** fetch data from the table: "e_game_server_node_statuses" */ e_game_server_node_statuses?: (e_game_server_node_statusesGenqlSelection & { __args?: { /** distinct select on columns */ @@ -84627,6 +88520,210 @@ export interface subscription_rootGenqlSelection{ cursor: (friends_stream_cursor_input | null)[], /** filter the rows returned */ where?: (friends_bool_exp | null)} }) + /** fetch data from the table: "game_mode_plugins" */ + game_mode_plugins?: (game_mode_pluginsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_mode_plugins_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?: (game_mode_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_mode_plugins_bool_exp | null)} }) + /** fetch aggregated fields from the table: "game_mode_plugins" */ + game_mode_plugins_aggregate?: (game_mode_plugins_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_mode_plugins_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?: (game_mode_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_mode_plugins_bool_exp | null)} }) + /** fetch data from the table: "game_mode_plugins" using primary key columns */ + game_mode_plugins_by_pk?: (game_mode_pluginsGenqlSelection & { __args: {game_mode_id: Scalars['uuid'], plugin_slug: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "game_mode_plugins" */ + game_mode_plugins_stream?: (game_mode_pluginsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (game_mode_plugins_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (game_mode_plugins_bool_exp | null)} }) + /** fetch data from the table: "game_modes" */ + game_modes?: (game_modesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_modes_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?: (game_modes_order_by[] | null), + /** filter the rows returned */ + where?: (game_modes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "game_modes" */ + game_modes_aggregate?: (game_modes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_modes_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?: (game_modes_order_by[] | null), + /** filter the rows returned */ + where?: (game_modes_bool_exp | null)} }) + /** fetch data from the table: "game_modes" using primary key columns */ + game_modes_by_pk?: (game_modesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "game_modes" */ + game_modes_stream?: (game_modesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (game_modes_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (game_modes_bool_exp | null)} }) + /** fetch data from the table: "game_plugin_installs" */ + game_plugin_installs?: (game_plugin_installsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_plugin_installs_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?: (game_plugin_installs_order_by[] | null), + /** filter the rows returned */ + where?: (game_plugin_installs_bool_exp | null)} }) + /** fetch aggregated fields from the table: "game_plugin_installs" */ + game_plugin_installs_aggregate?: (game_plugin_installs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_plugin_installs_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?: (game_plugin_installs_order_by[] | null), + /** filter the rows returned */ + where?: (game_plugin_installs_bool_exp | null)} }) + /** fetch data from the table: "game_plugin_installs" using primary key columns */ + game_plugin_installs_by_pk?: (game_plugin_installsGenqlSelection & { __args: {plugin_slug: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "game_plugin_installs" */ + game_plugin_installs_stream?: (game_plugin_installsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (game_plugin_installs_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (game_plugin_installs_bool_exp | null)} }) + /** fetch data from the table: "game_plugin_versions" */ + game_plugin_versions?: (game_plugin_versionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_plugin_versions_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?: (game_plugin_versions_order_by[] | null), + /** filter the rows returned */ + where?: (game_plugin_versions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "game_plugin_versions" */ + game_plugin_versions_aggregate?: (game_plugin_versions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_plugin_versions_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?: (game_plugin_versions_order_by[] | null), + /** filter the rows returned */ + where?: (game_plugin_versions_bool_exp | null)} }) + /** fetch data from the table: "game_plugin_versions" using primary key columns */ + game_plugin_versions_by_pk?: (game_plugin_versionsGenqlSelection & { __args: {plugin_slug: Scalars['String'], runtime: e_plugin_runtimes_enum, version: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "game_plugin_versions" */ + game_plugin_versions_stream?: (game_plugin_versionsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (game_plugin_versions_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (game_plugin_versions_bool_exp | null)} }) + /** fetch data from the table: "game_plugins" */ + game_plugins?: (game_pluginsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_plugins_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?: (game_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_plugins_bool_exp | null)} }) + /** fetch aggregated fields from the table: "game_plugins" */ + game_plugins_aggregate?: (game_plugins_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_plugins_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?: (game_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_plugins_bool_exp | null)} }) + /** fetch data from the table: "game_plugins" using primary key columns */ + game_plugins_by_pk?: (game_pluginsGenqlSelection & { __args: {slug: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "game_plugins" */ + game_plugins_stream?: (game_pluginsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (game_plugins_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (game_plugins_bool_exp | null)} }) + /** fetch data from the table: "game_server_node_plugins" */ + game_server_node_plugins?: (game_server_node_pluginsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_server_node_plugins_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?: (game_server_node_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_server_node_plugins_bool_exp | null)} }) + /** fetch aggregated fields from the table: "game_server_node_plugins" */ + game_server_node_plugins_aggregate?: (game_server_node_plugins_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_server_node_plugins_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?: (game_server_node_plugins_order_by[] | null), + /** filter the rows returned */ + where?: (game_server_node_plugins_bool_exp | null)} }) + /** fetch data from the table: "game_server_node_plugins" using primary key columns */ + game_server_node_plugins_by_pk?: (game_server_node_pluginsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "game_server_node_plugins" */ + game_server_node_plugins_stream?: (game_server_node_pluginsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (game_server_node_plugins_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (game_server_node_plugins_bool_exp | null)} }) /** An array relationship */ game_server_nodes?: (game_server_nodesGenqlSelection & { __args?: { /** distinct select on columns */ @@ -85621,7 +89718,7 @@ export interface subscription_rootGenqlSelection{ cursor: (match_maps_stream_cursor_input | null)[], /** filter the rows returned */ where?: (match_maps_bool_exp | null)} }) - /** fetch data from the table: "match_options" */ + /** An array relationship */ match_options?: (match_optionsGenqlSelection & { __args?: { /** distinct select on columns */ distinct_on?: (match_options_select_column[] | null), @@ -85633,7 +89730,7 @@ export interface subscription_rootGenqlSelection{ order_by?: (match_options_order_by[] | null), /** filter the rows returned */ where?: (match_options_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_options" */ + /** An aggregate relationship */ match_options_aggregate?: (match_options_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ distinct_on?: (match_options_select_column[] | null), @@ -102826,6 +106923,14 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const AddCustomGamePluginOutput_possibleTypes: string[] = ['AddCustomGamePluginOutput'] + export const isAddCustomGamePluginOutput = (obj?: { __typename?: any } | null): obj is AddCustomGamePluginOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isAddCustomGamePluginOutput"') + return AddCustomGamePluginOutput_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"') @@ -103170,6 +107275,14 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const PluginReadmeOutput_possibleTypes: string[] = ['PluginReadmeOutput'] + export const isPluginReadmeOutput = (obj?: { __typename?: any } | null): obj is PluginReadmeOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isPluginReadmeOutput"') + return PluginReadmeOutput_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"') @@ -103178,6 +107291,14 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const PreviewGameModeOutput_possibleTypes: string[] = ['PreviewGameModeOutput'] + export const isPreviewGameModeOutput = (obj?: { __typename?: any } | null): obj is PreviewGameModeOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isPreviewGameModeOutput"') + return PreviewGameModeOutput_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"') @@ -103218,6 +107339,14 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const ReconcileNodePluginsOutput_possibleTypes: string[] = ['ReconcileNodePluginsOutput'] + export const isReconcileNodePluginsOutput = (obj?: { __typename?: any } | null): obj is ReconcileNodePluginsOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isReconcileNodePluginsOutput"') + return ReconcileNodePluginsOutput_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"') @@ -103362,6 +107491,14 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const SyncPluginRegistryOutput_possibleTypes: string[] = ['SyncPluginRegistryOutput'] + export const isSyncPluginRegistryOutput = (obj?: { __typename?: any } | null): obj is SyncPluginRegistryOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSyncPluginRegistryOutput"') + return SyncPluginRegistryOutput_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"') @@ -105626,6 +109763,150 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const e_game_plugin_channels_possibleTypes: string[] = ['e_game_plugin_channels'] + export const ise_game_plugin_channels = (obj?: { __typename?: any } | null): obj is e_game_plugin_channels => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_channels"') + return e_game_plugin_channels_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_channels_aggregate_possibleTypes: string[] = ['e_game_plugin_channels_aggregate'] + export const ise_game_plugin_channels_aggregate = (obj?: { __typename?: any } | null): obj is e_game_plugin_channels_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_channels_aggregate"') + return e_game_plugin_channels_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_channels_aggregate_fields_possibleTypes: string[] = ['e_game_plugin_channels_aggregate_fields'] + export const ise_game_plugin_channels_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_game_plugin_channels_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_channels_aggregate_fields"') + return e_game_plugin_channels_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_channels_max_fields_possibleTypes: string[] = ['e_game_plugin_channels_max_fields'] + export const ise_game_plugin_channels_max_fields = (obj?: { __typename?: any } | null): obj is e_game_plugin_channels_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_channels_max_fields"') + return e_game_plugin_channels_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_channels_min_fields_possibleTypes: string[] = ['e_game_plugin_channels_min_fields'] + export const ise_game_plugin_channels_min_fields = (obj?: { __typename?: any } | null): obj is e_game_plugin_channels_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_channels_min_fields"') + return e_game_plugin_channels_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_channels_mutation_response_possibleTypes: string[] = ['e_game_plugin_channels_mutation_response'] + export const ise_game_plugin_channels_mutation_response = (obj?: { __typename?: any } | null): obj is e_game_plugin_channels_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_channels_mutation_response"') + return e_game_plugin_channels_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_install_statuses_possibleTypes: string[] = ['e_game_plugin_install_statuses'] + export const ise_game_plugin_install_statuses = (obj?: { __typename?: any } | null): obj is e_game_plugin_install_statuses => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_install_statuses"') + return e_game_plugin_install_statuses_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_install_statuses_aggregate_possibleTypes: string[] = ['e_game_plugin_install_statuses_aggregate'] + export const ise_game_plugin_install_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_game_plugin_install_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_install_statuses_aggregate"') + return e_game_plugin_install_statuses_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_install_statuses_aggregate_fields_possibleTypes: string[] = ['e_game_plugin_install_statuses_aggregate_fields'] + export const ise_game_plugin_install_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_game_plugin_install_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_install_statuses_aggregate_fields"') + return e_game_plugin_install_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_install_statuses_max_fields_possibleTypes: string[] = ['e_game_plugin_install_statuses_max_fields'] + export const ise_game_plugin_install_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_game_plugin_install_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_install_statuses_max_fields"') + return e_game_plugin_install_statuses_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_install_statuses_min_fields_possibleTypes: string[] = ['e_game_plugin_install_statuses_min_fields'] + export const ise_game_plugin_install_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_game_plugin_install_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_install_statuses_min_fields"') + return e_game_plugin_install_statuses_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_install_statuses_mutation_response_possibleTypes: string[] = ['e_game_plugin_install_statuses_mutation_response'] + export const ise_game_plugin_install_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_game_plugin_install_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_install_statuses_mutation_response"') + return e_game_plugin_install_statuses_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_kinds_possibleTypes: string[] = ['e_game_plugin_kinds'] + export const ise_game_plugin_kinds = (obj?: { __typename?: any } | null): obj is e_game_plugin_kinds => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_kinds"') + return e_game_plugin_kinds_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_kinds_aggregate_possibleTypes: string[] = ['e_game_plugin_kinds_aggregate'] + export const ise_game_plugin_kinds_aggregate = (obj?: { __typename?: any } | null): obj is e_game_plugin_kinds_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_kinds_aggregate"') + return e_game_plugin_kinds_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_kinds_aggregate_fields_possibleTypes: string[] = ['e_game_plugin_kinds_aggregate_fields'] + export const ise_game_plugin_kinds_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_game_plugin_kinds_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_kinds_aggregate_fields"') + return e_game_plugin_kinds_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_kinds_max_fields_possibleTypes: string[] = ['e_game_plugin_kinds_max_fields'] + export const ise_game_plugin_kinds_max_fields = (obj?: { __typename?: any } | null): obj is e_game_plugin_kinds_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_kinds_max_fields"') + return e_game_plugin_kinds_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_kinds_min_fields_possibleTypes: string[] = ['e_game_plugin_kinds_min_fields'] + export const ise_game_plugin_kinds_min_fields = (obj?: { __typename?: any } | null): obj is e_game_plugin_kinds_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_kinds_min_fields"') + return e_game_plugin_kinds_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_plugin_kinds_mutation_response_possibleTypes: string[] = ['e_game_plugin_kinds_mutation_response'] + export const ise_game_plugin_kinds_mutation_response = (obj?: { __typename?: any } | null): obj is e_game_plugin_kinds_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_plugin_kinds_mutation_response"') + return e_game_plugin_kinds_mutation_response_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"') @@ -108026,6 +112307,486 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const game_mode_plugins_possibleTypes: string[] = ['game_mode_plugins'] + export const isgame_mode_plugins = (obj?: { __typename?: any } | null): obj is game_mode_plugins => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_mode_plugins"') + return game_mode_plugins_possibleTypes.includes(obj.__typename) + } + + + + const game_mode_plugins_aggregate_possibleTypes: string[] = ['game_mode_plugins_aggregate'] + export const isgame_mode_plugins_aggregate = (obj?: { __typename?: any } | null): obj is game_mode_plugins_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_mode_plugins_aggregate"') + return game_mode_plugins_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const game_mode_plugins_aggregate_fields_possibleTypes: string[] = ['game_mode_plugins_aggregate_fields'] + export const isgame_mode_plugins_aggregate_fields = (obj?: { __typename?: any } | null): obj is game_mode_plugins_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_mode_plugins_aggregate_fields"') + return game_mode_plugins_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_mode_plugins_avg_fields_possibleTypes: string[] = ['game_mode_plugins_avg_fields'] + export const isgame_mode_plugins_avg_fields = (obj?: { __typename?: any } | null): obj is game_mode_plugins_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_mode_plugins_avg_fields"') + return game_mode_plugins_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_mode_plugins_max_fields_possibleTypes: string[] = ['game_mode_plugins_max_fields'] + export const isgame_mode_plugins_max_fields = (obj?: { __typename?: any } | null): obj is game_mode_plugins_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_mode_plugins_max_fields"') + return game_mode_plugins_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_mode_plugins_min_fields_possibleTypes: string[] = ['game_mode_plugins_min_fields'] + export const isgame_mode_plugins_min_fields = (obj?: { __typename?: any } | null): obj is game_mode_plugins_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_mode_plugins_min_fields"') + return game_mode_plugins_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_mode_plugins_mutation_response_possibleTypes: string[] = ['game_mode_plugins_mutation_response'] + export const isgame_mode_plugins_mutation_response = (obj?: { __typename?: any } | null): obj is game_mode_plugins_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_mode_plugins_mutation_response"') + return game_mode_plugins_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const game_mode_plugins_stddev_fields_possibleTypes: string[] = ['game_mode_plugins_stddev_fields'] + export const isgame_mode_plugins_stddev_fields = (obj?: { __typename?: any } | null): obj is game_mode_plugins_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_mode_plugins_stddev_fields"') + return game_mode_plugins_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_mode_plugins_stddev_pop_fields_possibleTypes: string[] = ['game_mode_plugins_stddev_pop_fields'] + export const isgame_mode_plugins_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is game_mode_plugins_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_mode_plugins_stddev_pop_fields"') + return game_mode_plugins_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_mode_plugins_stddev_samp_fields_possibleTypes: string[] = ['game_mode_plugins_stddev_samp_fields'] + export const isgame_mode_plugins_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is game_mode_plugins_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_mode_plugins_stddev_samp_fields"') + return game_mode_plugins_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_mode_plugins_sum_fields_possibleTypes: string[] = ['game_mode_plugins_sum_fields'] + export const isgame_mode_plugins_sum_fields = (obj?: { __typename?: any } | null): obj is game_mode_plugins_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_mode_plugins_sum_fields"') + return game_mode_plugins_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_mode_plugins_var_pop_fields_possibleTypes: string[] = ['game_mode_plugins_var_pop_fields'] + export const isgame_mode_plugins_var_pop_fields = (obj?: { __typename?: any } | null): obj is game_mode_plugins_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_mode_plugins_var_pop_fields"') + return game_mode_plugins_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_mode_plugins_var_samp_fields_possibleTypes: string[] = ['game_mode_plugins_var_samp_fields'] + export const isgame_mode_plugins_var_samp_fields = (obj?: { __typename?: any } | null): obj is game_mode_plugins_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_mode_plugins_var_samp_fields"') + return game_mode_plugins_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_mode_plugins_variance_fields_possibleTypes: string[] = ['game_mode_plugins_variance_fields'] + export const isgame_mode_plugins_variance_fields = (obj?: { __typename?: any } | null): obj is game_mode_plugins_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_mode_plugins_variance_fields"') + return game_mode_plugins_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_modes_possibleTypes: string[] = ['game_modes'] + export const isgame_modes = (obj?: { __typename?: any } | null): obj is game_modes => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_modes"') + return game_modes_possibleTypes.includes(obj.__typename) + } + + + + const game_modes_aggregate_possibleTypes: string[] = ['game_modes_aggregate'] + export const isgame_modes_aggregate = (obj?: { __typename?: any } | null): obj is game_modes_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_modes_aggregate"') + return game_modes_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const game_modes_aggregate_fields_possibleTypes: string[] = ['game_modes_aggregate_fields'] + export const isgame_modes_aggregate_fields = (obj?: { __typename?: any } | null): obj is game_modes_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_modes_aggregate_fields"') + return game_modes_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_modes_max_fields_possibleTypes: string[] = ['game_modes_max_fields'] + export const isgame_modes_max_fields = (obj?: { __typename?: any } | null): obj is game_modes_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_modes_max_fields"') + return game_modes_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_modes_min_fields_possibleTypes: string[] = ['game_modes_min_fields'] + export const isgame_modes_min_fields = (obj?: { __typename?: any } | null): obj is game_modes_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_modes_min_fields"') + return game_modes_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_modes_mutation_response_possibleTypes: string[] = ['game_modes_mutation_response'] + export const isgame_modes_mutation_response = (obj?: { __typename?: any } | null): obj is game_modes_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_modes_mutation_response"') + return game_modes_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_installs_possibleTypes: string[] = ['game_plugin_installs'] + export const isgame_plugin_installs = (obj?: { __typename?: any } | null): obj is game_plugin_installs => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_installs"') + return game_plugin_installs_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_installs_aggregate_possibleTypes: string[] = ['game_plugin_installs_aggregate'] + export const isgame_plugin_installs_aggregate = (obj?: { __typename?: any } | null): obj is game_plugin_installs_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_installs_aggregate"') + return game_plugin_installs_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_installs_aggregate_fields_possibleTypes: string[] = ['game_plugin_installs_aggregate_fields'] + export const isgame_plugin_installs_aggregate_fields = (obj?: { __typename?: any } | null): obj is game_plugin_installs_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_installs_aggregate_fields"') + return game_plugin_installs_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_installs_max_fields_possibleTypes: string[] = ['game_plugin_installs_max_fields'] + export const isgame_plugin_installs_max_fields = (obj?: { __typename?: any } | null): obj is game_plugin_installs_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_installs_max_fields"') + return game_plugin_installs_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_installs_min_fields_possibleTypes: string[] = ['game_plugin_installs_min_fields'] + export const isgame_plugin_installs_min_fields = (obj?: { __typename?: any } | null): obj is game_plugin_installs_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_installs_min_fields"') + return game_plugin_installs_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_installs_mutation_response_possibleTypes: string[] = ['game_plugin_installs_mutation_response'] + export const isgame_plugin_installs_mutation_response = (obj?: { __typename?: any } | null): obj is game_plugin_installs_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_installs_mutation_response"') + return game_plugin_installs_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_versions_possibleTypes: string[] = ['game_plugin_versions'] + export const isgame_plugin_versions = (obj?: { __typename?: any } | null): obj is game_plugin_versions => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_versions"') + return game_plugin_versions_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_versions_aggregate_possibleTypes: string[] = ['game_plugin_versions_aggregate'] + export const isgame_plugin_versions_aggregate = (obj?: { __typename?: any } | null): obj is game_plugin_versions_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_versions_aggregate"') + return game_plugin_versions_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_versions_aggregate_fields_possibleTypes: string[] = ['game_plugin_versions_aggregate_fields'] + export const isgame_plugin_versions_aggregate_fields = (obj?: { __typename?: any } | null): obj is game_plugin_versions_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_versions_aggregate_fields"') + return game_plugin_versions_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_versions_avg_fields_possibleTypes: string[] = ['game_plugin_versions_avg_fields'] + export const isgame_plugin_versions_avg_fields = (obj?: { __typename?: any } | null): obj is game_plugin_versions_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_versions_avg_fields"') + return game_plugin_versions_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_versions_max_fields_possibleTypes: string[] = ['game_plugin_versions_max_fields'] + export const isgame_plugin_versions_max_fields = (obj?: { __typename?: any } | null): obj is game_plugin_versions_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_versions_max_fields"') + return game_plugin_versions_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_versions_min_fields_possibleTypes: string[] = ['game_plugin_versions_min_fields'] + export const isgame_plugin_versions_min_fields = (obj?: { __typename?: any } | null): obj is game_plugin_versions_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_versions_min_fields"') + return game_plugin_versions_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_versions_mutation_response_possibleTypes: string[] = ['game_plugin_versions_mutation_response'] + export const isgame_plugin_versions_mutation_response = (obj?: { __typename?: any } | null): obj is game_plugin_versions_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_versions_mutation_response"') + return game_plugin_versions_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_versions_stddev_fields_possibleTypes: string[] = ['game_plugin_versions_stddev_fields'] + export const isgame_plugin_versions_stddev_fields = (obj?: { __typename?: any } | null): obj is game_plugin_versions_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_versions_stddev_fields"') + return game_plugin_versions_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_versions_stddev_pop_fields_possibleTypes: string[] = ['game_plugin_versions_stddev_pop_fields'] + export const isgame_plugin_versions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is game_plugin_versions_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_versions_stddev_pop_fields"') + return game_plugin_versions_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_versions_stddev_samp_fields_possibleTypes: string[] = ['game_plugin_versions_stddev_samp_fields'] + export const isgame_plugin_versions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is game_plugin_versions_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_versions_stddev_samp_fields"') + return game_plugin_versions_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_versions_sum_fields_possibleTypes: string[] = ['game_plugin_versions_sum_fields'] + export const isgame_plugin_versions_sum_fields = (obj?: { __typename?: any } | null): obj is game_plugin_versions_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_versions_sum_fields"') + return game_plugin_versions_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_versions_var_pop_fields_possibleTypes: string[] = ['game_plugin_versions_var_pop_fields'] + export const isgame_plugin_versions_var_pop_fields = (obj?: { __typename?: any } | null): obj is game_plugin_versions_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_versions_var_pop_fields"') + return game_plugin_versions_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_versions_var_samp_fields_possibleTypes: string[] = ['game_plugin_versions_var_samp_fields'] + export const isgame_plugin_versions_var_samp_fields = (obj?: { __typename?: any } | null): obj is game_plugin_versions_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_versions_var_samp_fields"') + return game_plugin_versions_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugin_versions_variance_fields_possibleTypes: string[] = ['game_plugin_versions_variance_fields'] + export const isgame_plugin_versions_variance_fields = (obj?: { __typename?: any } | null): obj is game_plugin_versions_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugin_versions_variance_fields"') + return game_plugin_versions_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugins_possibleTypes: string[] = ['game_plugins'] + export const isgame_plugins = (obj?: { __typename?: any } | null): obj is game_plugins => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugins"') + return game_plugins_possibleTypes.includes(obj.__typename) + } + + + + const game_plugins_aggregate_possibleTypes: string[] = ['game_plugins_aggregate'] + export const isgame_plugins_aggregate = (obj?: { __typename?: any } | null): obj is game_plugins_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugins_aggregate"') + return game_plugins_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const game_plugins_aggregate_fields_possibleTypes: string[] = ['game_plugins_aggregate_fields'] + export const isgame_plugins_aggregate_fields = (obj?: { __typename?: any } | null): obj is game_plugins_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugins_aggregate_fields"') + return game_plugins_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugins_avg_fields_possibleTypes: string[] = ['game_plugins_avg_fields'] + export const isgame_plugins_avg_fields = (obj?: { __typename?: any } | null): obj is game_plugins_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugins_avg_fields"') + return game_plugins_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugins_max_fields_possibleTypes: string[] = ['game_plugins_max_fields'] + export const isgame_plugins_max_fields = (obj?: { __typename?: any } | null): obj is game_plugins_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugins_max_fields"') + return game_plugins_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugins_min_fields_possibleTypes: string[] = ['game_plugins_min_fields'] + export const isgame_plugins_min_fields = (obj?: { __typename?: any } | null): obj is game_plugins_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugins_min_fields"') + return game_plugins_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugins_mutation_response_possibleTypes: string[] = ['game_plugins_mutation_response'] + export const isgame_plugins_mutation_response = (obj?: { __typename?: any } | null): obj is game_plugins_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugins_mutation_response"') + return game_plugins_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const game_plugins_stddev_fields_possibleTypes: string[] = ['game_plugins_stddev_fields'] + export const isgame_plugins_stddev_fields = (obj?: { __typename?: any } | null): obj is game_plugins_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugins_stddev_fields"') + return game_plugins_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugins_stddev_pop_fields_possibleTypes: string[] = ['game_plugins_stddev_pop_fields'] + export const isgame_plugins_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is game_plugins_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugins_stddev_pop_fields"') + return game_plugins_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugins_stddev_samp_fields_possibleTypes: string[] = ['game_plugins_stddev_samp_fields'] + export const isgame_plugins_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is game_plugins_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugins_stddev_samp_fields"') + return game_plugins_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugins_sum_fields_possibleTypes: string[] = ['game_plugins_sum_fields'] + export const isgame_plugins_sum_fields = (obj?: { __typename?: any } | null): obj is game_plugins_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugins_sum_fields"') + return game_plugins_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugins_var_pop_fields_possibleTypes: string[] = ['game_plugins_var_pop_fields'] + export const isgame_plugins_var_pop_fields = (obj?: { __typename?: any } | null): obj is game_plugins_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugins_var_pop_fields"') + return game_plugins_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugins_var_samp_fields_possibleTypes: string[] = ['game_plugins_var_samp_fields'] + export const isgame_plugins_var_samp_fields = (obj?: { __typename?: any } | null): obj is game_plugins_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugins_var_samp_fields"') + return game_plugins_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_plugins_variance_fields_possibleTypes: string[] = ['game_plugins_variance_fields'] + export const isgame_plugins_variance_fields = (obj?: { __typename?: any } | null): obj is game_plugins_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_plugins_variance_fields"') + return game_plugins_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_server_node_plugins_possibleTypes: string[] = ['game_server_node_plugins'] + export const isgame_server_node_plugins = (obj?: { __typename?: any } | null): obj is game_server_node_plugins => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_node_plugins"') + return game_server_node_plugins_possibleTypes.includes(obj.__typename) + } + + + + const game_server_node_plugins_aggregate_possibleTypes: string[] = ['game_server_node_plugins_aggregate'] + export const isgame_server_node_plugins_aggregate = (obj?: { __typename?: any } | null): obj is game_server_node_plugins_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_node_plugins_aggregate"') + return game_server_node_plugins_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const game_server_node_plugins_aggregate_fields_possibleTypes: string[] = ['game_server_node_plugins_aggregate_fields'] + export const isgame_server_node_plugins_aggregate_fields = (obj?: { __typename?: any } | null): obj is game_server_node_plugins_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_node_plugins_aggregate_fields"') + return game_server_node_plugins_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_server_node_plugins_max_fields_possibleTypes: string[] = ['game_server_node_plugins_max_fields'] + export const isgame_server_node_plugins_max_fields = (obj?: { __typename?: any } | null): obj is game_server_node_plugins_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_node_plugins_max_fields"') + return game_server_node_plugins_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_server_node_plugins_min_fields_possibleTypes: string[] = ['game_server_node_plugins_min_fields'] + export const isgame_server_node_plugins_min_fields = (obj?: { __typename?: any } | null): obj is game_server_node_plugins_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_node_plugins_min_fields"') + return game_server_node_plugins_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_server_node_plugins_mutation_response_possibleTypes: string[] = ['game_server_node_plugins_mutation_response'] + export const isgame_server_node_plugins_mutation_response = (obj?: { __typename?: any } | null): obj is game_server_node_plugins_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_node_plugins_mutation_response"') + return game_server_node_plugins_mutation_response_possibleTypes.includes(obj.__typename) + } + + + const game_server_nodes_possibleTypes: string[] = ['game_server_nodes'] export const isgame_server_nodes = (obj?: { __typename?: any } | null): obj is game_server_nodes => { if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes"') @@ -121260,6 +126021,7 @@ export const enumCursorOrdering = { export const enumCustomPagesConstraint = { custom_pages_pkey: 'custom_pages_pkey' as const, + custom_pages_plugin_slug_idx: 'custom_pages_plugin_slug_idx' as const, custom_pages_single_default_idx: 'custom_pages_single_default_idx' as const, custom_pages_slug_key: 'custom_pages_slug_key' as const } @@ -121275,6 +126037,7 @@ export const enumCustomPagesSelectColumn = { manifest_url: 'manifest_url' as const, nav_group: 'nav_group' as const, nav_order: 'nav_order' as const, + plugin_slug: 'plugin_slug' as const, profile_tab_label: 'profile_tab_label' as const, remote_entry_url: 'remote_entry_url' as const, remote_scope: 'remote_scope' as const, @@ -121295,6 +126058,7 @@ export const enumCustomPagesUpdateColumn = { manifest_url: 'manifest_url' as const, nav_group: 'nav_group' as const, nav_order: 'nav_order' as const, + plugin_slug: 'plugin_slug' as const, profile_tab_label: 'profile_tab_label' as const, remote_entry_url: 'remote_entry_url' as const, remote_scope: 'remote_scope' as const, @@ -121752,6 +126516,67 @@ export const enumEGameCfgTypesUpdateColumn = { value: 'value' as const } +export const enumEGamePluginChannelsConstraint = { + e_game_plugin_channels_pkey: 'e_game_plugin_channels_pkey' as const +} + +export const enumEGamePluginChannelsEnum = { + Auto: 'Auto' as const, + Pinned: 'Pinned' as const +} + +export const enumEGamePluginChannelsSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEGamePluginChannelsUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEGamePluginInstallStatusesConstraint = { + e_game_plugin_install_statuses_pkey: 'e_game_plugin_install_statuses_pkey' as const +} + +export const enumEGamePluginInstallStatusesEnum = { + Failed: 'Failed' as const, + Installed: 'Installed' as const, + Installing: 'Installing' as const, + Pending: 'Pending' as const, + Removing: 'Removing' as const +} + +export const enumEGamePluginInstallStatusesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEGamePluginInstallStatusesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEGamePluginKindsConstraint = { + e_game_plugin_kinds_pkey: 'e_game_plugin_kinds_pkey' as const +} + +export const enumEGamePluginKindsEnum = { + bundle: 'bundle' as const, + game: 'game' as const, + panel: 'panel' as const +} + +export const enumEGamePluginKindsSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEGamePluginKindsUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + export const enumEGameServerNodeStatusesConstraint = { e_game_server_node_statuses_pkey: 'e_game_server_node_statuses_pkey' as const } @@ -122692,6 +127517,228 @@ export const enumFriendsUpdateColumn = { status: 'status' as const } +export const enumGameModePluginsConstraint = { + game_mode_plugins_pkey: 'game_mode_plugins_pkey' as const +} + +export const enumGameModePluginsSelectColumn = { + config: 'config' as const, + game_mode_id: 'game_mode_id' as const, + load_order: 'load_order' as const, + plugin_slug: 'plugin_slug' as const, + required: 'required' as const +} + +export const enumGameModePluginsSelectColumnGameModePluginsAggregateBoolExpBoolAndArgumentsColumns = { + required: 'required' as const +} + +export const enumGameModePluginsSelectColumnGameModePluginsAggregateBoolExpBoolOrArgumentsColumns = { + required: 'required' as const +} + +export const enumGameModePluginsUpdateColumn = { + config: 'config' as const, + game_mode_id: 'game_mode_id' as const, + load_order: 'load_order' as const, + plugin_slug: 'plugin_slug' as const, + required: 'required' as const +} + +export const enumGameModesConstraint = { + game_modes_pkey: 'game_modes_pkey' as const, + game_modes_slug_key: 'game_modes_slug_key' as const +} + +export const enumGameModesSelectColumn = { + archived_at: 'archived_at' as const, + cfg: 'cfg' as const, + competitive_safe: 'competitive_safe' as const, + created_at: 'created_at' as const, + description: 'description' as const, + enabled: 'enabled' as const, + extra_game_params: 'extra_game_params' as const, + icon: 'icon' as const, + id: 'id' as const, + name: 'name' as const, + slug: 'slug' as const, + updated_at: 'updated_at' as const +} + +export const enumGameModesUpdateColumn = { + archived_at: 'archived_at' as const, + cfg: 'cfg' as const, + competitive_safe: 'competitive_safe' as const, + created_at: 'created_at' as const, + description: 'description' as const, + enabled: 'enabled' as const, + extra_game_params: 'extra_game_params' as const, + icon: 'icon' as const, + id: 'id' as const, + name: 'name' as const, + slug: 'slug' as const, + updated_at: 'updated_at' as const +} + +export const enumGamePluginInstallsConstraint = { + game_plugin_installs_pkey: 'game_plugin_installs_pkey' as const +} + +export const enumGamePluginInstallsSelectColumn = { + always_load: 'always_load' as const, + channel: 'channel' as const, + created_at: 'created_at' as const, + disable_server_guidelines: 'disable_server_guidelines' as const, + enabled: 'enabled' as const, + plugin_slug: 'plugin_slug' as const, + updated_at: 'updated_at' as const, + version: 'version' as const +} + +export const enumGamePluginInstallsUpdateColumn = { + always_load: 'always_load' as const, + channel: 'channel' as const, + created_at: 'created_at' as const, + disable_server_guidelines: 'disable_server_guidelines' as const, + enabled: 'enabled' as const, + plugin_slug: 'plugin_slug' as const, + updated_at: 'updated_at' as const, + version: 'version' as const +} + +export const enumGamePluginVersionsConstraint = { + game_plugin_versions_pkey: 'game_plugin_versions_pkey' as const +} + +export const enumGamePluginVersionsSelectColumn = { + install_path: 'install_path' as const, + layout: 'layout' as const, + plugin_slug: 'plugin_slug' as const, + prerelease: 'prerelease' as const, + published_at: 'published_at' as const, + runtime: 'runtime' as const, + sha256: 'sha256' as const, + size: 'size' as const, + url: 'url' as const, + version: 'version' as const +} + +export const enumGamePluginVersionsSelectColumnGamePluginVersionsAggregateBoolExpBoolAndArgumentsColumns = { + prerelease: 'prerelease' as const +} + +export const enumGamePluginVersionsSelectColumnGamePluginVersionsAggregateBoolExpBoolOrArgumentsColumns = { + prerelease: 'prerelease' as const +} + +export const enumGamePluginVersionsUpdateColumn = { + install_path: 'install_path' as const, + layout: 'layout' as const, + plugin_slug: 'plugin_slug' as const, + prerelease: 'prerelease' as const, + published_at: 'published_at' as const, + runtime: 'runtime' as const, + sha256: 'sha256' as const, + size: 'size' as const, + url: 'url' as const, + version: 'version' as const +} + +export const enumGamePluginsConstraint = { + game_plugins_pkey: 'game_plugins_pkey' as const +} + +export const enumGamePluginsSelectColumn = { + author: 'author' as const, + config_path: 'config_path' as const, + config_schema: 'config_schema' as const, + cvars: 'cvars' as const, + description: 'description' as const, + homepage: 'homepage' as const, + hot_swappable: 'hot_swappable' as const, + kind: 'kind' as const, + name: 'name' as const, + pairs_with: 'pairs_with' as const, + panel: 'panel' as const, + requires_server_guidelines_disabled: 'requires_server_guidelines_disabled' as const, + requires_service: 'requires_service' as const, + slug: 'slug' as const, + source: 'source' as const, + synced_at: 'synced_at' as const, + tags: 'tags' as const, + verified: 'verified' as const, + wiring: 'wiring' as const +} + +export const enumGamePluginsUpdateColumn = { + author: 'author' as const, + config_path: 'config_path' as const, + config_schema: 'config_schema' as const, + cvars: 'cvars' as const, + description: 'description' as const, + homepage: 'homepage' as const, + hot_swappable: 'hot_swappable' as const, + kind: 'kind' as const, + name: 'name' as const, + pairs_with: 'pairs_with' as const, + panel: 'panel' as const, + requires_server_guidelines_disabled: 'requires_server_guidelines_disabled' as const, + requires_service: 'requires_service' as const, + slug: 'slug' as const, + source: 'source' as const, + synced_at: 'synced_at' as const, + tags: 'tags' as const, + verified: 'verified' as const, + wiring: 'wiring' as const +} + +export const enumGameServerNodePluginsConstraint = { + game_server_node_plugins_node_plugin_key: 'game_server_node_plugins_node_plugin_key' as const, + game_server_node_plugins_pkey: 'game_server_node_plugins_pkey' as const +} + +export const enumGameServerNodePluginsSelectColumn = { + channel: 'channel' as const, + created_at: 'created_at' as const, + detected: 'detected' as const, + detected_version: 'detected_version' as const, + game_server_node_id: 'game_server_node_id' as const, + id: 'id' as const, + installed_at: 'installed_at' as const, + last_error: 'last_error' as const, + plugin_slug: 'plugin_slug' as const, + runtime: 'runtime' as const, + source: 'source' as const, + status: 'status' as const, + updated_at: 'updated_at' as const, + version: 'version' as const +} + +export const enumGameServerNodePluginsSelectColumnGameServerNodePluginsAggregateBoolExpBoolAndArgumentsColumns = { + detected: 'detected' as const +} + +export const enumGameServerNodePluginsSelectColumnGameServerNodePluginsAggregateBoolExpBoolOrArgumentsColumns = { + detected: 'detected' as const +} + +export const enumGameServerNodePluginsUpdateColumn = { + channel: 'channel' as const, + created_at: 'created_at' as const, + detected: 'detected' as const, + detected_version: 'detected_version' as const, + game_server_node_id: 'game_server_node_id' as const, + id: 'id' as const, + installed_at: 'installed_at' as const, + last_error: 'last_error' as const, + plugin_slug: 'plugin_slug' as const, + runtime: 'runtime' as const, + source: 'source' as const, + status: 'status' as const, + updated_at: 'updated_at' as const, + version: 'version' as const +} + export const enumGameServerNodesConstraint = { game_server_nodes_pkey: 'game_server_nodes_pkey' as const } @@ -122726,6 +127773,7 @@ export const enumGameServerNodesSelectColumn = { pin_build_id: 'pin_build_id' as const, pin_plugin_runtime: 'pin_plugin_runtime' as const, pin_plugin_version: 'pin_plugin_version' as const, + plugins_synced_at: 'plugins_synced_at' as const, public_ip: 'public_ip' as const, region: 'region' as const, shader_bake_progress: 'shader_bake_progress' as const, @@ -122792,6 +127840,7 @@ export const enumGameServerNodesUpdateColumn = { pin_build_id: 'pin_build_id' as const, pin_plugin_runtime: 'pin_plugin_runtime' as const, pin_plugin_version: 'pin_plugin_version' as const, + plugins_synced_at: 'plugins_synced_at' as const, public_ip: 'public_ip' as const, region: 'region' as const, shader_bake_progress: 'shader_bake_progress' as const, @@ -123610,6 +128659,7 @@ export const enumMatchOptionsSelectColumn = { check_in_setting: 'check_in_setting' as const, coaches: 'coaches' as const, default_models: 'default_models' as const, + game_mode_id: 'game_mode_id' as const, halftime_pausematch: 'halftime_pausematch' as const, id: 'id' as const, invite_code: 'invite_code' as const, @@ -123633,6 +128683,34 @@ export const enumMatchOptionsSelectColumn = { veto_pick_timeout: 'veto_pick_timeout' as const } +export const enumMatchOptionsSelectColumnMatchOptionsAggregateBoolExpBoolAndArgumentsColumns = { + auto_cancellation: 'auto_cancellation' as const, + camera_allow_teammates: 'camera_allow_teammates' as const, + camera_required: 'camera_required' as const, + coaches: 'coaches' as const, + default_models: 'default_models' as const, + halftime_pausematch: 'halftime_pausematch' as const, + knife_round: 'knife_round' as const, + map_veto: 'map_veto' as const, + overtime: 'overtime' as const, + prefer_dedicated_server: 'prefer_dedicated_server' as const, + region_veto: 'region_veto' as const +} + +export const enumMatchOptionsSelectColumnMatchOptionsAggregateBoolExpBoolOrArgumentsColumns = { + auto_cancellation: 'auto_cancellation' as const, + camera_allow_teammates: 'camera_allow_teammates' as const, + camera_required: 'camera_required' as const, + coaches: 'coaches' as const, + default_models: 'default_models' as const, + halftime_pausematch: 'halftime_pausematch' as const, + knife_round: 'knife_round' as const, + map_veto: 'map_veto' as const, + overtime: 'overtime' as const, + prefer_dedicated_server: 'prefer_dedicated_server' as const, + region_veto: 'region_veto' as const +} + export const enumMatchOptionsUpdateColumn = { auto_cancel_duration: 'auto_cancel_duration' as const, auto_cancellation: 'auto_cancellation' as const, @@ -123642,6 +128720,7 @@ export const enumMatchOptionsUpdateColumn = { check_in_setting: 'check_in_setting' as const, coaches: 'coaches' as const, default_models: 'default_models' as const, + game_mode_id: 'game_mode_id' as const, halftime_pausematch: 'halftime_pausematch' as const, id: 'id' as const, invite_code: 'invite_code' as const, @@ -123776,6 +128855,7 @@ export const enumMatchesConstraint = { export const enumMatchesSelectColumn = { cancels_at: 'cancels_at' as const, + counts_toward_ranking: 'counts_toward_ranking' as const, created_at: 'created_at' as const, effective_at: 'effective_at' as const, ended_at: 'ended_at' as const, @@ -123799,8 +128879,17 @@ export const enumMatchesSelectColumn = { winning_lineup_id: 'winning_lineup_id' as const } +export const enumMatchesSelectColumnMatchesAggregateBoolExpBoolAndArgumentsColumns = { + counts_toward_ranking: 'counts_toward_ranking' as const +} + +export const enumMatchesSelectColumnMatchesAggregateBoolExpBoolOrArgumentsColumns = { + counts_toward_ranking: 'counts_toward_ranking' as const +} + export const enumMatchesUpdateColumn = { cancels_at: 'cancels_at' as const, + counts_toward_ranking: 'counts_toward_ranking' as const, created_at: 'created_at' as const, ended_at: 'ended_at' as const, external_id: 'external_id' as const, @@ -125164,15 +130253,18 @@ export const enumServersSelectColumn = { connected: 'connected' as const, enabled: 'enabled' as const, game: 'game' as const, + game_mode_id: 'game_mode_id' as const, game_server_node_id: 'game_server_node_id' as const, host: 'host' as const, id: 'id' as const, is_dedicated: 'is_dedicated' as const, label: 'label' as const, + loaded_plugins: 'loaded_plugins' as const, max_players: 'max_players' as const, offline_at: 'offline_at' as const, plugin_runtime: 'plugin_runtime' as const, plugin_version: 'plugin_version' as const, + plugins_checked_at: 'plugins_checked_at' as const, port: 'port' as const, rcon_password: 'rcon_password' as const, rcon_status: 'rcon_status' as const, @@ -125206,15 +130298,18 @@ export const enumServersUpdateColumn = { connected: 'connected' as const, enabled: 'enabled' as const, game: 'game' as const, + game_mode_id: 'game_mode_id' as const, game_server_node_id: 'game_server_node_id' as const, host: 'host' as const, id: 'id' as const, is_dedicated: 'is_dedicated' as const, label: 'label' as const, + loaded_plugins: 'loaded_plugins' as const, max_players: 'max_players' as const, offline_at: 'offline_at' as const, plugin_runtime: 'plugin_runtime' as const, plugin_version: 'plugin_version' as const, + plugins_checked_at: 'plugins_checked_at' as const, port: 'port' as const, rcon_password: 'rcon_password' as const, rcon_status: 'rcon_status' as const, diff --git a/generated/types.ts b/generated/types.ts index 505dc79e1..b2a5f4f43 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -1,7134 +1,7262 @@ export default { "scalars": [ - 5, - 31, - 40, - 80, - 111, - 119, - 123, - 125, - 136, - 147, - 159, - 172, - 181, - 189, - 205, - 216, - 228, - 241, - 251, - 259, + 6, + 32, + 41, + 84, + 116, + 124, + 128, + 130, + 141, + 152, + 164, + 177, + 186, + 194, + 210, + 221, + 233, + 246, + 256, 264, - 267, - 274, - 283, - 291, - 309, - 324, - 325, - 326, - 338, - 347, - 354, - 367, - 375, - 385, - 394, - 402, - 412, - 421, - 429, - 439, - 448, - 456, - 473, - 484, - 485, - 486, - 498, - 518, - 529, - 530, - 531, - 543, - 563, - 575, - 576, - 577, - 589, - 601, - 602, - 611, - 615, - 621, - 622, - 631, - 635, - 641, - 642, - 651, - 655, - 661, - 662, - 672, - 676, - 682, - 683, - 693, - 697, - 703, - 704, - 714, - 718, - 724, - 725, - 735, - 739, - 745, - 746, - 756, - 760, - 766, - 767, - 776, - 780, - 786, - 787, - 796, - 800, - 806, - 807, - 817, - 821, - 827, - 828, - 837, - 841, - 847, - 848, - 858, + 269, + 272, + 279, + 288, + 296, + 314, + 329, + 330, + 331, + 343, + 352, + 359, + 372, + 380, + 390, + 399, + 407, + 417, + 426, + 434, + 444, + 453, + 461, + 478, + 489, + 490, + 491, + 503, + 523, + 534, + 535, + 536, + 548, + 568, + 580, + 581, + 582, + 594, + 606, + 607, + 616, + 620, + 626, + 627, + 636, + 640, + 646, + 647, + 656, + 660, + 666, + 667, + 677, + 681, + 687, + 688, + 698, + 702, + 708, + 709, + 719, + 723, + 729, + 730, + 740, + 744, + 750, + 751, + 761, + 765, + 771, + 772, + 781, + 785, + 791, + 792, + 801, + 805, + 811, + 812, + 822, + 826, + 832, + 833, + 842, + 846, + 852, + 853, 862, - 868, - 869, - 879, - 883, - 889, - 890, - 900, - 904, - 910, - 911, - 921, - 925, - 931, - 932, - 942, - 946, - 952, - 953, - 963, - 967, - 973, - 974, - 983, - 987, - 993, - 994, - 1004, - 1008, - 1014, - 1015, - 1024, + 866, + 872, + 873, + 882, + 886, + 892, + 893, + 902, + 906, + 912, + 913, + 923, + 927, + 933, + 934, + 944, + 948, + 954, + 955, + 965, + 969, + 975, + 976, + 986, + 990, + 996, + 997, + 1007, + 1011, + 1017, + 1018, 1028, - 1034, - 1035, - 1045, - 1049, - 1055, - 1056, - 1065, + 1032, + 1038, + 1039, + 1048, + 1052, + 1058, + 1059, 1069, - 1075, - 1076, - 1085, + 1073, + 1079, + 1080, 1089, - 1095, - 1096, - 1106, + 1093, + 1099, + 1100, 1110, - 1116, - 1117, - 1127, - 1131, - 1137, - 1138, - 1147, - 1151, - 1157, - 1158, - 1167, + 1114, + 1120, + 1121, + 1130, + 1134, + 1140, + 1141, + 1150, + 1154, + 1160, + 1161, 1171, - 1177, - 1178, - 1187, - 1191, - 1197, - 1198, - 1207, - 1211, - 1217, - 1218, - 1227, - 1231, - 1237, - 1238, - 1248, + 1175, + 1181, + 1182, + 1192, + 1196, + 1202, + 1203, + 1212, + 1216, + 1222, + 1223, + 1232, + 1236, + 1242, + 1243, 1252, - 1258, - 1259, - 1268, + 1256, + 1262, + 1263, 1272, - 1278, - 1279, - 1288, + 1276, + 1282, + 1283, 1292, - 1298, - 1299, - 1308, - 1312, - 1318, - 1319, - 1328, - 1332, - 1338, - 1339, - 1349, + 1296, + 1302, + 1303, + 1313, + 1317, + 1323, + 1324, + 1333, + 1337, + 1343, + 1344, 1353, - 1359, - 1360, - 1369, + 1357, + 1363, + 1364, 1373, - 1379, - 1380, - 1389, + 1377, + 1383, + 1384, 1393, - 1399, - 1400, - 1410, + 1397, + 1403, + 1404, 1414, - 1420, - 1421, - 1431, - 1435, - 1441, - 1442, - 1452, - 1456, - 1462, - 1463, - 1472, - 1476, - 1482, - 1483, - 1492, + 1418, + 1424, + 1425, + 1434, + 1438, + 1444, + 1445, + 1454, + 1458, + 1464, + 1465, + 1475, + 1479, + 1485, + 1486, 1496, - 1502, - 1503, - 1512, - 1516, - 1522, - 1530, - 1534, - 1546, + 1500, + 1506, + 1507, + 1517, + 1521, + 1527, + 1528, + 1537, + 1541, + 1547, + 1548, + 1557, + 1561, + 1567, 1568, - 1579, - 1591, + 1577, + 1581, + 1587, + 1595, 1599, 1611, - 1629, - 1640, - 1652, - 1670, - 1681, - 1693, - 1709, - 1719, - 1723, - 1733, - 1743, - 1747, - 1754, - 1764, - 1772, - 1777, + 1633, + 1644, + 1656, + 1664, + 1676, + 1694, + 1705, + 1717, + 1735, + 1746, + 1758, + 1774, 1784, - 1793, - 1801, + 1788, + 1798, + 1808, + 1812, 1819, - 1835, - 1836, + 1829, 1837, + 1842, 1849, - 1863, - 1877, - 1885, - 1896, - 1909, - 1917, - 1926, - 1928, - 1930, + 1858, + 1866, + 1884, + 1899, + 1900, + 1901, + 1913, + 1925, + 1934, + 1938, 1944, - 1962, - 1972, - 1980, + 1952, + 1956, + 1970, + 1981, + 1982, + 1983, 1995, - 2006, - 2018, - 2036, - 2047, - 2059, - 2077, - 2088, - 2100, - 2116, - 2127, - 2131, - 2139, + 2009, + 2022, + 2030, + 2045, + 2055, + 2056, + 2057, + 2061, + 2076, + 2092, + 2093, + 2094, + 2106, + 2120, + 2134, + 2142, 2153, - 2161, - 2176, + 2166, + 2174, + 2183, + 2185, 2187, - 2199, - 2217, - 2228, - 2240, - 2258, - 2270, - 2282, - 2294, - 2303, - 2307, - 2313, - 2322, - 2326, - 2340, - 2351, - 2352, - 2353, - 2365, - 2377, - 2386, - 2390, - 2402, - 2413, - 2414, - 2415, - 2419, - 2431, - 2443, - 2455, + 2201, + 2219, + 2229, + 2237, + 2252, + 2263, + 2275, + 2293, + 2304, + 2316, + 2334, + 2345, + 2357, + 2373, + 2384, + 2388, + 2396, + 2410, + 2418, + 2433, + 2444, + 2456, 2474, - 2489, - 2501, - 2521, - 2532, - 2533, - 2534, - 2546, + 2485, + 2497, + 2515, + 2527, + 2539, + 2551, + 2560, 2564, - 2576, - 2588, + 2570, + 2579, + 2583, + 2597, + 2608, 2609, - 2625, - 2626, - 2627, - 2639, - 2657, - 2668, - 2680, - 2698, - 2708, - 2709, - 2710, - 2714, - 2726, - 2738, - 2750, - 2763, - 2773, - 2781, - 2796, - 2806, - 2807, - 2808, - 2812, - 2827, - 2842, - 2843, - 2844, - 2856, - 2868, - 2876, - 2880, - 2892, - 2904, - 2916, - 2928, - 2936, - 2940, + 2610, + 2622, + 2634, + 2643, + 2647, + 2659, + 2670, + 2671, + 2672, + 2676, + 2688, + 2700, + 2712, + 2731, + 2746, + 2758, + 2778, + 2789, + 2790, + 2791, + 2803, + 2821, + 2833, + 2845, + 2866, + 2882, + 2883, + 2884, + 2896, + 2914, + 2925, + 2937, + 2955, + 2965, + 2966, 2967, - 2968, - 2969, - 2993, - 3002, - 3010, - 3020, - 3029, - 3037, - 3055, - 3070, + 2971, + 2983, + 2995, + 3007, + 3027, + 3039, + 3040, + 3041, + 3053, 3071, - 3072, - 3084, - 3092, - 3094, - 3105, - 3116, - 3128, - 3141, + 3081, + 3082, + 3083, + 3087, + 3102, + 3117, + 3118, + 3119, + 3131, + 3143, 3151, - 3159, + 3155, 3169, - 3178, - 3186, - 3201, - 3212, - 3224, - 3244, - 3255, - 3256, - 3257, - 3269, - 3285, - 3305, + 3181, + 3182, + 3183, + 3195, + 3207, + 3215, + 3219, + 3246, + 3247, + 3248, + 3272, + 3281, + 3289, + 3299, + 3308, 3316, - 3328, - 3341, + 3334, + 3349, 3350, - 3358, + 3351, + 3363, + 3371, 3373, 3384, - 3396, - 3416, - 3427, - 3428, - 3429, - 3441, - 3471, - 3482, - 3494, - 3502, - 3513, - 3514, - 3515, - 3527, - 3546, - 3568, - 3579, - 3591, + 3395, + 3407, + 3420, + 3430, + 3438, + 3448, + 3457, + 3465, + 3480, + 3491, + 3503, + 3523, + 3534, + 3535, + 3536, + 3548, + 3564, + 3584, + 3595, 3607, - 3633, - 3660, - 3671, - 3683, - 3699, - 3719, - 3730, - 3742, - 3760, - 3771, - 3783, - 3811, - 3822, - 3823, - 3824, + 3620, + 3629, + 3637, + 3652, + 3663, + 3675, + 3695, + 3706, + 3707, + 3708, + 3720, + 3750, + 3761, + 3773, + 3781, + 3792, + 3793, + 3794, + 3806, 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3842, - 3855, - 3865, - 3873, - 3884, - 3897, - 3905, - 3915, - 3924, - 3932, - 3947, - 3958, - 3970, - 3988, - 3999, - 4011, - 4035, - 4057, - 4067, - 4075, - 4085, - 4094, + 3847, + 3858, + 3870, + 3886, + 3912, + 3939, + 3950, + 3962, + 3978, + 3998, + 4009, + 4021, + 4039, + 4050, + 4062, + 4090, + 4101, 4102, - 4112, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, 4121, - 4129, - 4143, - 4153, - 4161, - 4171, - 4180, - 4188, - 4205, - 4217, - 4218, - 4219, - 4231, - 4243, - 4251, - 4255, - 4257, + 4134, + 4144, + 4152, + 4163, + 4176, + 4184, + 4194, + 4203, + 4211, + 4226, + 4237, + 4249, 4267, - 4277, - 4281, - 4288, - 4298, - 4306, - 4316, - 4325, - 4333, - 4348, - 4359, - 4371, + 4278, + 4290, + 4314, + 4336, + 4346, + 4354, + 4364, + 4373, + 4381, 4391, - 4402, - 4403, - 4404, - 4416, - 4429, - 4438, - 4446, - 4461, - 4471, - 4472, - 4473, - 4477, - 4489, - 4500, - 4512, - 4532, - 4544, - 4545, - 4546, - 4558, - 4571, - 4581, - 4589, - 4599, - 4608, - 4616, - 4633, - 4645, - 4646, - 4647, - 4659, - 4667, - 4669, - 4670, - 4682, - 4694, - 4706, - 4726, - 4738, - 4739, - 4740, - 4752, - 4768, - 4778, - 4782, - 4792, - 4802, - 4806, - 4818, + 4400, + 4408, + 4422, + 4432, + 4440, + 4450, + 4459, + 4467, + 4485, + 4501, + 4502, + 4503, + 4515, + 4527, + 4535, + 4539, + 4541, + 4551, + 4561, + 4565, + 4572, + 4582, + 4590, + 4600, + 4609, + 4617, + 4632, + 4643, + 4655, + 4675, + 4686, + 4687, + 4688, + 4700, + 4713, + 4722, + 4730, + 4745, + 4755, + 4756, + 4757, + 4761, + 4773, + 4784, + 4796, + 4816, + 4828, 4829, - 4841, - 4859, - 4870, - 4882, + 4830, + 4842, + 4855, + 4865, + 4873, + 4883, + 4892, 4900, - 4911, - 4923, - 4944, - 4960, - 4961, - 4962, - 4974, - 4992, - 5003, - 5015, - 5033, - 5044, - 5056, - 5074, + 4917, + 4929, + 4930, + 4931, + 4943, + 4951, + 4953, + 4954, + 4966, + 4978, + 4990, + 5010, + 5022, + 5023, + 5024, + 5036, + 5052, + 5062, + 5066, + 5076, 5086, - 5098, - 5128, - 5140, - 5141, - 5142, + 5090, + 5102, + 5113, + 5125, 5143, - 5144, - 5145, - 5146, - 5147, - 5148, - 5149, - 5150, - 5162, - 5170, - 5199, - 5200, - 5201, - 5202, - 5203, - 5204, - 5205, - 5206, + 5154, + 5166, + 5184, + 5195, 5207, - 5232, + 5228, + 5244, + 5245, + 5246, 5258, - 5301, - 5302, - 5303, - 5304, - 5305, - 5306, - 5307, - 5308, - 5309, - 5338, - 5366, - 5391, - 5409, + 5276, + 5287, + 5299, + 5317, + 5328, + 5340, + 5358, + 5370, + 5382, + 5412, + 5424, + 5425, + 5426, 5427, - 5448, - 5468, - 5494, - 5519, - 5537, - 5573, - 5574, - 5575, - 5576, - 5577, - 5578, - 5579, - 5580, - 5581, - 5606, - 5624, - 5642, - 5670, - 5697, - 5715, - 5733, - 5759, - 5784, - 5802, - 5820, - 5847, - 5848, - 5849, + 5428, + 5429, + 5430, + 5431, + 5432, + 5433, + 5434, + 5446, + 5454, + 5483, + 5484, + 5485, + 5486, + 5487, + 5488, + 5489, + 5490, + 5491, + 5516, + 5542, + 5585, + 5586, + 5587, + 5588, + 5589, + 5590, + 5591, + 5592, + 5593, + 5622, + 5650, + 5675, + 5693, + 5711, + 5732, + 5752, + 5778, + 5803, + 5821, + 5857, + 5858, + 5859, + 5860, + 5861, 5862, - 5882, - 5902, - 5932, - 5944, - 5945, - 5946, - 5947, - 5948, - 5949, - 5950, - 5951, - 5952, - 5964, - 5998, + 5863, + 5864, + 5865, + 5890, + 5908, + 5926, + 5954, + 5981, 5999, - 6000, - 6001, - 6002, - 6003, - 6004, - 6005, - 6006, - 6049, - 6050, - 6051, - 6052, - 6053, - 6054, - 6055, - 6056, - 6057 + 6017, + 6043, + 6068, + 6086, + 6104, + 6131, + 6132, + 6133, + 6146, + 6166, + 6186, + 6216, + 6228, + 6229, + 6230, + 6231, + 6232, + 6233, + 6234, + 6235, + 6236, + 6248, + 6282, + 6283, + 6284, + 6285, + 6286, + 6287, + 6288, + 6289, + 6290, + 6333, + 6334, + 6335, + 6336, + 6337, + 6338, + 6339, + 6340, + 6341 ], "types": { "ActiveConnection": { "application_name": [ - 80 + 84 ], "client_addr": [ - 80 + 84 ], "pid": [ - 40 + 41 ], "query": [ - 80 + 84 ], "query_start": [ - 4669 + 4953 ], "state": [ - 80 + 84 ], "usename": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "ActiveQuery": { "application_name": [ - 80 + 84 ], "client_addr": [ - 80 + 84 ], "duration_seconds": [ - 31 + 32 ], "pid": [ - 40 + 41 ], "query": [ - 80 + 84 ], "query_start": [ - 4669 + 4953 ], "state": [ - 80 + 84 ], "usename": [ - 80 + 84 ], "wait_event": [ - 80 + 84 ], "wait_event_type": [ - 80 + 84 ], "__typename": [ - 80 + 84 + ] + }, + "AddCustomGamePluginOutput": { + "name": [ + 84 + ], + "runtime": [ + 84 + ], + "slug": [ + 84 + ], + "version": [ + 84 + ], + "__typename": [ + 84 ] }, "ApiKeyResponse": { "key": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "Award": { "allow_multiple": [ - 5 + 6 ], "created_at": [ - 80 + 84 ], "created_by_steam_id": [ - 80 + 84 ], "description": [ - 80 + 84 ], "event_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "image_url": [ - 80 + 84 ], "league_season_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "season_id": [ - 5170 + 5454 ], "silhouette": [ - 40 + 41 ], "system_key": [ - 80 + 84 ], "tier": [ - 80 + 84 ], "tournament_id": [ - 5170 + 5454 ], "updated_at": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "AwardRecipient": { "award_id": [ - 5170 + 5454 ], "awarded_by_steam_id": [ - 80 + 84 ], "created_at": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "note": [ - 80 + 84 ], "placement": [ - 40 + 41 ], "player_steam_id": [ - 80 + 84 ], "source": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "Boolean": {}, "Boolean_comparison_exp": { "_eq": [ - 5 + 6 ], "_gt": [ - 5 + 6 ], "_gte": [ - 5 + 6 ], "_in": [ - 5 + 6 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 5 + 6 ], "_lte": [ - 5 + 6 ], "_neq": [ - 5 + 6 ], "_nin": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "ClipAudioInput": { "duck_game_audio": [ - 5 + 6 ], "fade_in_ms": [ - 40 + 41 ], "fade_out_ms": [ - 40 + 41 ], "track_url": [ - 80 + 84 ], "volume": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "ClipOutputInput": { "format": [ - 80 + 84 ], "fps": [ - 40 + 41 ], "resolution": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "ClipOverlayInput": { "end_ms": [ - 40 + 41 ], "payload": [ - 1930 + 2187 ], "start_ms": [ - 40 + 41 ], "type": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "ClipSegmentInput": { "end_tick": [ - 40 + 41 ], "pov_steam_id": [ - 80 + 84 ], "start_tick": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "ClipSpecInput": { "audio": [ - 7 + 8 ], "destination": [ - 80 + 84 ], "match_map_id": [ - 5170 + 5454 ], "output": [ - 8 + 9 ], "overlays": [ - 9 + 10 ], "segments": [ - 10 + 11 ], "title": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "ConnectionByState": { "count": [ - 40 + 41 ], "state": [ - 80 + 84 ], "wait_event_type": [ - 80 + 84 ], "waiting_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "ConnectionStats": { "active": [ - 40 + 41 ], "by_state": [ - 12 + 13 ], "idle": [ - 40 + 41 ], "idle_in_transaction": [ - 40 + 41 ], "total": [ - 40 + 41 ], "waiting": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "CpuStat": { "time": [ - 4669 + 4953 ], "total": [ - 264 + 269 ], "used": [ - 264 + 269 ], "window": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "CreateClipRenderOutput": { "job_id": [ - 5170 + 5454 ], "success": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "CreateDraftGameOutput": { "draftGameId": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "CreateScheduledMatchOutput": { "matchId": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "DatabaseStats": { "blks_hit": [ - 40 + 41 ], "blks_read": [ - 40 + 41 ], "cache_hit_ratio": [ - 31 + 32 ], "conflicts": [ - 40 + 41 ], "datname": [ - 80 + 84 ], "deadlocks": [ - 40 + 41 ], "numbackends": [ - 40 + 41 ], "tup_deleted": [ - 40 + 41 ], "tup_fetched": [ - 40 + 41 ], "tup_inserted": [ - 40 + 41 ], "tup_returned": [ - 40 + 41 ], "tup_updated": [ - 40 + 41 ], "xact_commit": [ - 40 + 41 ], "xact_rollback": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "DbStats": { "calls": [ - 40 + 41 ], "local_blks_hit": [ - 40 + 41 ], "local_blks_read": [ - 40 + 41 ], "max_exec_time": [ - 31 + 32 ], "mean_exec_time": [ - 31 + 32 ], "min_exec_time": [ - 31 + 32 ], "query": [ - 80 + 84 ], "queryid": [ - 80 + 84 ], "shared_blks_hit": [ - 40 + 41 ], "shared_blks_read": [ - 40 + 41 ], "total_exec_time": [ - 31 + 32 ], "total_rows": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "DedicatedSeverInfo": { "id": [ - 80 + 84 ], "lastPing": [ - 80 + 84 ], "map": [ - 80 + 84 ], "players": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "DeleteOrphansOutput": { "bytes_freed": [ - 31 + 32 ], "deleted": [ - 40 + 41 ], "remaining_orphans": [ - 40 + 41 ], "success": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "DiskStat": { "available": [ - 80 + 84 ], "filesystem": [ - 80 + 84 ], "mountpoint": [ - 80 + 84 ], "size": [ - 80 + 84 ], "used": [ - 80 + 84 ], "usedPercent": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "DiskStats": { "disks": [ - 22 + 23 ], "time": [ - 4669 + 4953 ], "__typename": [ - 80 + 84 ] }, "DraftGamePreviewOutput": { "accepted_count": [ - 40 + 41 ], "access": [ - 80 + 84 ], "capacity": [ - 40 + 41 ], "host_avatar_url": [ - 80 + 84 ], "host_name": [ - 80 + 84 ], "host_steam_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "mode": [ - 80 + 84 ], "players": [ - 25 + 26 ], "require_approval": [ - 5 + 6 ], "status": [ - 80 + 84 ], "type": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "DraftGamePreviewPlayer": { "avatar_url": [ - 80 + 84 ], "name": [ - 80 + 84 ], "status": [ - 80 + 84 ], "steam_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "FaceitTestOutput": { "dataApi": [ - 27 + 28 ], "downloadApi": [ - 27 + 28 ], "__typename": [ - 80 + 84 ] }, "FaceitTestResult": { "detail": [ - 80 + 84 ], "ok": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "FileContentResponse": { "content": [ - 80 + 84 ], "path": [ - 80 + 84 ], "size": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "FileItem": { "isDirectory": [ - 5 + 6 ], "modified": [ - 4669 + 4953 ], "name": [ - 80 + 84 ], "path": [ - 80 + 84 ], "size": [ - 264 + 269 ], "type": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "FileListResponse": { "currentPath": [ - 80 + 84 ], "items": [ - 29 + 30 ], "__typename": [ - 80 + 84 ] }, "Float": {}, "Float_comparison_exp": { "_eq": [ - 31 + 32 ], "_gt": [ - 31 + 32 ], "_gte": [ - 31 + 32 ], "_in": [ - 31 + 32 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 31 + 32 ], "_lte": [ - 31 + 32 ], "_neq": [ - 31 + 32 ], "_nin": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "GetTestUploadResponse": { "error": [ - 80 + 84 ], "link": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "GpuDeviceStat": { "index": [ - 40 + 41 ], "memory_mb": [ - 40 + 41 ], "memory_used_mb": [ - 40 + 41 ], "name": [ - 80 + 84 ], "power_w": [ - 40 + 41 ], "temperature_c": [ - 40 + 41 ], "utilization_percent": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "GpuStats": { "devices": [ - 34 + 35 ], "time": [ - 4669 + 4953 ], "__typename": [ - 80 + 84 ] }, "HighlightPresetAvailability": { "best_round": [ - 5 + 6 ], "has_demo": [ - 5 + 6 ], "knife": [ - 5 + 6 ], "multikills": [ - 5 + 6 ], "recap": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "HypertableInfo": { "compression_enabled": [ - 5 + 6 ], "hypertable_name": [ - 80 + 84 ], "num_chunks": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "IndexIOStat": { "idx_blks_hit": [ - 40 + 41 ], "idx_blks_read": [ - 40 + 41 ], "indexname": [ - 80 + 84 ], "schemaname": [ - 80 + 84 ], "tablename": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "IndexStat": { "idx_scan": [ - 40 + 41 ], "idx_tup_fetch": [ - 40 + 41 ], "idx_tup_read": [ - 40 + 41 ], "index_size": [ - 40 + 41 ], "indexname": [ - 80 + 84 ], "schemaname": [ - 80 + 84 ], "table_size": [ - 40 + 41 ], "tablename": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "Int": {}, "Int_comparison_exp": { "_eq": [ - 40 + 41 ], "_gt": [ - 40 + 41 ], "_gte": [ - 40 + 41 ], "_in": [ - 40 + 41 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 40 + 41 ], "_lte": [ - 40 + 41 ], "_neq": [ - 40 + 41 ], "_nin": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "KickResult": { "kicked": [ - 5 + 6 ], "message": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "LiveSpecGsi": { "map_name": [ - 80 + 84 ], "map_phase": [ - 80 + 84 ], "round_number": [ - 40 + 41 ], "round_phase": [ - 80 + 84 ], "spec_slots": [ - 44 + 45 ], "spectated_steam_id": [ - 80 + 84 ], "team_ct_name": [ - 80 + 84 ], "team_ct_score": [ - 40 + 41 ], "team_t_name": [ - 80 + 84 ], "team_t_score": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "LiveSpecSlot": { "alive": [ - 5 + 6 ], "health": [ - 40 + 41 ], "name": [ - 80 + 84 ], "slot": [ - 40 + 41 ], "steam_id": [ - 80 + 84 ], "team": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "LiveStreamSpecState": { "gsi": [ - 43 + 44 ], "__typename": [ - 80 + 84 ] }, "LockInfo": { "granted": [ - 5 + 6 ], "locktype": [ - 80 + 84 ], "mode": [ - 80 + 84 ], "pid": [ - 40 + 41 ], "query": [ - 80 + 84 ], "relation": [ - 80 + 84 ], "usename": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "MeResponse": { "avatar_url": [ - 80 + 84 ], "country": [ - 80 + 84 ], "discord_id": [ - 80 + 84 ], "language": [ - 80 + 84 ], "name": [ - 80 + 84 ], "player": [ - 4052 + 4331 ], "profile_url": [ - 80 + 84 ], "role": [ - 80 + 84 ], "steam_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "MemoryStat": { "time": [ - 4669 + 4953 ], "total": [ - 264 + 269 ], "used": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "NetworkStats": { "nics": [ - 51 + 52 ], "time": [ - 4669 + 4953 ], "__typename": [ - 80 + 84 ] }, "NewsPost": { "author_steam_id": [ - 80 + 84 ], "content_markdown": [ - 80 + 84 ], "cover_image_url": [ - 80 + 84 ], "created_at": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "published_at": [ - 80 + 84 ], "slug": [ - 80 + 84 ], "status": [ - 80 + 84 ], "teaser": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 80 + 84 ], "view_count": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "NicStat": { "name": [ - 80 + 84 ], "rx": [ - 264 + 269 ], "tx": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "NodeStats": { "cpu": [ - 14 + 15 ], "disks": [ - 23 + 24 ], "gpu": [ - 35 + 36 ], "memory": [ - 48 + 49 ], "network": [ - 49 + 50 ], "node": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "OrphanObject": { "key": [ - 80 + 84 ], "size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "OrphanScanResultOutput": { "bucket": [ - 80 + 84 ], "clip_bytes": [ - 31 + 32 ], "clip_objects": [ - 40 + 41 ], "demo_bytes": [ - 31 + 32 ], "demo_objects": [ - 40 + 41 ], "found": [ - 5 + 6 ], "orphan_bytes": [ - 31 + 32 ], "orphan_objects": [ - 40 + 41 ], "orphans": [ - 53 + 54 ], "other_bytes": [ - 31 + 32 ], "other_objects": [ - 40 + 41 ], "scanned_at": [ - 80 + 84 ], "scanning": [ - 5 + 6 ], "total_bytes": [ - 31 + 32 ], "total_objects": [ - 40 + 41 ], "tracked_bytes": [ - 31 + 32 ], "tracked_objects": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "PendingMatchImportActionOutput": { "error": [ - 80 + 84 ], "success": [ - 5 + 6 ], "__typename": [ - 80 + 84 + ] + }, + "PluginReadmeOutput": { + "content": [ + 84 + ], + "format": [ + 84 + ], + "repo": [ + 84 + ], + "url": [ + 84 + ], + "__typename": [ + 84 ] }, "PodStats": { "cpu": [ - 14 + 15 ], "memory": [ - 48 + 49 ], "name": [ - 80 + 84 ], "node": [ - 80 + 84 ], "__typename": [ - 80 + 84 + ] + }, + "PreviewGameModeOutput": { + "cfg": [ + 84 + ], + "enabledPlugins": [ + 84 + ], + "extraGameParams": [ + 84 + ], + "__typename": [ + 84 ] }, "PreviewTournamentMatchResetOutput": { "impacts": [ - 103 + 108 ], "__typename": [ - 80 + 84 ] }, "QueryDetail": { "explain_plan": [ - 80 + 84 ], "query": [ - 80 + 84 ], "queryid": [ - 80 + 84 ], "stats": [ - 59 + 62 ], "__typename": [ - 80 + 84 ] }, "QueryStat": { "cache_hit_ratio": [ - 31 + 32 ], "calls": [ - 40 + 41 ], "local_blks_hit": [ - 40 + 41 ], "local_blks_read": [ - 40 + 41 ], "max_exec_time": [ - 31 + 32 ], "mean_exec_time": [ - 31 + 32 ], "min_exec_time": [ - 31 + 32 ], "query": [ - 80 + 84 ], "queryid": [ - 80 + 84 ], "shared_blks_hit": [ - 40 + 41 ], "shared_blks_read": [ - 40 + 41 ], "stddev_exec_time": [ - 31 + 32 ], "temp_blks_written": [ - 40 + 41 ], "total_exec_time": [ - 31 + 32 ], "total_rows": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "RecomputeEloStartedOutput": { "running": [ - 5 + 6 ], "success": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "RecomputeEloStatusOutput": { "canceled": [ - 5 + 6 ], "completed": [ - 40 + 41 ], "current_match_id": [ - 80 + 84 ], "failed": [ - 40 + 41 ], "finished_at": [ - 80 + 84 ], "running": [ - 5 + 6 ], "started_at": [ - 80 + 84 ], "total": [ - 40 + 41 ], "__typename": [ - 80 + 84 + ] + }, + "ReconcileNodePluginsOutput": { + "detected": [ + 41 + ], + "__typename": [ + 84 ] }, "ReindexStartedOutput": { "running": [ - 5 + 6 ], "success": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "ReindexStatusOutput": { "canceled": [ - 5 + 6 ], "completed": [ - 40 + 41 ], "current_steam_id": [ - 80 + 84 ], "failed": [ - 40 + 41 ], "finished_at": [ - 80 + 84 ], "running": [ - 5 + 6 ], "started_at": [ - 80 + 84 ], "total": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "ReparseAllStartedOutput": { "running": [ - 5 + 6 ], "success": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "ReparseAllStatusOutput": { "canceled": [ - 5 + 6 ], "completed": [ - 40 + 41 ], "current_demo_id": [ - 80 + 84 ], "failed": [ - 40 + 41 ], "finished_at": [ - 80 + 84 ], "running": [ - 5 + 6 ], "started_at": [ - 80 + 84 ], "total": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "SanctionResult": { "enforced": [ - 5 + 6 ], "id": [ - 80 + 84 ], "message": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "ScanStartedOutput": { "scanning": [ - 5 + 6 ], "success": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "ScheduledLineupInput": { "steam_ids": [ - 80 + 84 ], "team_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "SeasonBackfillStatusOutput": { "canceled": [ - 5 + 6 ], "completed": [ - 40 + 41 ], "current_match_id": [ - 80 + 84 ], "failed": [ - 40 + 41 ], "finished_at": [ - 80 + 84 ], "running": [ - 5 + 6 ], "season_id": [ - 80 + 84 ], "started_at": [ - 80 + 84 ], "total": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "ServerPlayer": { "name": [ - 80 + 84 ], "steam_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "SetupGameServeOutput": { "gameServerId": [ - 80 + 84 ], "link": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "SteamMatchHistoryLinkOutput": { "error": [ - 80 + 84 ], "success": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "SteamMatchHistoryPollOutput": { "collected": [ - 40 + 41 ], "error": [ - 80 + 84 ], "success": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "SteamPresenceAdminStatusOutput": { "bots": [ - 75 + 79 ], "enabled": [ - 5 + 6 ], "pool": [ - 77 + 81 ], "__typename": [ - 80 + 84 ] }, "SteamPresenceBot": { "assigned": [ - 40 + 41 ], "capacity": [ - 40 + 41 ], "guardLastWrong": [ - 5 + 6 ], "guardType": [ - 80 + 84 ], "id": [ - 80 + 84 ], "needs2fa": [ - 5 + 6 ], "online": [ - 5 + 6 ], "steamId": [ - 80 + 84 ], "steamLevel": [ - 40 + 41 ], "username": [ - 80 + 84 ], "watching": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "SteamPresenceBotAssignment": { "addUrl": [ - 80 + 84 ], "enabled": [ - 5 + 6 ], "status": [ - 80 + 84 ], "steamId": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "SteamPresencePool": { "bots": [ - 40 + 41 ], "capacity": [ - 40 + 41 ], "online": [ - 40 + 41 ], "pending": [ - 40 + 41 ], "watching": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "StorageStats": { "summary": [ - 79 + 83 ], "tables": [ - 85 + 90 ], "__typename": [ - 80 + 84 ] }, "StorageSummary": { "estimated_reclaimable_space": [ - 31 + 32 ], "total_database_size": [ - 31 + 32 ], "total_indexes_size": [ - 31 + 32 ], "total_table_size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "String": {}, "String_array_comparison_exp": { "_contained_in": [ - 80 + 84 ], "_contains": [ - 80 + 84 ], "_eq": [ - 80 + 84 ], "_gt": [ - 80 + 84 ], "_gte": [ - 80 + 84 ], "_in": [ - 80 + 84 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 80 + 84 ], "_lte": [ - 80 + 84 ], "_neq": [ - 80 + 84 ], "_nin": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "String_comparison_exp": { "_eq": [ - 80 + 84 ], "_gt": [ - 80 + 84 ], "_gte": [ - 80 + 84 ], "_ilike": [ - 80 + 84 ], "_in": [ - 80 + 84 ], "_iregex": [ - 80 + 84 ], "_is_null": [ - 5 + 6 ], "_like": [ - 80 + 84 ], "_lt": [ - 80 + 84 ], "_lte": [ - 80 + 84 ], "_neq": [ - 80 + 84 ], "_nilike": [ - 80 + 84 ], "_nin": [ - 80 + 84 ], "_niregex": [ - 80 + 84 ], "_nlike": [ - 80 + 84 ], "_nregex": [ - 80 + 84 ], "_nsimilar": [ - 80 + 84 ], "_regex": [ - 80 + 84 ], "_similar": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "SuccessOutput": { "success": [ - 5 + 6 ], "__typename": [ - 80 + 84 + ] + }, + "SyncPluginRegistryOutput": { + "plugins": [ + 41 + ], + "versions": [ + 41 + ], + "__typename": [ + 84 ] }, "TableIOStat": { "cache_hit_ratio": [ - 31 + 32 ], "heap_blks_hit": [ - 40 + 41 ], "heap_blks_read": [ - 40 + 41 ], "idx_blks_hit": [ - 40 + 41 ], "idx_blks_read": [ - 40 + 41 ], "relname": [ - 80 + 84 ], "schemaname": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "TableSizeInfo": { "estimated_dead_tuple_bytes": [ - 31 + 32 ], "indexes_size": [ - 31 + 32 ], "n_dead_tup": [ - 40 + 41 ], "n_live_tup": [ - 40 + 41 ], "schemaname": [ - 80 + 84 ], "table_size": [ - 31 + 32 ], "tablename": [ - 80 + 84 ], "total_size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "TableStat": { "idx_scan": [ - 40 + 41 ], "idx_tup_fetch": [ - 40 + 41 ], "last_analyze": [ - 4669 + 4953 ], "last_autoanalyze": [ - 4669 + 4953 ], "last_autovacuum": [ - 4669 + 4953 ], "last_vacuum": [ - 4669 + 4953 ], "n_dead_tup": [ - 40 + 41 ], "n_live_tup": [ - 40 + 41 ], "n_tup_del": [ - 40 + 41 ], "n_tup_hot_upd": [ - 40 + 41 ], "n_tup_ins": [ - 40 + 41 ], "n_tup_upd": [ - 40 + 41 ], "relname": [ - 80 + 84 ], "schemaname": [ - 80 + 84 ], "seq_scan": [ - 40 + 41 ], "seq_tup_read": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "TeamCalendarOutput": { "url": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "TelemetryActivityPoint": { "day": [ - 80 + 84 ], "installs": [ - 40 + 41 ], "matches": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "TelemetryCountryCount": { "country": [ - 80 + 84 ], "installs": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "TelemetryFeatureAdoption": { "counted": [ - 40 + 41 ], "enabled": [ - 40 + 41 ], "flagged": [ - 40 + 41 ], "installsUsing": [ - 40 + 41 ], "key": [ - 80 + 84 ], "kind": [ - 80 + 84 ], "reporting": [ - 40 + 41 ], "total": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "TelemetryFleetTotals": { "appearancesReported": [ - 40 + 41 ], "competitionReported": [ - 40 + 41 ], "dedicatedServers": [ - 40 + 41 ], "eventTeams": [ - 40 + 41 ], "events": [ - 40 + 41 + ], + "gameModes": [ + 41 + ], + "gameModesEnabled": [ + 41 + ], + "gameModesUnranked": [ + 41 ], "gameServerNodes": [ - 40 + 41 ], "gameServerNodesEnabled": [ - 40 + 41 ], "gameServerNodesOnline": [ - 40 + 41 ], "gpuNodes": [ - 40 + 41 ], "leagueRegistrations": [ - 40 + 41 ], "leagueSeasons": [ - 40 + 41 ], "leagueSeasonsFinished": [ - 40 + 41 ], "leagueTeams": [ - 40 + 41 ], "mapsPlayed": [ - 40 + 41 ], "matches": [ - 40 + 41 ], "matchesAbandoned": [ - 40 + 41 ], "matchesCreated": [ - 40 + 41 ], "matchesFinished": [ - 40 + 41 ], "matchesImported": [ - 40 + 41 ], "matchesImportedMonth": [ - 40 + 41 ], "matchesImportedYear": [ - 40 + 41 ], "matchesLeague": [ - 40 + 41 ], "matchesLive": [ - 40 + 41 ], "matchesMonth": [ - 40 + 41 ], "matchesScrim": [ - 40 + 41 ], "matchesTournament": [ - 40 + 41 ], "matchesWeek": [ - 40 + 41 ], "matchesYear": [ - 40 + 41 ], "outcomesReported": [ - 40 + 41 ], "panels": [ - 40 + 41 ], "playerAppearances": [ - 40 + 41 ], "playersActive30d": [ - 40 + 41 ], "playersActive7d": [ - 40 + 41 ], "playersKnown": [ - 40 + 41 ], "playersPlayed": [ - 40 + 41 ], "playersRegistered": [ - 40 + 41 + ], + "pluginsBySlug": [ + 2187 + ], + "pluginsManual": [ + 41 + ], + "pluginsReported": [ + 41 + ], + "pluginsRequested": [ + 41 ], "publicServers": [ - 40 + 41 ], "regions": [ - 40 + 41 ], "scrimRequests": [ - 40 + 41 ], "servers": [ - 40 + 41 ], "serversEnabled": [ - 40 + 41 ], "teams": [ - 40 + 41 ], "tournamentTeams": [ - 40 + 41 ], "tournaments": [ - 40 + 41 ], "tournamentsFinished": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "TelemetryGrowthPoint": { "installs": [ - 40 + 41 ], "month": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "TelemetryInstallCounts": { "active24h": [ - 40 + 41 ], "active30d": [ - 40 + 41 ], "active7d": [ - 40 + 41 ], "new30d": [ - 40 + 41 ], "retained180d": [ - 40 + 41 ], "total": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "TelemetryMatchSourceCount": { "matches": [ - 40 + 41 ], "source": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "TelemetryMatchTypeCount": { "matches": [ - 40 + 41 ], "type": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "TelemetryRuntimeCount": { "installs": [ - 40 + 41 ], "runtime": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "TelemetryStats": { "activity": [ - 88 + 93 ], "countries": [ - 89 + 94 ], "features": [ - 90 + 95 ], "growth": [ - 92 + 97 ], "installs": [ - 93 + 98 ], "matchSources": [ - 94 + 99 ], "matchTypes": [ - 95 + 100 ], "online": [ - 40 + 41 ], "runtimes": [ - 96 + 101 ], "totals": [ - 91 + 96 ], "versions": [ - 98 + 103 ], "__typename": [ - 80 + 84 ] }, "TelemetryVersionCount": { "installs": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "since": [ - 80 + 84 ], "version": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "TestUploadResponse": { "error": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "TimescaleJob": { "hypertable_name": [ - 80 + 84 ], "job_id": [ - 40 + 41 ], "job_type": [ - 80 + 84 ], "last_run_status": [ - 80 + 84 ], "next_start": [ - 4669 + 4953 ], "__typename": [ - 80 + 84 ] }, "TimescaleStats": { "chunks_count": [ - 40 + 41 ], "hypertables": [ - 37 + 38 ], "jobs": [ - 100 + 105 ], "__typename": [ - 80 + 84 ] }, "TournamentAward": { "award_id": [ - 5170 + 5454 ], "custom_name": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "image_url": [ - 80 + 84 ], "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "TournamentMatchResetImpact": { "bracket_id": [ - 5170 + 5454 ], "depth": [ - 40 + 41 ], "is_source": [ - 5 + 6 ], "match_id": [ - 5170 + 5454 ], "match_number": [ - 40 + 41 ], "match_status": [ - 80 + 84 ], "path": [ - 80 + 84 ], "round": [ - 40 + 41 ], "stage_type": [ - 80 + 84 ], "will_delete_match": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "WatchDemoOutput": { "match_map_id": [ - 80 + 84 ], "session_id": [ - 80 + 84 ], "stream_url": [ - 80 + 84 ], "success": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "WebPushPlatformCount": { "devices": [ - 40 + 41 ], "platform": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "WebPushStatusOutput": { "active_7d": [ - 40 + 41 ], "configured": [ - 5 + 6 ], "last_delivered_at": [ - 4670 + 4954 ], "managed_by_environment": [ - 5 + 6 ], "never_delivered": [ - 40 + 41 ], "new_7d": [ - 40 + 41 ], "platforms": [ - 105 + 110 ], "players": [ - 40 + 41 ], "subscriptions": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "_map_pool": { "map_id": [ - 5170 + 5454 ], "map_pool_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "_map_pool_aggregate": { "aggregate": [ - 109 + 114 ], "nodes": [ - 107 + 112 ], "__typename": [ - 80 + 84 ] }, "_map_pool_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 119, + 124, "[_map_pool_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 113 + 118 ], "min": [ - 114 + 119 ], "__typename": [ - 80 + 84 ] }, "_map_pool_bool_exp": { "_and": [ - 110 + 115 ], "_not": [ - 110 + 115 ], "_or": [ - 110 + 115 ], "map_id": [ - 5172 + 5456 ], "map_pool_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 5170 + 5454 ], "map_pool_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "_map_pool_max_fields": { "map_id": [ - 5170 + 5454 ], "map_pool_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "_map_pool_min_fields": { "map_id": [ - 5170 + 5454 ], "map_pool_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "_map_pool_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 107 + 112 ], "__typename": [ - 80 + 84 ] }, "_map_pool_on_conflict": { "constraint": [ - 111 + 116 ], "update_columns": [ - 123 + 128 ], "where": [ - 110 + 115 ], "__typename": [ - 80 + 84 ] }, "_map_pool_order_by": { "map_id": [ - 3094 + 3373 ], "map_pool_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "_map_pool_pk_columns_input": { "map_id": [ - 5170 + 5454 ], "map_pool_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 5170 + 5454 ], "map_pool_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "_map_pool_stream_cursor_input": { "initial_value": [ - 122 + 127 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 5170 + 5454 ], "map_pool_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "_map_pool_update_column": {}, "_map_pool_updates": { "_set": [ - 120 + 125 ], "where": [ - 110 + 115 ], "__typename": [ - 80 + 84 ] }, "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_aggregate": { "aggregate": [ - 130 + 135 ], "nodes": [ - 126 + 131 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_aggregate_bool_exp": { "count": [ - 129 + 134 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_aggregate_bool_exp_count": { "arguments": [ - 147 + 152 ], "distinct": [ - 5 + 6 ], "filter": [ - 135 + 140 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_aggregate_fields": { "avg": [ - 133 + 138 ], "count": [ - 40, + 41, { "columns": [ - 147, + 152, "[abandoned_matches_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 139 + 144 ], "min": [ - 141 + 146 ], "stddev": [ - 149 + 154 ], "stddev_pop": [ - 151 + 156 ], "stddev_samp": [ - 153 + 158 ], "sum": [ - 157 + 162 ], "var_pop": [ - 161 + 166 ], "var_samp": [ - 163 + 168 ], "variance": [ - 165 + 170 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_aggregate_order_by": { "avg": [ - 134 + 139 ], "count": [ - 3094 + 3373 ], "max": [ - 140 + 145 ], "min": [ - 142 + 147 ], "stddev": [ - 150 + 155 ], "stddev_pop": [ - 152 + 157 ], "stddev_samp": [ - 154 + 159 ], "sum": [ - 158 + 163 ], "var_pop": [ - 162 + 167 ], "var_samp": [ - 164 + 169 ], "variance": [ - 166 + 171 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_arr_rel_insert_input": { "data": [ - 138 + 143 ], "on_conflict": [ - 144 + 149 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_avg_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_bool_exp": { "_and": [ - 135 + 140 ], "_not": [ - 135 + 140 ], "_or": [ - 135 + 140 ], "abandoned_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_constraint": {}, "abandoned_matches_inc_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 126 + 131 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_on_conflict": { "constraint": [ - 136 + 141 ], "update_columns": [ - 159 + 164 ], "where": [ - 135 + 140 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_order_by": { "abandoned_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_stream_cursor_input": { "initial_value": [ - 156 + 161 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_sum_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_update_column": {}, "abandoned_matches_updates": { "_inc": [ - 137 + 142 ], "_set": [ - 148 + 153 ], "where": [ - 135 + 140 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "abandoned_matches_variance_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "api_keys": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "last_used_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "api_keys_aggregate": { "aggregate": [ - 169 + 174 ], "nodes": [ - 167 + 172 ], "__typename": [ - 80 + 84 ] }, "api_keys_aggregate_fields": { "avg": [ - 170 + 175 ], "count": [ - 40, + 41, { "columns": [ - 181, + 186, "[api_keys_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 175 + 180 ], "min": [ - 176 + 181 ], "stddev": [ - 183 + 188 ], "stddev_pop": [ - 184 + 189 ], "stddev_samp": [ - 185 + 190 ], "sum": [ - 188 + 193 ], "var_pop": [ - 191 + 196 ], "var_samp": [ - 192 + 197 ], "variance": [ - 193 + 198 ], "__typename": [ - 80 + 84 ] }, "api_keys_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "api_keys_bool_exp": { "_and": [ - 171 + 176 ], "_not": [ - 171 + 176 ], "_or": [ - 171 + 176 ], "created_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "label": [ - 82 + 86 ], "last_used_at": [ - 4671 + 4955 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "api_keys_constraint": {}, "api_keys_inc_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "api_keys_insert_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "last_used_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "api_keys_max_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "last_used_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "api_keys_min_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "last_used_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "api_keys_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 167 + 172 ], "__typename": [ - 80 + 84 ] }, "api_keys_on_conflict": { "constraint": [ - 172 + 177 ], "update_columns": [ - 189 + 194 ], "where": [ - 171 + 176 ], "__typename": [ - 80 + 84 ] }, "api_keys_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "last_used_at": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "api_keys_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "last_used_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "api_keys_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "api_keys_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "api_keys_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "api_keys_stream_cursor_input": { "initial_value": [ - 187 + 192 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "last_used_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "api_keys_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "api_keys_update_column": {}, "api_keys_updates": { "_inc": [ - 173 + 178 ], "_set": [ - 182 + 187 ], "where": [ - 171 + 176 ], "__typename": [ - 80 + 84 ] }, "api_keys_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "api_keys_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "api_keys_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "approve_league_season_movements_args": { "_league_season_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "award_recipients": { "award": [ - 236 + 241 ], "award_id": [ - 5170 + 5454 ], "awarded_by": [ - 4052 + 4331 ], "awarded_by_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "event": [ - 1749 + 1814 ], "event_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "league_season": [ - 2133 + 2390 ], "league_season_id": [ - 5170 + 5454 ], "note": [ - 80 + 84 ], "placement": [ - 40 + 41 ], "placement_tier": [ - 80 + 84 ], "player": [ - 4052 + 4331 ], "player_steam_id": [ - 264 + 269 ], "season": [ - 4138 + 4417 ], "season_id": [ - 5170 + 5454 ], "source": [ - 602 + 607 ], "team": [ - 4621 + 4905 ], "team_id": [ - 5170 + 5454 ], "tournament": [ - 5106 + 5390 ], "tournament_award": [ - 4672 + 4956 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team": [ - 5064 + 5348 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "award_recipients_aggregate": { "aggregate": [ - 199 + 204 ], "nodes": [ - 195 + 200 ], "__typename": [ - 80 + 84 ] }, "award_recipients_aggregate_bool_exp": { "count": [ - 198 + 203 ], "__typename": [ - 80 + 84 ] }, "award_recipients_aggregate_bool_exp_count": { "arguments": [ - 216 + 221 ], "distinct": [ - 5 + 6 ], "filter": [ - 204 + 209 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "award_recipients_aggregate_fields": { "avg": [ - 202 + 207 ], "count": [ - 40, + 41, { "columns": [ - 216, + 221, "[award_recipients_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 208 + 213 ], "min": [ - 210 + 215 ], "stddev": [ - 218 + 223 ], "stddev_pop": [ - 220 + 225 ], "stddev_samp": [ - 222 + 227 ], "sum": [ - 226 + 231 ], "var_pop": [ - 230 + 235 ], "var_samp": [ - 232 + 237 ], "variance": [ - 234 + 239 ], "__typename": [ - 80 + 84 ] }, "award_recipients_aggregate_order_by": { "avg": [ - 203 + 208 ], "count": [ - 3094 + 3373 ], "max": [ - 209 + 214 ], "min": [ - 211 + 216 ], "stddev": [ - 219 + 224 ], "stddev_pop": [ - 221 + 226 ], "stddev_samp": [ - 223 + 228 ], "sum": [ - 227 + 232 ], "var_pop": [ - 231 + 236 ], "var_samp": [ - 233 + 238 ], "variance": [ - 235 + 240 ], "__typename": [ - 80 + 84 ] }, "award_recipients_arr_rel_insert_input": { "data": [ - 207 + 212 ], "on_conflict": [ - 213 + 218 ], "__typename": [ - 80 + 84 ] }, "award_recipients_avg_fields": { "awarded_by_steam_id": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "award_recipients_avg_order_by": { "awarded_by_steam_id": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "award_recipients_bool_exp": { "_and": [ - 204 + 209 ], "_not": [ - 204 + 209 ], "_or": [ - 204 + 209 ], "award": [ - 240 + 245 ], "award_id": [ - 5172 + 5456 ], "awarded_by": [ - 4056 + 4335 ], "awarded_by_steam_id": [ - 266 + 271 ], "created_at": [ - 4671 + 4955 ], "event": [ - 1753 + 1818 ], "event_id": [ - 5172 + 5456 ], "id": [ - 5172 + 5456 ], "league_season": [ - 2138 + 2395 ], "league_season_id": [ - 5172 + 5456 ], "note": [ - 82 + 86 ], "placement": [ - 41 + 42 ], "placement_tier": [ - 82 + 86 ], "player": [ - 4056 + 4335 ], "player_steam_id": [ - 266 + 271 ], "season": [ - 4142 + 4421 ], "season_id": [ - 5172 + 5456 ], "source": [ - 603 + 608 ], "team": [ - 4632 + 4916 ], "team_id": [ - 5172 + 5456 ], "tournament": [ - 5127 + 5411 ], "tournament_award": [ - 4681 + 4965 ], "tournament_id": [ - 5172 + 5456 ], "tournament_team": [ - 5073 + 5357 ], "tournament_team_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "award_recipients_constraint": {}, "award_recipients_inc_input": { "awarded_by_steam_id": [ - 264 + 269 ], "placement": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "award_recipients_insert_input": { "award": [ - 247 + 252 ], "award_id": [ - 5170 + 5454 ], "awarded_by": [ - 4063 + 4342 ], "awarded_by_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "event": [ - 1760 + 1825 ], "event_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "league_season": [ - 2148 + 2405 ], "league_season_id": [ - 5170 + 5454 ], "note": [ - 80 + 84 ], "placement": [ - 40 + 41 ], "player": [ - 4063 + 4342 ], "player_steam_id": [ - 264 + 269 ], "season": [ - 4149 + 4428 ], "season_id": [ - 5170 + 5454 ], "source": [ - 602 + 607 ], "team": [ - 4641 + 4925 ], "team_id": [ - 5170 + 5454 ], "tournament": [ - 5136 + 5420 ], "tournament_award": [ - 4690 + 4974 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team": [ - 5082 + 5366 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "award_recipients_max_fields": { "award_id": [ - 5170 + 5454 ], "awarded_by_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "note": [ - 80 + 84 ], "placement": [ - 40 + 41 ], "placement_tier": [ - 80 + 84 ], "player_steam_id": [ - 264 + 269 ], "season_id": [ - 5170 + 5454 ], "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "award_recipients_max_order_by": { "award_id": [ - 3094 + 3373 ], "awarded_by_steam_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "event_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "note": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "placement_tier": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "season_id": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "award_recipients_min_fields": { "award_id": [ - 5170 + 5454 ], "awarded_by_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "note": [ - 80 + 84 ], "placement": [ - 40 + 41 ], "placement_tier": [ - 80 + 84 ], "player_steam_id": [ - 264 + 269 ], "season_id": [ - 5170 + 5454 ], "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "award_recipients_min_order_by": { "award_id": [ - 3094 + 3373 ], "awarded_by_steam_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "event_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "note": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "placement_tier": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "season_id": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "award_recipients_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 195 + 200 ], "__typename": [ - 80 + 84 ] }, "award_recipients_on_conflict": { "constraint": [ - 205 + 210 ], "update_columns": [ - 228 + 233 ], "where": [ - 204 + 209 ], "__typename": [ - 80 + 84 ] }, "award_recipients_order_by": { "award": [ - 249 + 254 ], "award_id": [ - 3094 + 3373 ], "awarded_by": [ - 4065 + 4344 ], "awarded_by_steam_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "event": [ - 1762 + 1827 ], "event_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_season": [ - 2150 + 2407 ], "league_season_id": [ - 3094 + 3373 ], "note": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "placement_tier": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "player_steam_id": [ - 3094 + 3373 ], "season": [ - 4151 + 4430 ], "season_id": [ - 3094 + 3373 ], "source": [ - 3094 + 3373 ], "team": [ - 4643 + 4927 ], "team_id": [ - 3094 + 3373 ], "tournament": [ - 5138 + 5422 ], "tournament_award": [ - 4692 + 4976 ], "tournament_id": [ - 3094 + 3373 ], "tournament_team": [ - 5084 + 5368 ], "tournament_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "award_recipients_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "award_recipients_select_column": {}, "award_recipients_set_input": { "award_id": [ - 5170 + 5454 ], "awarded_by_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "note": [ - 80 + 84 ], "placement": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "season_id": [ - 5170 + 5454 ], "source": [ - 602 + 607 ], "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "award_recipients_stddev_fields": { "awarded_by_steam_id": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "award_recipients_stddev_order_by": { "awarded_by_steam_id": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "award_recipients_stddev_pop_fields": { "awarded_by_steam_id": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "award_recipients_stddev_pop_order_by": { "awarded_by_steam_id": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "award_recipients_stddev_samp_fields": { "awarded_by_steam_id": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "award_recipients_stddev_samp_order_by": { "awarded_by_steam_id": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "award_recipients_stream_cursor_input": { "initial_value": [ - 225 + 230 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "award_recipients_stream_cursor_value_input": { "award_id": [ - 5170 + 5454 ], "awarded_by_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "note": [ - 80 + 84 ], "placement": [ - 40 + 41 ], "placement_tier": [ - 80 + 84 ], "player_steam_id": [ - 264 + 269 ], "season_id": [ - 5170 + 5454 ], "source": [ - 602 + 607 ], "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "award_recipients_sum_fields": { "awarded_by_steam_id": [ - 264 + 269 ], "placement": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "award_recipients_sum_order_by": { "awarded_by_steam_id": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "award_recipients_update_column": {}, "award_recipients_updates": { "_inc": [ - 206 + 211 ], "_set": [ - 217 + 222 ], "where": [ - 204 + 209 ], "__typename": [ - 80 + 84 ] }, "award_recipients_var_pop_fields": { "awarded_by_steam_id": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "award_recipients_var_pop_order_by": { "awarded_by_steam_id": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "award_recipients_var_samp_fields": { "awarded_by_steam_id": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "award_recipients_var_samp_order_by": { "awarded_by_steam_id": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "award_recipients_variance_fields": { "awarded_by_steam_id": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "award_recipients_variance_order_by": { "awarded_by_steam_id": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "awards": { "allow_multiple": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "created_by": [ - 4052 + 4331 ], "created_by_steam_id": [ - 264 + 269 ], "description": [ - 80 + 84 ], "event": [ - 1749 + 1814 ], "event_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "image_url": [ - 80 + 84 ], "league_season": [ - 2133 + 2390 ], "league_season_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "recipients": [ - 195, + 200, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "recipients_aggregate": [ - 196, + 201, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "season": [ - 4138 + 4417 ], "season_id": [ - 5170 + 5454 ], "silhouette": [ - 40 + 41 ], "system_key": [ - 80 + 84 ], "tier": [ - 622 + 627 ], "tournament": [ - 5106 + 5390 ], "tournament_configs": [ - 4672, + 4956, { "distinct_on": [ - 4694, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4692, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4965 ] } ], "tournament_configs_aggregate": [ - 4673, + 4957, { "distinct_on": [ - 4694, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4692, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4965 ] } ], "tournament_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "awards_aggregate": { "aggregate": [ - 238 + 243 ], "nodes": [ - 236 + 241 ], "__typename": [ - 80 + 84 ] }, "awards_aggregate_fields": { "avg": [ - 239 + 244 ], "count": [ - 40, + 41, { "columns": [ - 251, + 256, "[awards_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 244 + 249 ], "min": [ - 245 + 250 ], "stddev": [ - 253 + 258 ], "stddev_pop": [ - 254 + 259 ], "stddev_samp": [ - 255 + 260 ], "sum": [ - 258 + 263 ], "var_pop": [ - 261 + 266 ], "var_samp": [ - 262 + 267 ], "variance": [ - 263 + 268 ], "__typename": [ - 80 + 84 ] }, "awards_avg_fields": { "created_by_steam_id": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "awards_bool_exp": { "_and": [ - 240 + 245 ], "_not": [ - 240 + 245 ], "_or": [ - 240 + 245 ], "allow_multiple": [ - 6 + 7 ], "created_at": [ - 4671 + 4955 ], "created_by": [ - 4056 + 4335 ], "created_by_steam_id": [ - 266 + 271 ], "description": [ - 82 + 86 ], "event": [ - 1753 + 1818 ], "event_id": [ - 5172 + 5456 ], "id": [ - 5172 + 5456 ], "image_url": [ - 82 + 86 ], "league_season": [ - 2138 + 2395 ], "league_season_id": [ - 5172 + 5456 ], "name": [ - 82 + 86 ], "recipients": [ - 204 + 209 ], "recipients_aggregate": [ - 197 + 202 ], "season": [ - 4142 + 4421 ], "season_id": [ - 5172 + 5456 ], "silhouette": [ - 41 + 42 ], "system_key": [ - 82 + 86 ], "tier": [ - 623 + 628 ], "tournament": [ - 5127 + 5411 ], "tournament_configs": [ - 4681 + 4965 ], "tournament_configs_aggregate": [ - 4674 + 4958 ], "tournament_id": [ - 5172 + 5456 ], "updated_at": [ - 4671 + 4955 ], "__typename": [ - 80 + 84 ] }, "awards_constraint": {}, "awards_inc_input": { "created_by_steam_id": [ - 264 + 269 ], "silhouette": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "awards_insert_input": { "allow_multiple": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "created_by": [ - 4063 + 4342 ], "created_by_steam_id": [ - 264 + 269 ], "description": [ - 80 + 84 ], "event": [ - 1760 + 1825 ], "event_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "image_url": [ - 80 + 84 ], "league_season": [ - 2148 + 2405 ], "league_season_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "recipients": [ - 201 + 206 ], "season": [ - 4149 + 4428 ], "season_id": [ - 5170 + 5454 ], "silhouette": [ - 40 + 41 ], "system_key": [ - 80 + 84 ], "tier": [ - 622 + 627 ], "tournament": [ - 5136 + 5420 ], "tournament_configs": [ - 4678 + 4962 ], "tournament_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "awards_max_fields": { "created_at": [ - 4670 + 4954 ], "created_by_steam_id": [ - 264 + 269 ], "description": [ - 80 + 84 ], "event_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "image_url": [ - 80 + 84 ], "league_season_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "season_id": [ - 5170 + 5454 ], "silhouette": [ - 40 + 41 ], "system_key": [ - 80 + 84 ], "tournament_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "awards_min_fields": { "created_at": [ - 4670 + 4954 ], "created_by_steam_id": [ - 264 + 269 ], "description": [ - 80 + 84 ], "event_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "image_url": [ - 80 + 84 ], "league_season_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "season_id": [ - 5170 + 5454 ], "silhouette": [ - 40 + 41 ], "system_key": [ - 80 + 84 ], "tournament_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "awards_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 236 + 241 ], "__typename": [ - 80 + 84 ] }, "awards_obj_rel_insert_input": { "data": [ - 243 + 248 ], "on_conflict": [ - 248 + 253 ], "__typename": [ - 80 + 84 ] }, "awards_on_conflict": { "constraint": [ - 241 + 246 ], "update_columns": [ - 259 + 264 ], "where": [ - 240 + 245 ], "__typename": [ - 80 + 84 ] }, "awards_order_by": { "allow_multiple": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "created_by": [ - 4065 + 4344 ], "created_by_steam_id": [ - 3094 + 3373 ], "description": [ - 3094 + 3373 ], "event": [ - 1762 + 1827 ], "event_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "image_url": [ - 3094 + 3373 ], "league_season": [ - 2150 + 2407 ], "league_season_id": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "recipients_aggregate": [ - 200 + 205 ], "season": [ - 4151 + 4430 ], "season_id": [ - 3094 + 3373 ], "silhouette": [ - 3094 + 3373 ], "system_key": [ - 3094 + 3373 ], "tier": [ - 3094 + 3373 ], "tournament": [ - 5138 + 5422 ], "tournament_configs_aggregate": [ - 4677 + 4961 ], "tournament_id": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "awards_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "awards_select_column": {}, "awards_set_input": { "allow_multiple": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "created_by_steam_id": [ - 264 + 269 ], "description": [ - 80 + 84 ], "event_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "image_url": [ - 80 + 84 ], "league_season_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "season_id": [ - 5170 + 5454 ], "silhouette": [ - 40 + 41 ], "system_key": [ - 80 + 84 ], "tier": [ - 622 + 627 ], "tournament_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "awards_stddev_fields": { "created_by_steam_id": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "awards_stddev_pop_fields": { "created_by_steam_id": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "awards_stddev_samp_fields": { "created_by_steam_id": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "awards_stream_cursor_input": { "initial_value": [ - 257 + 262 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "awards_stream_cursor_value_input": { "allow_multiple": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "created_by_steam_id": [ - 264 + 269 ], "description": [ - 80 + 84 ], "event_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "image_url": [ - 80 + 84 ], "league_season_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "season_id": [ - 5170 + 5454 ], "silhouette": [ - 40 + 41 ], "system_key": [ - 80 + 84 ], "tier": [ - 622 + 627 ], "tournament_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "awards_sum_fields": { "created_by_steam_id": [ - 264 + 269 ], "silhouette": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "awards_update_column": {}, "awards_updates": { "_inc": [ - 242 + 247 ], "_set": [ - 252 + 257 ], "where": [ - 240 + 245 ], "__typename": [ - 80 + 84 ] }, "awards_var_pop_fields": { "created_by_steam_id": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "awards_var_samp_fields": { "created_by_steam_id": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "awards_variance_fields": { "created_by_steam_id": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "bigint": {}, "bigint_array_comparison_exp": { "_contained_in": [ - 264 + 269 ], "_contains": [ - 264 + 269 ], "_eq": [ - 264 + 269 ], "_gt": [ - 264 + 269 ], "_gte": [ - 264 + 269 ], "_in": [ - 264 + 269 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 264 + 269 ], "_lte": [ - 264 + 269 ], "_neq": [ - 264 + 269 ], "_nin": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "bigint_comparison_exp": { "_eq": [ - 264 + 269 ], "_gt": [ - 264 + 269 ], "_gte": [ - 264 + 269 ], "_in": [ - 264 + 269 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 264 + 269 ], "_lte": [ - 264 + 269 ], "_neq": [ - 264 + 269 ], "_nin": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "bytea": {}, "bytea_comparison_exp": { "_eq": [ - 267 + 272 ], "_gt": [ - 267 + 272 ], "_gte": [ - 267 + 272 ], "_in": [ - 267 + 272 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 267 + 272 ], "_lte": [ - 267 + 272 ], "_neq": [ - 267 + 272 ], "_nin": [ - 267 + 272 ], "__typename": [ - 80 + 84 ] }, "chat_read_state": { "last_read_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "thread": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_aggregate": { "aggregate": [ - 271 + 276 ], "nodes": [ - 269 + 274 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_aggregate_fields": { "avg": [ - 272 + 277 ], "count": [ - 40, + 41, { "columns": [ - 283, + 288, "[chat_read_state_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 277 + 282 ], "min": [ - 278 + 283 ], "stddev": [ - 285 + 290 ], "stddev_pop": [ - 286 + 291 ], "stddev_samp": [ - 287 + 292 ], "sum": [ - 290 + 295 ], "var_pop": [ - 293 + 298 ], "var_samp": [ - 294 + 299 ], "variance": [ - 295 + 300 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_bool_exp": { "_and": [ - 273 + 278 ], "_not": [ - 273 + 278 ], "_or": [ - 273 + 278 ], "last_read_at": [ - 4671 + 4955 ], "steam_id": [ - 266 + 271 ], "thread": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_constraint": {}, "chat_read_state_inc_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_insert_input": { "last_read_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "thread": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_max_fields": { "last_read_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "thread": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_min_fields": { "last_read_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "thread": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 269 + 274 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_on_conflict": { "constraint": [ - 274 + 279 ], "update_columns": [ - 291 + 296 ], "where": [ - 273 + 278 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_order_by": { "last_read_at": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "thread": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_pk_columns_input": { "steam_id": [ - 264 + 269 ], "thread": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_select_column": {}, "chat_read_state_set_input": { "last_read_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "thread": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_stream_cursor_input": { "initial_value": [ - 289 + 294 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_stream_cursor_value_input": { "last_read_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "thread": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_update_column": {}, "chat_read_state_updates": { "_inc": [ - 275 + 280 ], "_set": [ - 284 + 289 ], "where": [ - 273 + 278 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "chat_read_state_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs": { "clip": [ - 2421 + 2678 ], "clip_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "error_message": [ - 80 + 84 ], "game_server_node": [ - 1806 + 2063 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "last_status_at": [ - 4670 + 4954 ], "match_map": [ - 2716 + 2973 ], "match_map_demo": [ - 2596 + 2853 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "paused": [ - 5 + 6 ], "progress": [ - 3092 + 3371 ], "session_token": [ - 80 + 84 ], "sort_index": [ - 40 + 41 ], "spec": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "status": [ - 80 + 84 ], "status_history": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "user": [ - 4052 + 4331 ], "user_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_aggregate": { "aggregate": [ - 302 + 307 ], "nodes": [ - 296 + 301 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_aggregate_bool_exp": { "bool_and": [ - 299 + 304 ], "bool_or": [ - 300 + 305 ], "count": [ - 301 + 306 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_aggregate_bool_exp_bool_and": { "arguments": [ - 325 + 330 ], "distinct": [ - 5 + 6 ], "filter": [ - 308 + 313 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_aggregate_bool_exp_bool_or": { "arguments": [ - 326 + 331 ], "distinct": [ - 5 + 6 ], "filter": [ - 308 + 313 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_aggregate_bool_exp_count": { "arguments": [ - 324 + 329 ], "distinct": [ - 5 + 6 ], "filter": [ - 308 + 313 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_aggregate_fields": { "avg": [ - 306 + 311 ], "count": [ - 40, + 41, { "columns": [ - 324, + 329, "[clip_render_jobs_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 315 + 320 ], "min": [ - 317 + 322 ], "stddev": [ - 328 + 333 ], "stddev_pop": [ - 330 + 335 ], "stddev_samp": [ - 332 + 337 ], "sum": [ - 336 + 341 ], "var_pop": [ - 340 + 345 ], "var_samp": [ - 342 + 347 ], "variance": [ - 344 + 349 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_aggregate_order_by": { "avg": [ - 307 + 312 ], "count": [ - 3094 + 3373 ], "max": [ - 316 + 321 ], "min": [ - 318 + 323 ], "stddev": [ - 329 + 334 ], "stddev_pop": [ - 331 + 336 ], "stddev_samp": [ - 333 + 338 ], "sum": [ - 337 + 342 ], "var_pop": [ - 341 + 346 ], "var_samp": [ - 343 + 348 ], "variance": [ - 345 + 350 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_append_input": { "spec": [ - 1930 + 2187 ], "status_history": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_arr_rel_insert_input": { "data": [ - 314 + 319 ], "on_conflict": [ - 320 + 325 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_avg_fields": { "progress": [ - 31 + 32 ], "sort_index": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_avg_order_by": { "progress": [ - 3094 + 3373 ], "sort_index": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_bool_exp": { "_and": [ - 308 + 313 ], "_not": [ - 308 + 313 ], "_or": [ - 308 + 313 ], "clip": [ - 2430 + 2687 ], "clip_id": [ - 5172 + 5456 ], "created_at": [ - 4671 + 4955 ], "error_message": [ - 82 + 86 ], "game_server_node": [ - 1818 + 2075 ], "game_server_node_id": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "k8s_job_name": [ - 82 + 86 ], "last_status_at": [ - 4671 + 4955 ], "match_map": [ - 2725 + 2982 ], "match_map_demo": [ - 2608 + 2865 ], "match_map_demo_id": [ - 5172 + 5456 ], "match_map_id": [ - 5172 + 5456 ], "paused": [ - 6 + 7 ], "progress": [ - 3093 + 3372 ], "session_token": [ - 82 + 86 ], "sort_index": [ - 41 + 42 ], "spec": [ - 1932 + 2189 ], "status": [ - 82 + 86 ], "status_history": [ - 1932 + 2189 ], "user": [ - 4056 + 4335 ], "user_steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_constraint": {}, "clip_render_jobs_delete_at_path_input": { "spec": [ - 80 + 84 ], "status_history": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_delete_elem_input": { "spec": [ - 40 + 41 ], "status_history": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_delete_key_input": { "spec": [ - 80 + 84 ], "status_history": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_inc_input": { "progress": [ - 3092 + 3371 ], "sort_index": [ - 40 + 41 ], "user_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_insert_input": { "clip": [ - 2439 + 2696 ], "clip_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "error_message": [ - 80 + 84 ], "game_server_node": [ - 1830 + 2087 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "last_status_at": [ - 4670 + 4954 ], "match_map": [ - 2734 + 2991 ], "match_map_demo": [ - 2620 + 2877 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "paused": [ - 5 + 6 ], "progress": [ - 3092 + 3371 ], "session_token": [ - 80 + 84 ], "sort_index": [ - 40 + 41 ], "spec": [ - 1930 + 2187 ], "status": [ - 80 + 84 ], "status_history": [ - 1930 + 2187 ], "user": [ - 4063 + 4342 ], "user_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_max_fields": { "clip_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "error_message": [ - 80 + 84 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "last_status_at": [ - 4670 + 4954 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "progress": [ - 3092 + 3371 ], "session_token": [ - 80 + 84 ], "sort_index": [ - 40 + 41 ], "status": [ - 80 + 84 ], "user_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_max_order_by": { "clip_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "error_message": [ - 3094 + 3373 ], "game_server_node_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "k8s_job_name": [ - 3094 + 3373 ], "last_status_at": [ - 3094 + 3373 ], "match_map_demo_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "progress": [ - 3094 + 3373 ], "session_token": [ - 3094 + 3373 ], "sort_index": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_min_fields": { "clip_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "error_message": [ - 80 + 84 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "last_status_at": [ - 4670 + 4954 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "progress": [ - 3092 + 3371 ], "session_token": [ - 80 + 84 ], "sort_index": [ - 40 + 41 ], "status": [ - 80 + 84 ], "user_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_min_order_by": { "clip_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "error_message": [ - 3094 + 3373 ], "game_server_node_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "k8s_job_name": [ - 3094 + 3373 ], "last_status_at": [ - 3094 + 3373 ], "match_map_demo_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "progress": [ - 3094 + 3373 ], "session_token": [ - 3094 + 3373 ], "sort_index": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 296 + 301 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_on_conflict": { "constraint": [ - 309 + 314 ], "update_columns": [ - 338 + 343 ], "where": [ - 308 + 313 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_order_by": { "clip": [ - 2441 + 2698 ], "clip_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "error_message": [ - 3094 + 3373 ], "game_server_node": [ - 1832 + 2089 ], "game_server_node_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "k8s_job_name": [ - 3094 + 3373 ], "last_status_at": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_demo": [ - 2622 + 2879 ], "match_map_demo_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "paused": [ - 3094 + 3373 ], "progress": [ - 3094 + 3373 ], "session_token": [ - 3094 + 3373 ], "sort_index": [ - 3094 + 3373 ], "spec": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "status_history": [ - 3094 + 3373 ], "user": [ - 4065 + 4344 ], "user_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_prepend_input": { "spec": [ - 1930 + 2187 ], "status_history": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_select_column": {}, @@ -7136,2673 +7264,2697 @@ export default { "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, "clip_render_jobs_set_input": { "clip_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "error_message": [ - 80 + 84 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "last_status_at": [ - 4670 + 4954 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "paused": [ - 5 + 6 ], "progress": [ - 3092 + 3371 ], "session_token": [ - 80 + 84 ], "sort_index": [ - 40 + 41 ], "spec": [ - 1930 + 2187 ], "status": [ - 80 + 84 ], "status_history": [ - 1930 + 2187 ], "user_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_stddev_fields": { "progress": [ - 31 + 32 ], "sort_index": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_stddev_order_by": { "progress": [ - 3094 + 3373 ], "sort_index": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_stddev_pop_fields": { "progress": [ - 31 + 32 ], "sort_index": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 3094 + 3373 ], "sort_index": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_stddev_samp_fields": { "progress": [ - 31 + 32 ], "sort_index": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 3094 + 3373 ], "sort_index": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_stream_cursor_input": { "initial_value": [ - 335 + 340 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "error_message": [ - 80 + 84 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "last_status_at": [ - 4670 + 4954 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "paused": [ - 5 + 6 ], "progress": [ - 3092 + 3371 ], "session_token": [ - 80 + 84 ], "sort_index": [ - 40 + 41 ], "spec": [ - 1930 + 2187 ], "status": [ - 80 + 84 ], "status_history": [ - 1930 + 2187 ], "user_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_sum_fields": { "progress": [ - 3092 + 3371 ], "sort_index": [ - 40 + 41 ], "user_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_sum_order_by": { "progress": [ - 3094 + 3373 ], "sort_index": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_update_column": {}, "clip_render_jobs_updates": { "_append": [ - 304 + 309 ], "_delete_at_path": [ - 310 + 315 ], "_delete_elem": [ - 311 + 316 ], "_delete_key": [ - 312 + 317 ], "_inc": [ - 313 + 318 ], "_prepend": [ - 323 + 328 ], "_set": [ - 327 + 332 ], "where": [ - 308 + 313 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_var_pop_fields": { "progress": [ - 31 + 32 ], "sort_index": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 3094 + 3373 ], "sort_index": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_var_samp_fields": { "progress": [ - 31 + 32 ], "sort_index": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 3094 + 3373 ], "sort_index": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_variance_fields": { "progress": [ - 31 + 32 ], "sort_index": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "clip_render_jobs_variance_order_by": { "progress": [ - 3094 + 3373 ], "sort_index": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "clone_league_season_args": { "_league_season_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "cursor_ordering": {}, "custom_pages": { "created_at": [ - 4670 + 4954 ], "deployments": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "enabled": [ - 5 + 6 ], "exposed_module": [ - 80 + 84 ], "icon": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_default": [ - 5 + 6 ], "manifest_url": [ - 80 + 84 ], "nav_group": [ - 80 + 84 ], "nav_order": [ - 40 + 41 + ], + "plugin_slug": [ + 84 ], "profile_tab_label": [ - 80 + 84 ], "remote_entry_url": [ - 80 + 84 ], "remote_scope": [ - 80 + 84 ], "required_role": [ - 1178 + 1243 ], "slug": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "custom_pages_aggregate": { "aggregate": [ - 350 + 355 ], "nodes": [ - 348 + 353 ], "__typename": [ - 80 + 84 ] }, "custom_pages_aggregate_fields": { "avg": [ - 352 + 357 ], "count": [ - 40, + 41, { "columns": [ - 367, + 372, "[custom_pages_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 360 + 365 ], "min": [ - 361 + 366 ], "stddev": [ - 369 + 374 ], "stddev_pop": [ - 370 + 375 ], "stddev_samp": [ - 371 + 376 ], "sum": [ - 374 + 379 ], "var_pop": [ - 377 + 382 ], "var_samp": [ - 378 + 383 ], "variance": [ - 379 + 384 ], "__typename": [ - 80 + 84 ] }, "custom_pages_append_input": { "deployments": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "custom_pages_avg_fields": { "nav_order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "custom_pages_bool_exp": { "_and": [ - 353 + 358 ], "_not": [ - 353 + 358 ], "_or": [ - 353 + 358 ], "created_at": [ - 4671 + 4955 ], "deployments": [ - 1932 + 2189 ], "enabled": [ - 6 + 7 ], "exposed_module": [ - 82 + 86 ], "icon": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "is_default": [ - 6 + 7 ], "manifest_url": [ - 82 + 86 ], "nav_group": [ - 82 + 86 ], "nav_order": [ - 41 + 42 + ], + "plugin_slug": [ + 86 ], "profile_tab_label": [ - 82 + 86 ], "remote_entry_url": [ - 82 + 86 ], "remote_scope": [ - 82 + 86 ], "required_role": [ - 1179 + 1244 ], "slug": [ - 82 + 86 ], "title": [ - 82 + 86 ], "updated_at": [ - 4671 + 4955 ], "__typename": [ - 80 + 84 ] }, "custom_pages_constraint": {}, "custom_pages_delete_at_path_input": { "deployments": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "custom_pages_delete_elem_input": { "deployments": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "custom_pages_delete_key_input": { "deployments": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "custom_pages_inc_input": { "nav_order": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "custom_pages_insert_input": { "created_at": [ - 4670 + 4954 ], "deployments": [ - 1930 + 2187 ], "enabled": [ - 5 + 6 ], "exposed_module": [ - 80 + 84 ], "icon": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_default": [ - 5 + 6 ], "manifest_url": [ - 80 + 84 ], "nav_group": [ - 80 + 84 ], "nav_order": [ - 40 + 41 + ], + "plugin_slug": [ + 84 ], "profile_tab_label": [ - 80 + 84 ], "remote_entry_url": [ - 80 + 84 ], "remote_scope": [ - 80 + 84 ], "required_role": [ - 1178 + 1243 ], "slug": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "custom_pages_max_fields": { "created_at": [ - 4670 + 4954 ], "exposed_module": [ - 80 + 84 ], "icon": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "manifest_url": [ - 80 + 84 ], "nav_group": [ - 80 + 84 ], "nav_order": [ - 40 + 41 + ], + "plugin_slug": [ + 84 ], "profile_tab_label": [ - 80 + 84 ], "remote_entry_url": [ - 80 + 84 ], "remote_scope": [ - 80 + 84 ], "slug": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "custom_pages_min_fields": { "created_at": [ - 4670 + 4954 ], "exposed_module": [ - 80 + 84 ], "icon": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "manifest_url": [ - 80 + 84 ], "nav_group": [ - 80 + 84 ], "nav_order": [ - 40 + 41 + ], + "plugin_slug": [ + 84 ], "profile_tab_label": [ - 80 + 84 ], "remote_entry_url": [ - 80 + 84 ], "remote_scope": [ - 80 + 84 ], "slug": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "custom_pages_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 348 + 353 ], "__typename": [ - 80 + 84 ] }, "custom_pages_on_conflict": { "constraint": [ - 354 + 359 ], "update_columns": [ - 375 + 380 ], "where": [ - 353 + 358 ], "__typename": [ - 80 + 84 ] }, "custom_pages_order_by": { "created_at": [ - 3094 + 3373 ], "deployments": [ - 3094 + 3373 ], "enabled": [ - 3094 + 3373 ], "exposed_module": [ - 3094 + 3373 ], "icon": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "is_default": [ - 3094 + 3373 ], "manifest_url": [ - 3094 + 3373 ], "nav_group": [ - 3094 + 3373 ], "nav_order": [ - 3094 + 3373 + ], + "plugin_slug": [ + 3373 ], "profile_tab_label": [ - 3094 + 3373 ], "remote_entry_url": [ - 3094 + 3373 ], "remote_scope": [ - 3094 + 3373 ], "required_role": [ - 3094 + 3373 ], "slug": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "custom_pages_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "custom_pages_prepend_input": { "deployments": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "custom_pages_select_column": {}, "custom_pages_set_input": { "created_at": [ - 4670 + 4954 ], "deployments": [ - 1930 + 2187 ], "enabled": [ - 5 + 6 ], "exposed_module": [ - 80 + 84 ], "icon": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_default": [ - 5 + 6 ], "manifest_url": [ - 80 + 84 ], "nav_group": [ - 80 + 84 ], "nav_order": [ - 40 + 41 + ], + "plugin_slug": [ + 84 ], "profile_tab_label": [ - 80 + 84 ], "remote_entry_url": [ - 80 + 84 ], "remote_scope": [ - 80 + 84 ], "required_role": [ - 1178 + 1243 ], "slug": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "custom_pages_stddev_fields": { "nav_order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "custom_pages_stddev_pop_fields": { "nav_order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "custom_pages_stddev_samp_fields": { "nav_order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "custom_pages_stream_cursor_input": { "initial_value": [ - 373 + 378 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "custom_pages_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "deployments": [ - 1930 + 2187 ], "enabled": [ - 5 + 6 ], "exposed_module": [ - 80 + 84 ], "icon": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_default": [ - 5 + 6 ], "manifest_url": [ - 80 + 84 ], "nav_group": [ - 80 + 84 ], "nav_order": [ - 40 + 41 + ], + "plugin_slug": [ + 84 ], "profile_tab_label": [ - 80 + 84 ], "remote_entry_url": [ - 80 + 84 ], "remote_scope": [ - 80 + 84 ], "required_role": [ - 1178 + 1243 ], "slug": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "custom_pages_sum_fields": { "nav_order": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "custom_pages_update_column": {}, "custom_pages_updates": { "_append": [ - 351 + 356 ], "_delete_at_path": [ - 355 + 360 ], "_delete_elem": [ - 356 + 361 ], "_delete_key": [ - 357 + 362 ], "_inc": [ - 358 + 363 ], "_prepend": [ - 366 + 371 ], "_set": [ - 368 + 373 ], "where": [ - 353 + 358 ], "__typename": [ - 80 + 84 ] }, "custom_pages_var_pop_fields": { "nav_order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "custom_pages_var_samp_fields": { "nav_order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "custom_pages_variance_fields": { "nav_order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "db_backups": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "size": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "db_backups_aggregate": { "aggregate": [ - 382 + 387 ], "nodes": [ - 380 + 385 ], "__typename": [ - 80 + 84 ] }, "db_backups_aggregate_fields": { "avg": [ - 383 + 388 ], "count": [ - 40, + 41, { "columns": [ - 394, + 399, "[db_backups_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 388 + 393 ], "min": [ - 389 + 394 ], "stddev": [ - 396 + 401 ], "stddev_pop": [ - 397 + 402 ], "stddev_samp": [ - 398 + 403 ], "sum": [ - 401 + 406 ], "var_pop": [ - 404 + 409 ], "var_samp": [ - 405 + 410 ], "variance": [ - 406 + 411 ], "__typename": [ - 80 + 84 ] }, "db_backups_avg_fields": { "size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "db_backups_bool_exp": { "_and": [ - 384 + 389 ], "_not": [ - 384 + 389 ], "_or": [ - 384 + 389 ], "created_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "name": [ - 82 + 86 ], "size": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "db_backups_constraint": {}, "db_backups_inc_input": { "size": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "db_backups_insert_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "size": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "db_backups_max_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "size": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "db_backups_min_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "size": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "db_backups_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 380 + 385 ], "__typename": [ - 80 + 84 ] }, "db_backups_on_conflict": { "constraint": [ - 385 + 390 ], "update_columns": [ - 402 + 407 ], "where": [ - 384 + 389 ], "__typename": [ - 80 + 84 ] }, "db_backups_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "db_backups_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "size": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "db_backups_stddev_fields": { "size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "db_backups_stddev_pop_fields": { "size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "db_backups_stddev_samp_fields": { "size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "db_backups_stream_cursor_input": { "initial_value": [ - 400 + 405 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "size": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "db_backups_sum_fields": { "size": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "db_backups_update_column": {}, "db_backups_updates": { "_inc": [ - 386 + 391 ], "_set": [ - 395 + 400 ], "where": [ - 384 + 389 ], "__typename": [ - 80 + 84 ] }, "db_backups_var_pop_fields": { "size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "db_backups_var_samp_fields": { "size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "db_backups_variance_fields": { "size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "direct_conversations": { "is_open": [ - 5 + 6 ], "last_message_at": [ - 4670 + 4954 ], "position": [ - 40 + 41 ], "room_id": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_aggregate": { "aggregate": [ - 409 + 414 ], "nodes": [ - 407 + 412 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_aggregate_fields": { "avg": [ - 410 + 415 ], "count": [ - 40, + 41, { "columns": [ - 421, + 426, "[direct_conversations_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 415 + 420 ], "min": [ - 416 + 421 ], "stddev": [ - 423 + 428 ], "stddev_pop": [ - 424 + 429 ], "stddev_samp": [ - 425 + 430 ], "sum": [ - 428 + 433 ], "var_pop": [ - 431 + 436 ], "var_samp": [ - 432 + 437 ], "variance": [ - 433 + 438 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_avg_fields": { "position": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_bool_exp": { "_and": [ - 411 + 416 ], "_not": [ - 411 + 416 ], "_or": [ - 411 + 416 ], "is_open": [ - 6 + 7 ], "last_message_at": [ - 4671 + 4955 ], "position": [ - 41 + 42 ], "room_id": [ - 82 + 86 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_constraint": {}, "direct_conversations_inc_input": { "position": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_insert_input": { "is_open": [ - 5 + 6 ], "last_message_at": [ - 4670 + 4954 ], "position": [ - 40 + 41 ], "room_id": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_max_fields": { "last_message_at": [ - 4670 + 4954 ], "position": [ - 40 + 41 ], "room_id": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_min_fields": { "last_message_at": [ - 4670 + 4954 ], "position": [ - 40 + 41 ], "room_id": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 407 + 412 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_on_conflict": { "constraint": [ - 412 + 417 ], "update_columns": [ - 429 + 434 ], "where": [ - 411 + 416 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_order_by": { "is_open": [ - 3094 + 3373 ], "last_message_at": [ - 3094 + 3373 ], "position": [ - 3094 + 3373 ], "room_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_pk_columns_input": { "room_id": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_select_column": {}, "direct_conversations_set_input": { "is_open": [ - 5 + 6 ], "last_message_at": [ - 4670 + 4954 ], "position": [ - 40 + 41 ], "room_id": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_stddev_fields": { "position": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_stddev_pop_fields": { "position": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_stddev_samp_fields": { "position": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_stream_cursor_input": { "initial_value": [ - 427 + 432 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_stream_cursor_value_input": { "is_open": [ - 5 + 6 ], "last_message_at": [ - 4670 + 4954 ], "position": [ - 40 + 41 ], "room_id": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_sum_fields": { "position": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_update_column": {}, "direct_conversations_updates": { "_inc": [ - 413 + 418 ], "_set": [ - 422 + 427 ], "where": [ - 411 + 416 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_var_pop_fields": { "position": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_var_samp_fields": { "position": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "direct_conversations_variance_fields": { "position": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "direct_messages": { "created_at": [ - 4670 + 4954 ], "from_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "room_id": [ - 80 + 84 ], "seq": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_messages_aggregate": { "aggregate": [ - 436 + 441 ], "nodes": [ - 434 + 439 ], "__typename": [ - 80 + 84 ] }, "direct_messages_aggregate_fields": { "avg": [ - 437 + 442 ], "count": [ - 40, + 41, { "columns": [ - 448, + 453, "[direct_messages_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 442 + 447 ], "min": [ - 443 + 448 ], "stddev": [ - 450 + 455 ], "stddev_pop": [ - 451 + 456 ], "stddev_samp": [ - 452 + 457 ], "sum": [ - 455 + 460 ], "var_pop": [ - 458 + 463 ], "var_samp": [ - 459 + 464 ], "variance": [ - 460 + 465 ], "__typename": [ - 80 + 84 ] }, "direct_messages_avg_fields": { "from_steam_id": [ - 31 + 32 ], "seq": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "direct_messages_bool_exp": { "_and": [ - 438 + 443 ], "_not": [ - 438 + 443 ], "_or": [ - 438 + 443 ], "created_at": [ - 4671 + 4955 ], "from_steam_id": [ - 266 + 271 ], "id": [ - 5172 + 5456 ], "message": [ - 82 + 86 ], "room_id": [ - 82 + 86 ], "seq": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "direct_messages_constraint": {}, "direct_messages_inc_input": { "from_steam_id": [ - 264 + 269 ], "seq": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_messages_insert_input": { "created_at": [ - 4670 + 4954 ], "from_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "room_id": [ - 80 + 84 ], "seq": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_messages_max_fields": { "created_at": [ - 4670 + 4954 ], "from_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "room_id": [ - 80 + 84 ], "seq": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_messages_min_fields": { "created_at": [ - 4670 + 4954 ], "from_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "room_id": [ - 80 + 84 ], "seq": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_messages_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 434 + 439 ], "__typename": [ - 80 + 84 ] }, "direct_messages_on_conflict": { "constraint": [ - 439 + 444 ], "update_columns": [ - 456 + 461 ], "where": [ - 438 + 443 ], "__typename": [ - 80 + 84 ] }, "direct_messages_order_by": { "created_at": [ - 3094 + 3373 ], "from_steam_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "message": [ - 3094 + 3373 ], "room_id": [ - 3094 + 3373 ], "seq": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "direct_messages_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "direct_messages_select_column": {}, "direct_messages_set_input": { "created_at": [ - 4670 + 4954 ], "from_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "room_id": [ - 80 + 84 ], "seq": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_messages_stddev_fields": { "from_steam_id": [ - 31 + 32 ], "seq": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "direct_messages_stddev_pop_fields": { "from_steam_id": [ - 31 + 32 ], "seq": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "direct_messages_stddev_samp_fields": { "from_steam_id": [ - 31 + 32 ], "seq": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "direct_messages_stream_cursor_input": { "initial_value": [ - 454 + 459 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "direct_messages_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "from_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "room_id": [ - 80 + 84 ], "seq": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_messages_sum_fields": { "from_steam_id": [ - 264 + 269 ], "seq": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "direct_messages_update_column": {}, "direct_messages_updates": { "_inc": [ - 440 + 445 ], "_set": [ - 449 + 454 ], "where": [ - 438 + 443 ], "__typename": [ - 80 + 84 ] }, "direct_messages_var_pop_fields": { "from_steam_id": [ - 31 + 32 ], "seq": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "direct_messages_var_samp_fields": { "from_steam_id": [ - 31 + 32 ], "seq": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "direct_messages_variance_fields": { "from_steam_id": [ - 31 + 32 ], "seq": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks": { "auto_picked": [ - 5 + 6 ], "captain": [ - 4052 + 4331 ], "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "draft_game": [ - 551 + 556 ], "draft_game_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "is_organizer": [ - 5 + 6 ], "lineup": [ - 40 + 41 ], "picked": [ - 4052 + 4331 ], "picked_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_aggregate": { "aggregate": [ - 467 + 472 ], "nodes": [ - 461 + 466 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_aggregate_bool_exp": { "bool_and": [ - 464 + 469 ], "bool_or": [ - 465 + 470 ], "count": [ - 466 + 471 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 485 + 490 ], "distinct": [ - 5 + 6 ], "filter": [ - 472 + 477 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 486 + 491 ], "distinct": [ - 5 + 6 ], "filter": [ - 472 + 477 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_aggregate_bool_exp_count": { "arguments": [ - 484 + 489 ], "distinct": [ - 5 + 6 ], "filter": [ - 472 + 477 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_aggregate_fields": { "avg": [ - 470 + 475 ], "count": [ - 40, + 41, { "columns": [ - 484, + 489, "[draft_game_picks_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 476 + 481 ], "min": [ - 478 + 483 ], "stddev": [ - 488 + 493 ], "stddev_pop": [ - 490 + 495 ], "stddev_samp": [ - 492 + 497 ], "sum": [ - 496 + 501 ], "var_pop": [ - 500 + 505 ], "var_samp": [ - 502 + 507 ], "variance": [ - 504 + 509 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_aggregate_order_by": { "avg": [ - 471 + 476 ], "count": [ - 3094 + 3373 ], "max": [ - 477 + 482 ], "min": [ - 479 + 484 ], "stddev": [ - 489 + 494 ], "stddev_pop": [ - 491 + 496 ], "stddev_samp": [ - 493 + 498 ], "sum": [ - 497 + 502 ], "var_pop": [ - 501 + 506 ], "var_samp": [ - 503 + 508 ], "variance": [ - 505 + 510 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_arr_rel_insert_input": { "data": [ - 475 + 480 ], "on_conflict": [ - 481 + 486 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_avg_fields": { "captain_steam_id": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "picked_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "picked_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_bool_exp": { "_and": [ - 472 + 477 ], "_not": [ - 472 + 477 ], "_or": [ - 472 + 477 ], "auto_picked": [ - 6 + 7 ], "captain": [ - 4056 + 4335 ], "captain_steam_id": [ - 266 + 271 ], "created_at": [ - 4671 + 4955 ], "draft_game": [ - 562 + 567 ], "draft_game_id": [ - 5172 + 5456 ], "id": [ - 5172 + 5456 ], "is_organizer": [ - 6 + 7 ], "lineup": [ - 41 + 42 ], "picked": [ - 4056 + 4335 ], "picked_steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_constraint": {}, "draft_game_picks_inc_input": { "captain_steam_id": [ - 264 + 269 ], "lineup": [ - 40 + 41 ], "picked_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_insert_input": { "auto_picked": [ - 5 + 6 ], "captain": [ - 4063 + 4342 ], "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "draft_game": [ - 571 + 576 ], "draft_game_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "lineup": [ - 40 + 41 ], "picked": [ - 4063 + 4342 ], "picked_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_max_fields": { "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "draft_game_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "lineup": [ - 40 + 41 ], "picked_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "draft_game_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "picked_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_min_fields": { "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "draft_game_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "lineup": [ - 40 + 41 ], "picked_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "draft_game_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "picked_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 461 + 466 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_on_conflict": { "constraint": [ - 473 + 478 ], "update_columns": [ - 498 + 503 ], "where": [ - 472 + 477 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_order_by": { "auto_picked": [ - 3094 + 3373 ], "captain": [ - 4065 + 4344 ], "captain_steam_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "draft_game": [ - 573 + 578 ], "draft_game_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "is_organizer": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "picked": [ - 4065 + 4344 ], "picked_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_select_column": {}, @@ -9810,798 +9962,798 @@ export default { "draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_game_picks_set_input": { "auto_picked": [ - 5 + 6 ], "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "draft_game_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "lineup": [ - 40 + 41 ], "picked_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_stddev_fields": { "captain_steam_id": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "picked_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "picked_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_stddev_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "picked_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "picked_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_stddev_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "picked_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "picked_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_stream_cursor_input": { "initial_value": [ - 495 + 500 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_stream_cursor_value_input": { "auto_picked": [ - 5 + 6 ], "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "draft_game_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "lineup": [ - 40 + 41 ], "picked_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_sum_fields": { "captain_steam_id": [ - 264 + 269 ], "lineup": [ - 40 + 41 ], "picked_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "picked_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_update_column": {}, "draft_game_picks_updates": { "_inc": [ - 474 + 479 ], "_set": [ - 487 + 492 ], "where": [ - 472 + 477 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_var_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "picked_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "picked_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_var_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "picked_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "picked_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_variance_fields": { "captain_steam_id": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "picked_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "picked_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_players": { "draft_game": [ - 551 + 556 ], "draft_game_id": [ - 5170 + 5454 ], "e_draft_game_player_status": [ - 720 + 725 ], "elo_snapshot": [ - 40 + 41 ], "is_captain": [ - 5 + 6 ], "is_organizer": [ - 5 + 6 ], "joined_at": [ - 4670 + 4954 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "player": [ - 4052 + 4331 ], "status": [ - 725 + 730 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_aggregate": { "aggregate": [ - 512 + 517 ], "nodes": [ - 506 + 511 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_aggregate_bool_exp": { "bool_and": [ - 509 + 514 ], "bool_or": [ - 510 + 515 ], "count": [ - 511 + 516 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_aggregate_bool_exp_bool_and": { "arguments": [ - 530 + 535 ], "distinct": [ - 5 + 6 ], "filter": [ - 517 + 522 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_aggregate_bool_exp_bool_or": { "arguments": [ - 531 + 536 ], "distinct": [ - 5 + 6 ], "filter": [ - 517 + 522 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_aggregate_bool_exp_count": { "arguments": [ - 529 + 534 ], "distinct": [ - 5 + 6 ], "filter": [ - 517 + 522 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_aggregate_fields": { "avg": [ - 515 + 520 ], "count": [ - 40, + 41, { "columns": [ - 529, + 534, "[draft_game_players_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 521 + 526 ], "min": [ - 523 + 528 ], "stddev": [ - 533 + 538 ], "stddev_pop": [ - 535 + 540 ], "stddev_samp": [ - 537 + 542 ], "sum": [ - 541 + 546 ], "var_pop": [ - 545 + 550 ], "var_samp": [ - 547 + 552 ], "variance": [ - 549 + 554 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_aggregate_order_by": { "avg": [ - 516 + 521 ], "count": [ - 3094 + 3373 ], "max": [ - 522 + 527 ], "min": [ - 524 + 529 ], "stddev": [ - 534 + 539 ], "stddev_pop": [ - 536 + 541 ], "stddev_samp": [ - 538 + 543 ], "sum": [ - 542 + 547 ], "var_pop": [ - 546 + 551 ], "var_samp": [ - 548 + 553 ], "variance": [ - 550 + 555 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_arr_rel_insert_input": { "data": [ - 520 + 525 ], "on_conflict": [ - 526 + 531 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_avg_fields": { "elo_snapshot": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "pick_order": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "pick_order": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_bool_exp": { "_and": [ - 517 + 522 ], "_not": [ - 517 + 522 ], "_or": [ - 517 + 522 ], "draft_game": [ - 562 + 567 ], "draft_game_id": [ - 5172 + 5456 ], "e_draft_game_player_status": [ - 723 + 728 ], "elo_snapshot": [ - 41 + 42 ], "is_captain": [ - 6 + 7 ], "is_organizer": [ - 6 + 7 ], "joined_at": [ - 4671 + 4955 ], "lineup": [ - 41 + 42 ], "pick_order": [ - 41 + 42 ], "player": [ - 4056 + 4335 ], "status": [ - 726 + 731 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_constraint": {}, "draft_game_players_inc_input": { "elo_snapshot": [ - 40 + 41 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_insert_input": { "draft_game": [ - 571 + 576 ], "draft_game_id": [ - 5170 + 5454 ], "e_draft_game_player_status": [ - 731 + 736 ], "elo_snapshot": [ - 40 + 41 ], "is_captain": [ - 5 + 6 ], "joined_at": [ - 4670 + 4954 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "player": [ - 4063 + 4342 ], "status": [ - 725 + 730 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_max_fields": { "draft_game_id": [ - 5170 + 5454 ], "elo_snapshot": [ - 40 + 41 ], "joined_at": [ - 4670 + 4954 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_max_order_by": { "draft_game_id": [ - 3094 + 3373 ], "elo_snapshot": [ - 3094 + 3373 ], "joined_at": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "pick_order": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_min_fields": { "draft_game_id": [ - 5170 + 5454 ], "elo_snapshot": [ - 40 + 41 ], "joined_at": [ - 4670 + 4954 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_min_order_by": { "draft_game_id": [ - 3094 + 3373 ], "elo_snapshot": [ - 3094 + 3373 ], "joined_at": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "pick_order": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 506 + 511 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_on_conflict": { "constraint": [ - 518 + 523 ], "update_columns": [ - 543 + 548 ], "where": [ - 517 + 522 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_order_by": { "draft_game": [ - 573 + 578 ], "draft_game_id": [ - 3094 + 3373 ], "e_draft_game_player_status": [ - 733 + 738 ], "elo_snapshot": [ - 3094 + 3373 ], "is_captain": [ - 3094 + 3373 ], "is_organizer": [ - 3094 + 3373 ], "joined_at": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "pick_order": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "status": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_select_column": {}, @@ -10609,1445 +10761,1445 @@ 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": [ - 5170 + 5454 ], "elo_snapshot": [ - 40 + 41 ], "is_captain": [ - 5 + 6 ], "joined_at": [ - 4670 + 4954 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "status": [ - 725 + 730 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_stddev_fields": { "elo_snapshot": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "pick_order": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "pick_order": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_stddev_pop_fields": { "elo_snapshot": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "pick_order": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "pick_order": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_stddev_samp_fields": { "elo_snapshot": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "pick_order": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "pick_order": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_stream_cursor_input": { "initial_value": [ - 540 + 545 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 5170 + 5454 ], "elo_snapshot": [ - 40 + 41 ], "is_captain": [ - 5 + 6 ], "joined_at": [ - 4670 + 4954 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "status": [ - 725 + 730 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_sum_fields": { "elo_snapshot": [ - 40 + 41 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "pick_order": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_update_column": {}, "draft_game_players_updates": { "_inc": [ - 519 + 524 ], "_set": [ - 532 + 537 ], "where": [ - 517 + 522 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_var_pop_fields": { "elo_snapshot": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "pick_order": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "pick_order": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_var_samp_fields": { "elo_snapshot": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "pick_order": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "pick_order": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_variance_fields": { "elo_snapshot": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "pick_order": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 3094 + 3373 ], "lineup": [ - 3094 + 3373 ], "pick_order": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_games": { "access": [ - 953 + 1018 ], "capacity": [ - 40 + 41 ], "captain_selection": [ - 662 + 667 ], "created_at": [ - 4670 + 4954 ], "current_pick_lineup": [ - 40 + 41 ], "draft_order": [ - 683 + 688 ], "e_draft_game_captain_selection": [ - 657 + 662 ], "e_draft_game_draft_order": [ - 678 + 683 ], "e_draft_game_mode": [ - 699 + 704 ], "e_draft_game_status": [ - 741 + 746 ], "e_lobby_access": [ - 948 + 1013 ], "expires_at": [ - 4670 + 4954 ], "host": [ - 4052 + 4331 ], "host_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "inner_squad": [ - 5 + 6 ], "invite_code": [ - 5170 + 5454 ], "is_organizer": [ - 5 + 6 ], "map_pool": [ - 2373 + 2630 ], "map_pool_id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "mode": [ - 704 + 709 ], "options": [ - 2758 + 3015 ], "pattern": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "pick_deadline": [ - 4670 + 4954 ], "picks": [ - 461, + 466, { "distinct_on": [ - 484, + 489, "[draft_game_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 482, + 487, "[draft_game_picks_order_by!]" ], "where": [ - 472 + 477 ] } ], "picks_aggregate": [ - 462, + 467, { "distinct_on": [ - 484, + 489, "[draft_game_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 482, + 487, "[draft_game_picks_order_by!]" ], "where": [ - 472 + 477 ] } ], "players": [ - 506, + 511, { "distinct_on": [ - 529, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 527, + 532, "[draft_game_players_order_by!]" ], "where": [ - 517 + 522 ] } ], "players_aggregate": [ - 507, + 512, { "distinct_on": [ - 529, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 527, + 532, "[draft_game_players_order_by!]" ], "where": [ - 517 + 522 ] } ], "regions": [ - 80 + 84 ], "require_approval": [ - 5 + 6 ], "scheduled_at": [ - 4670 + 4954 ], "status": [ - 746 + 751 ], "team_1": [ - 4621 + 4905 ], "team_1_id": [ - 5170 + 5454 ], "team_2": [ - 4621 + 4905 ], "team_2_id": [ - 5170 + 5454 ], "type": [ - 1117 + 1182 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "draft_games_aggregate": { "aggregate": [ - 557 + 562 ], "nodes": [ - 551 + 556 ], "__typename": [ - 80 + 84 ] }, "draft_games_aggregate_bool_exp": { "bool_and": [ - 554 + 559 ], "bool_or": [ - 555 + 560 ], "count": [ - 556 + 561 ], "__typename": [ - 80 + 84 ] }, "draft_games_aggregate_bool_exp_bool_and": { "arguments": [ - 576 + 581 ], "distinct": [ - 5 + 6 ], "filter": [ - 562 + 567 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "draft_games_aggregate_bool_exp_bool_or": { "arguments": [ - 577 + 582 ], "distinct": [ - 5 + 6 ], "filter": [ - 562 + 567 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "draft_games_aggregate_bool_exp_count": { "arguments": [ - 575 + 580 ], "distinct": [ - 5 + 6 ], "filter": [ - 562 + 567 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "draft_games_aggregate_fields": { "avg": [ - 560 + 565 ], "count": [ - 40, + 41, { "columns": [ - 575, + 580, "[draft_games_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 566 + 571 ], "min": [ - 568 + 573 ], "stddev": [ - 579 + 584 ], "stddev_pop": [ - 581 + 586 ], "stddev_samp": [ - 583 + 588 ], "sum": [ - 587 + 592 ], "var_pop": [ - 591 + 596 ], "var_samp": [ - 593 + 598 ], "variance": [ - 595 + 600 ], "__typename": [ - 80 + 84 ] }, "draft_games_aggregate_order_by": { "avg": [ - 561 + 566 ], "count": [ - 3094 + 3373 ], "max": [ - 567 + 572 ], "min": [ - 569 + 574 ], "stddev": [ - 580 + 585 ], "stddev_pop": [ - 582 + 587 ], "stddev_samp": [ - 584 + 589 ], "sum": [ - 588 + 593 ], "var_pop": [ - 592 + 597 ], "var_samp": [ - 594 + 599 ], "variance": [ - 596 + 601 ], "__typename": [ - 80 + 84 ] }, "draft_games_arr_rel_insert_input": { "data": [ - 565 + 570 ], "on_conflict": [ - 572 + 577 ], "__typename": [ - 80 + 84 ] }, "draft_games_avg_fields": { "capacity": [ - 31 + 32 ], "current_pick_lineup": [ - 31 + 32 ], "host_steam_id": [ - 31 + 32 ], "max_elo": [ - 31 + 32 ], "min_elo": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_games_avg_order_by": { "capacity": [ - 3094 + 3373 ], "current_pick_lineup": [ - 3094 + 3373 ], "host_steam_id": [ - 3094 + 3373 ], "max_elo": [ - 3094 + 3373 ], "min_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_games_bool_exp": { "_and": [ - 562 + 567 ], "_not": [ - 562 + 567 ], "_or": [ - 562 + 567 ], "access": [ - 954 + 1019 ], "capacity": [ - 41 + 42 ], "captain_selection": [ - 663 + 668 ], "created_at": [ - 4671 + 4955 ], "current_pick_lineup": [ - 41 + 42 ], "draft_order": [ - 684 + 689 ], "e_draft_game_captain_selection": [ - 660 + 665 ], "e_draft_game_draft_order": [ - 681 + 686 ], "e_draft_game_mode": [ - 702 + 707 ], "e_draft_game_status": [ - 744 + 749 ], "e_lobby_access": [ - 951 + 1016 ], "expires_at": [ - 4671 + 4955 ], "host": [ - 4056 + 4335 ], "host_steam_id": [ - 266 + 271 ], "id": [ - 5172 + 5456 ], "inner_squad": [ - 6 + 7 ], "invite_code": [ - 5172 + 5456 ], "is_organizer": [ - 6 + 7 ], "map_pool": [ - 2376 + 2633 ], "map_pool_id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_options_id": [ - 5172 + 5456 ], "max_elo": [ - 41 + 42 ], "min_elo": [ - 41 + 42 ], "mode": [ - 705 + 710 ], "options": [ - 2762 + 3026 ], "pattern": [ - 1932 + 2189 ], "pick_deadline": [ - 4671 + 4955 ], "picks": [ - 472 + 477 ], "picks_aggregate": [ - 463 + 468 ], "players": [ - 517 + 522 ], "players_aggregate": [ - 508 + 513 ], "regions": [ - 81 + 85 ], "require_approval": [ - 6 + 7 ], "scheduled_at": [ - 4671 + 4955 ], "status": [ - 747 + 752 ], "team_1": [ - 4632 + 4916 ], "team_1_id": [ - 5172 + 5456 ], "team_2": [ - 4632 + 4916 ], "team_2_id": [ - 5172 + 5456 ], "type": [ - 1118 + 1183 ], "updated_at": [ - 4671 + 4955 ], "__typename": [ - 80 + 84 ] }, "draft_games_constraint": {}, "draft_games_inc_input": { "capacity": [ - 40 + 41 ], "current_pick_lineup": [ - 40 + 41 ], "host_steam_id": [ - 264 + 269 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "draft_games_insert_input": { "access": [ - 953 + 1018 ], "capacity": [ - 40 + 41 ], "captain_selection": [ - 662 + 667 ], "created_at": [ - 4670 + 4954 ], "current_pick_lineup": [ - 40 + 41 ], "draft_order": [ - 683 + 688 ], "e_draft_game_captain_selection": [ - 668 + 673 ], "e_draft_game_draft_order": [ - 689 + 694 ], "e_draft_game_mode": [ - 710 + 715 ], "e_draft_game_status": [ - 752 + 757 ], "e_lobby_access": [ - 959 + 1024 ], "expires_at": [ - 4670 + 4954 ], "host": [ - 4063 + 4342 ], "host_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "inner_squad": [ - 5 + 6 ], "invite_code": [ - 5170 + 5454 ], "map_pool": [ - 2382 + 2639 ], "map_pool_id": [ - 5170 + 5454 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "mode": [ - 704 + 709 ], "options": [ - 2769 + 3035 ], "pick_deadline": [ - 4670 + 4954 ], "picks": [ - 469 + 474 ], "players": [ - 514 + 519 ], "regions": [ - 80 + 84 ], "require_approval": [ - 5 + 6 ], "scheduled_at": [ - 4670 + 4954 ], "status": [ - 746 + 751 ], "team_1": [ - 4641 + 4925 ], "team_1_id": [ - 5170 + 5454 ], "team_2": [ - 4641 + 4925 ], "team_2_id": [ - 5170 + 5454 ], "type": [ - 1117 + 1182 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "draft_games_max_fields": { "capacity": [ - 40 + 41 ], "created_at": [ - 4670 + 4954 ], "current_pick_lineup": [ - 40 + 41 ], "expires_at": [ - 4670 + 4954 ], "host_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "invite_code": [ - 5170 + 5454 ], "map_pool_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "pick_deadline": [ - 4670 + 4954 ], "regions": [ - 80 + 84 ], "scheduled_at": [ - 4670 + 4954 ], "team_1_id": [ - 5170 + 5454 ], "team_2_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "draft_games_max_order_by": { "capacity": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "current_pick_lineup": [ - 3094 + 3373 ], "expires_at": [ - 3094 + 3373 ], "host_steam_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "invite_code": [ - 3094 + 3373 ], "map_pool_id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "max_elo": [ - 3094 + 3373 ], "min_elo": [ - 3094 + 3373 ], "pick_deadline": [ - 3094 + 3373 ], "regions": [ - 3094 + 3373 ], "scheduled_at": [ - 3094 + 3373 ], "team_1_id": [ - 3094 + 3373 ], "team_2_id": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_games_min_fields": { "capacity": [ - 40 + 41 ], "created_at": [ - 4670 + 4954 ], "current_pick_lineup": [ - 40 + 41 ], "expires_at": [ - 4670 + 4954 ], "host_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "invite_code": [ - 5170 + 5454 ], "map_pool_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "pick_deadline": [ - 4670 + 4954 ], "regions": [ - 80 + 84 ], "scheduled_at": [ - 4670 + 4954 ], "team_1_id": [ - 5170 + 5454 ], "team_2_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "draft_games_min_order_by": { "capacity": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "current_pick_lineup": [ - 3094 + 3373 ], "expires_at": [ - 3094 + 3373 ], "host_steam_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "invite_code": [ - 3094 + 3373 ], "map_pool_id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "max_elo": [ - 3094 + 3373 ], "min_elo": [ - 3094 + 3373 ], "pick_deadline": [ - 3094 + 3373 ], "regions": [ - 3094 + 3373 ], "scheduled_at": [ - 3094 + 3373 ], "team_1_id": [ - 3094 + 3373 ], "team_2_id": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_games_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 551 + 556 ], "__typename": [ - 80 + 84 ] }, "draft_games_obj_rel_insert_input": { "data": [ - 565 + 570 ], "on_conflict": [ - 572 + 577 ], "__typename": [ - 80 + 84 ] }, "draft_games_on_conflict": { "constraint": [ - 563 + 568 ], "update_columns": [ - 589 + 594 ], "where": [ - 562 + 567 ], "__typename": [ - 80 + 84 ] }, "draft_games_order_by": { "access": [ - 3094 + 3373 ], "capacity": [ - 3094 + 3373 ], "captain_selection": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "current_pick_lineup": [ - 3094 + 3373 ], "draft_order": [ - 3094 + 3373 ], "e_draft_game_captain_selection": [ - 670 + 675 ], "e_draft_game_draft_order": [ - 691 + 696 ], "e_draft_game_mode": [ - 712 + 717 ], "e_draft_game_status": [ - 754 + 759 ], "e_lobby_access": [ - 961 + 1026 ], "expires_at": [ - 3094 + 3373 ], "host": [ - 4065 + 4344 ], "host_steam_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "inner_squad": [ - 3094 + 3373 ], "invite_code": [ - 3094 + 3373 ], "is_organizer": [ - 3094 + 3373 ], "map_pool": [ - 2384 + 2641 ], "map_pool_id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "max_elo": [ - 3094 + 3373 ], "min_elo": [ - 3094 + 3373 ], "mode": [ - 3094 + 3373 ], "options": [ - 2771 + 3037 ], "pattern": [ - 3094 + 3373 ], "pick_deadline": [ - 3094 + 3373 ], "picks_aggregate": [ - 468 + 473 ], "players_aggregate": [ - 513 + 518 ], "regions": [ - 3094 + 3373 ], "require_approval": [ - 3094 + 3373 ], "scheduled_at": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "team_1": [ - 4643 + 4927 ], "team_1_id": [ - 3094 + 3373 ], "team_2": [ - 4643 + 4927 ], "team_2_id": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_games_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "draft_games_select_column": {}, @@ -12055,17108 +12207,21704 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 953 + 1018 ], "capacity": [ - 40 + 41 ], "captain_selection": [ - 662 + 667 ], "created_at": [ - 4670 + 4954 ], "current_pick_lineup": [ - 40 + 41 ], "draft_order": [ - 683 + 688 ], "expires_at": [ - 4670 + 4954 ], "host_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "inner_squad": [ - 5 + 6 ], "invite_code": [ - 5170 + 5454 ], "map_pool_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "mode": [ - 704 + 709 ], "pick_deadline": [ - 4670 + 4954 ], "regions": [ - 80 + 84 ], "require_approval": [ - 5 + 6 ], "scheduled_at": [ - 4670 + 4954 ], "status": [ - 746 + 751 ], "team_1_id": [ - 5170 + 5454 ], "team_2_id": [ - 5170 + 5454 ], "type": [ - 1117 + 1182 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "draft_games_stddev_fields": { "capacity": [ - 31 + 32 ], "current_pick_lineup": [ - 31 + 32 ], "host_steam_id": [ - 31 + 32 ], "max_elo": [ - 31 + 32 ], "min_elo": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_games_stddev_order_by": { "capacity": [ - 3094 + 3373 ], "current_pick_lineup": [ - 3094 + 3373 ], "host_steam_id": [ - 3094 + 3373 ], "max_elo": [ - 3094 + 3373 ], "min_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_games_stddev_pop_fields": { "capacity": [ - 31 + 32 ], "current_pick_lineup": [ - 31 + 32 ], "host_steam_id": [ - 31 + 32 ], "max_elo": [ - 31 + 32 ], "min_elo": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_games_stddev_pop_order_by": { "capacity": [ - 3094 + 3373 ], "current_pick_lineup": [ - 3094 + 3373 ], "host_steam_id": [ - 3094 + 3373 ], "max_elo": [ - 3094 + 3373 ], "min_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_games_stddev_samp_fields": { "capacity": [ - 31 + 32 ], "current_pick_lineup": [ - 31 + 32 ], "host_steam_id": [ - 31 + 32 ], "max_elo": [ - 31 + 32 ], "min_elo": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_games_stddev_samp_order_by": { "capacity": [ - 3094 + 3373 ], "current_pick_lineup": [ - 3094 + 3373 ], "host_steam_id": [ - 3094 + 3373 ], "max_elo": [ - 3094 + 3373 ], "min_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_games_stream_cursor_input": { "initial_value": [ - 586 + 591 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "draft_games_stream_cursor_value_input": { "access": [ - 953 + 1018 ], "capacity": [ - 40 + 41 ], "captain_selection": [ - 662 + 667 ], "created_at": [ - 4670 + 4954 ], "current_pick_lineup": [ - 40 + 41 ], "draft_order": [ - 683 + 688 ], "expires_at": [ - 4670 + 4954 ], "host_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "inner_squad": [ - 5 + 6 ], "invite_code": [ - 5170 + 5454 ], "map_pool_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "mode": [ - 704 + 709 ], "pick_deadline": [ - 4670 + 4954 ], "regions": [ - 80 + 84 ], "require_approval": [ - 5 + 6 ], "scheduled_at": [ - 4670 + 4954 ], "status": [ - 746 + 751 ], "team_1_id": [ - 5170 + 5454 ], "team_2_id": [ - 5170 + 5454 ], "type": [ - 1117 + 1182 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "draft_games_sum_fields": { "capacity": [ - 40 + 41 ], "current_pick_lineup": [ - 40 + 41 ], "host_steam_id": [ - 264 + 269 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "draft_games_sum_order_by": { "capacity": [ - 3094 + 3373 ], "current_pick_lineup": [ - 3094 + 3373 ], "host_steam_id": [ - 3094 + 3373 ], "max_elo": [ - 3094 + 3373 ], "min_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_games_update_column": {}, "draft_games_updates": { "_inc": [ - 564 + 569 ], "_set": [ - 578 + 583 ], "where": [ - 562 + 567 ], "__typename": [ - 80 + 84 ] }, "draft_games_var_pop_fields": { "capacity": [ - 31 + 32 ], "current_pick_lineup": [ - 31 + 32 ], "host_steam_id": [ - 31 + 32 ], "max_elo": [ - 31 + 32 ], "min_elo": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_games_var_pop_order_by": { "capacity": [ - 3094 + 3373 ], "current_pick_lineup": [ - 3094 + 3373 ], "host_steam_id": [ - 3094 + 3373 ], "max_elo": [ - 3094 + 3373 ], "min_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_games_var_samp_fields": { "capacity": [ - 31 + 32 ], "current_pick_lineup": [ - 31 + 32 ], "host_steam_id": [ - 31 + 32 ], "max_elo": [ - 31 + 32 ], "min_elo": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_games_var_samp_order_by": { "capacity": [ - 3094 + 3373 ], "current_pick_lineup": [ - 3094 + 3373 ], "host_steam_id": [ - 3094 + 3373 ], "max_elo": [ - 3094 + 3373 ], "min_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "draft_games_variance_fields": { "capacity": [ - 31 + 32 ], "current_pick_lineup": [ - 31 + 32 ], "host_steam_id": [ - 31 + 32 ], "max_elo": [ - 31 + 32 ], "min_elo": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "draft_games_variance_order_by": { "capacity": [ - 3094 + 3373 ], "current_pick_lineup": [ - 3094 + 3373 ], "host_steam_id": [ - 3094 + 3373 ], "max_elo": [ - 3094 + 3373 ], "min_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_award_sources": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_aggregate": { "aggregate": [ - 599 + 604 ], "nodes": [ - 597 + 602 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 611, + 616, "[e_award_sources_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 605 + 610 ], "min": [ - 606 + 611 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_bool_exp": { "_and": [ - 600 + 605 ], "_not": [ - 600 + 605 ], "_or": [ - 600 + 605 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_constraint": {}, "e_award_sources_enum": {}, "e_award_sources_enum_comparison_exp": { "_eq": [ - 602 + 607 ], "_in": [ - 602 + 607 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 602 + 607 ], "_nin": [ - 602 + 607 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 597 + 602 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_on_conflict": { "constraint": [ - 601 + 606 ], "update_columns": [ - 615 + 620 ], "where": [ - 600 + 605 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_select_column": {}, "e_award_sources_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_stream_cursor_input": { "initial_value": [ - 614 + 619 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_award_sources_update_column": {}, "e_award_sources_updates": { "_set": [ - 612 + 617 ], "where": [ - 600 + 605 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_aggregate": { "aggregate": [ - 619 + 624 ], "nodes": [ - 617 + 622 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 631, + 636, "[e_award_tiers_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 625 + 630 ], "min": [ - 626 + 631 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_bool_exp": { "_and": [ - 620 + 625 ], "_not": [ - 620 + 625 ], "_or": [ - 620 + 625 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_constraint": {}, "e_award_tiers_enum": {}, "e_award_tiers_enum_comparison_exp": { "_eq": [ - 622 + 627 ], "_in": [ - 622 + 627 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 622 + 627 ], "_nin": [ - 622 + 627 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 617 + 622 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_on_conflict": { "constraint": [ - 621 + 626 ], "update_columns": [ - 635 + 640 ], "where": [ - 620 + 625 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_select_column": {}, "e_award_tiers_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_stream_cursor_input": { "initial_value": [ - 634 + 639 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_award_tiers_update_column": {}, "e_award_tiers_updates": { "_set": [ - 632 + 637 ], "where": [ - 620 + 625 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_aggregate": { "aggregate": [ - 639 + 644 ], "nodes": [ - 637 + 642 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 651, + 656, "[e_check_in_settings_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 645 + 650 ], "min": [ - 646 + 651 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_bool_exp": { "_and": [ - 640 + 645 ], "_not": [ - 640 + 645 ], "_or": [ - 640 + 645 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_constraint": {}, "e_check_in_settings_enum": {}, "e_check_in_settings_enum_comparison_exp": { "_eq": [ - 642 + 647 ], "_in": [ - 642 + 647 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 642 + 647 ], "_nin": [ - 642 + 647 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 637 + 642 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_on_conflict": { "constraint": [ - 641 + 646 ], "update_columns": [ - 655 + 660 ], "where": [ - 640 + 645 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_select_column": {}, "e_check_in_settings_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_stream_cursor_input": { "initial_value": [ - 654 + 659 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_check_in_settings_update_column": {}, "e_check_in_settings_updates": { "_set": [ - 652 + 657 ], "where": [ - 640 + 645 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_aggregate": { "aggregate": [ - 659 + 664 ], "nodes": [ - 657 + 662 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 672, + 677, "[e_draft_game_captain_selection_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 665 + 670 ], "min": [ - 666 + 671 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_bool_exp": { "_and": [ - 660 + 665 ], "_not": [ - 660 + 665 ], "_or": [ - 660 + 665 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_constraint": {}, "e_draft_game_captain_selection_enum": {}, "e_draft_game_captain_selection_enum_comparison_exp": { "_eq": [ - 662 + 667 ], "_in": [ - 662 + 667 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 662 + 667 ], "_nin": [ - 662 + 667 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 657 + 662 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_obj_rel_insert_input": { "data": [ - 664 + 669 ], "on_conflict": [ - 669 + 674 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_on_conflict": { "constraint": [ - 661 + 666 ], "update_columns": [ - 676 + 681 ], "where": [ - 660 + 665 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_select_column": {}, "e_draft_game_captain_selection_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_stream_cursor_input": { "initial_value": [ - 675 + 680 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_captain_selection_update_column": {}, "e_draft_game_captain_selection_updates": { "_set": [ - 673 + 678 ], "where": [ - 660 + 665 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_aggregate": { "aggregate": [ - 680 + 685 ], "nodes": [ - 678 + 683 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 693, + 698, "[e_draft_game_draft_order_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 686 + 691 ], "min": [ - 687 + 692 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_bool_exp": { "_and": [ - 681 + 686 ], "_not": [ - 681 + 686 ], "_or": [ - 681 + 686 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_constraint": {}, "e_draft_game_draft_order_enum": {}, "e_draft_game_draft_order_enum_comparison_exp": { "_eq": [ - 683 + 688 ], "_in": [ - 683 + 688 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 683 + 688 ], "_nin": [ - 683 + 688 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 678 + 683 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_obj_rel_insert_input": { "data": [ - 685 + 690 ], "on_conflict": [ - 690 + 695 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_on_conflict": { "constraint": [ - 682 + 687 ], "update_columns": [ - 697 + 702 ], "where": [ - 681 + 686 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_select_column": {}, "e_draft_game_draft_order_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_stream_cursor_input": { "initial_value": [ - 696 + 701 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_draft_order_update_column": {}, "e_draft_game_draft_order_updates": { "_set": [ - 694 + 699 ], "where": [ - 681 + 686 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_aggregate": { "aggregate": [ - 701 + 706 ], "nodes": [ - 699 + 704 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 714, + 719, "[e_draft_game_mode_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 707 + 712 ], "min": [ - 708 + 713 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_bool_exp": { "_and": [ - 702 + 707 ], "_not": [ - 702 + 707 ], "_or": [ - 702 + 707 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_constraint": {}, "e_draft_game_mode_enum": {}, "e_draft_game_mode_enum_comparison_exp": { "_eq": [ - 704 + 709 ], "_in": [ - 704 + 709 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 704 + 709 ], "_nin": [ - 704 + 709 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 699 + 704 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_obj_rel_insert_input": { "data": [ - 706 + 711 ], "on_conflict": [ - 711 + 716 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_on_conflict": { "constraint": [ - 703 + 708 ], "update_columns": [ - 718 + 723 ], "where": [ - 702 + 707 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_select_column": {}, "e_draft_game_mode_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_stream_cursor_input": { "initial_value": [ - 717 + 722 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_mode_update_column": {}, "e_draft_game_mode_updates": { "_set": [ - 715 + 720 ], "where": [ - 702 + 707 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_aggregate": { "aggregate": [ - 722 + 727 ], "nodes": [ - 720 + 725 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 735, + 740, "[e_draft_game_player_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 728 + 733 ], "min": [ - 729 + 734 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_bool_exp": { "_and": [ - 723 + 728 ], "_not": [ - 723 + 728 ], "_or": [ - 723 + 728 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_constraint": {}, "e_draft_game_player_status_enum": {}, "e_draft_game_player_status_enum_comparison_exp": { "_eq": [ - 725 + 730 ], "_in": [ - 725 + 730 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 725 + 730 ], "_nin": [ - 725 + 730 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 720 + 725 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_obj_rel_insert_input": { "data": [ - 727 + 732 ], "on_conflict": [ - 732 + 737 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_on_conflict": { "constraint": [ - 724 + 729 ], "update_columns": [ - 739 + 744 ], "where": [ - 723 + 728 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_select_column": {}, "e_draft_game_player_status_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_stream_cursor_input": { "initial_value": [ - 738 + 743 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_player_status_update_column": {}, "e_draft_game_player_status_updates": { "_set": [ - 736 + 741 ], "where": [ - 723 + 728 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_aggregate": { "aggregate": [ - 743 + 748 ], "nodes": [ - 741 + 746 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 756, + 761, "[e_draft_game_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 749 + 754 ], "min": [ - 750 + 755 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_bool_exp": { "_and": [ - 744 + 749 ], "_not": [ - 744 + 749 ], "_or": [ - 744 + 749 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_constraint": {}, "e_draft_game_status_enum": {}, "e_draft_game_status_enum_comparison_exp": { "_eq": [ - 746 + 751 ], "_in": [ - 746 + 751 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 746 + 751 ], "_nin": [ - 746 + 751 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 741 + 746 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_obj_rel_insert_input": { "data": [ - 748 + 753 ], "on_conflict": [ - 753 + 758 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_on_conflict": { "constraint": [ - 745 + 750 ], "update_columns": [ - 760 + 765 ], "where": [ - 744 + 749 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_select_column": {}, "e_draft_game_status_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_stream_cursor_input": { "initial_value": [ - 759 + 764 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_draft_game_status_update_column": {}, "e_draft_game_status_updates": { "_set": [ - 757 + 762 ], "where": [ - 744 + 749 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_aggregate": { "aggregate": [ - 764 + 769 ], "nodes": [ - 762 + 767 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 776, + 781, "[e_event_media_access_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 770 + 775 ], "min": [ - 771 + 776 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_bool_exp": { "_and": [ - 765 + 770 ], "_not": [ - 765 + 770 ], "_or": [ - 765 + 770 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_constraint": {}, "e_event_media_access_enum": {}, "e_event_media_access_enum_comparison_exp": { "_eq": [ - 767 + 772 ], "_in": [ - 767 + 772 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 767 + 772 ], "_nin": [ - 767 + 772 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 762 + 767 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_on_conflict": { "constraint": [ - 766 + 771 ], "update_columns": [ - 780 + 785 ], "where": [ - 765 + 770 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_select_column": {}, "e_event_media_access_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_stream_cursor_input": { "initial_value": [ - 779 + 784 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_event_media_access_update_column": {}, "e_event_media_access_updates": { "_set": [ - 777 + 782 ], "where": [ - 765 + 770 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_aggregate": { "aggregate": [ - 784 + 789 ], "nodes": [ - 782 + 787 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 796, + 801, "[e_event_visibility_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 790 + 795 ], "min": [ - 791 + 796 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_bool_exp": { "_and": [ - 785 + 790 ], "_not": [ - 785 + 790 ], "_or": [ - 785 + 790 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_constraint": {}, "e_event_visibility_enum": {}, "e_event_visibility_enum_comparison_exp": { "_eq": [ - 787 + 792 ], "_in": [ - 787 + 792 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 787 + 792 ], "_nin": [ - 787 + 792 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 782 + 787 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_on_conflict": { "constraint": [ - 786 + 791 ], "update_columns": [ - 800 + 805 ], "where": [ - 785 + 790 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_select_column": {}, "e_event_visibility_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_stream_cursor_input": { "initial_value": [ - 799 + 804 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_event_visibility_update_column": {}, "e_event_visibility_updates": { "_set": [ - 797 + 802 ], "where": [ - 785 + 790 ], "__typename": [ - 80 + 84 ] }, "e_friend_status": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_aggregate": { "aggregate": [ - 804 + 809 ], "nodes": [ - 802 + 807 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 817, + 822, "[e_friend_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 810 + 815 ], "min": [ - 811 + 816 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_bool_exp": { "_and": [ - 805 + 810 ], "_not": [ - 805 + 810 ], "_or": [ - 805 + 810 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_constraint": {}, "e_friend_status_enum": {}, "e_friend_status_enum_comparison_exp": { "_eq": [ - 807 + 812 ], "_in": [ - 807 + 812 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 807 + 812 ], "_nin": [ - 807 + 812 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 802 + 807 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_obj_rel_insert_input": { "data": [ - 809 + 814 ], "on_conflict": [ - 814 + 819 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_on_conflict": { "constraint": [ - 806 + 811 ], "update_columns": [ - 821 + 826 ], "where": [ - 805 + 810 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_select_column": {}, "e_friend_status_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 820 + 825 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 818 + 823 ], "where": [ - 805 + 810 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_aggregate": { "aggregate": [ - 825 + 830 ], "nodes": [ - 823 + 828 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 837, + 842, "[e_game_cfg_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 831 + 836 ], "min": [ - 832 + 837 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_bool_exp": { "_and": [ - 826 + 831 ], "_not": [ - 826 + 831 ], "_or": [ - 826 + 831 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_constraint": {}, "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 828 + 833 ], "_in": [ - 828 + 833 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 828 + 833 ], "_nin": [ - 828 + 833 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 823 + 828 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_on_conflict": { "constraint": [ - 827 + 832 ], "update_columns": [ - 841 + 846 ], "where": [ - 826 + 831 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_select_column": {}, "e_game_cfg_types_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 840 + 845 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 838 + 843 ], "where": [ - 826 + 831 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses": { + "e_game_plugin_channels": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_aggregate": { + "e_game_plugin_channels_aggregate": { "aggregate": [ - 845 + 850 ], "nodes": [ - 843 + 848 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_aggregate_fields": { + "e_game_plugin_channels_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 858, - "[e_game_server_node_statuses_select_column!]" + 862, + "[e_game_plugin_channels_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 851 + 856 ], "min": [ - 852 + 857 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_bool_exp": { + "e_game_plugin_channels_bool_exp": { "_and": [ - 846 + 851 ], "_not": [ - 846 + 851 ], "_or": [ - 846 + 851 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_constraint": {}, - "e_game_server_node_statuses_enum": {}, - "e_game_server_node_statuses_enum_comparison_exp": { + "e_game_plugin_channels_constraint": {}, + "e_game_plugin_channels_enum": {}, + "e_game_plugin_channels_enum_comparison_exp": { "_eq": [ - 848 + 853 ], "_in": [ - 848 + 853 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 848 + 853 ], "_nin": [ - 848 + 853 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_insert_input": { + "e_game_plugin_channels_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_max_fields": { + "e_game_plugin_channels_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_min_fields": { + "e_game_plugin_channels_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_mutation_response": { + "e_game_plugin_channels_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 843 - ], - "__typename": [ - 80 - ] - }, - "e_game_server_node_statuses_obj_rel_insert_input": { - "data": [ - 850 - ], - "on_conflict": [ - 855 + 848 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_on_conflict": { + "e_game_plugin_channels_on_conflict": { "constraint": [ - 847 + 852 ], "update_columns": [ - 862 + 866 ], "where": [ - 846 + 851 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_order_by": { + "e_game_plugin_channels_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_pk_columns_input": { + "e_game_plugin_channels_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_select_column": {}, - "e_game_server_node_statuses_set_input": { + "e_game_plugin_channels_select_column": {}, + "e_game_plugin_channels_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_stream_cursor_input": { + "e_game_plugin_channels_stream_cursor_input": { "initial_value": [ - 861 + 865 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_stream_cursor_value_input": { + "e_game_plugin_channels_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_game_server_node_statuses_update_column": {}, - "e_game_server_node_statuses_updates": { + "e_game_plugin_channels_update_column": {}, + "e_game_plugin_channels_updates": { "_set": [ - 859 + 863 ], "where": [ - 846 + 851 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types": { + "e_game_plugin_install_statuses": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_aggregate": { + "e_game_plugin_install_statuses_aggregate": { "aggregate": [ - 866 + 870 ], "nodes": [ - 864 + 868 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_aggregate_fields": { + "e_game_plugin_install_statuses_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 879, - "[e_league_movement_types_select_column!]" + 882, + "[e_game_plugin_install_statuses_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 872 + 876 ], "min": [ - 873 + 877 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_bool_exp": { + "e_game_plugin_install_statuses_bool_exp": { "_and": [ - 867 + 871 ], "_not": [ - 867 + 871 ], "_or": [ - 867 + 871 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_constraint": {}, - "e_league_movement_types_enum": {}, - "e_league_movement_types_enum_comparison_exp": { + "e_game_plugin_install_statuses_constraint": {}, + "e_game_plugin_install_statuses_enum": {}, + "e_game_plugin_install_statuses_enum_comparison_exp": { "_eq": [ - 869 + 873 ], "_in": [ - 869 + 873 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 869 + 873 ], "_nin": [ - 869 + 873 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_insert_input": { + "e_game_plugin_install_statuses_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_max_fields": { + "e_game_plugin_install_statuses_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_min_fields": { + "e_game_plugin_install_statuses_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_mutation_response": { + "e_game_plugin_install_statuses_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 864 - ], - "__typename": [ - 80 - ] - }, - "e_league_movement_types_obj_rel_insert_input": { - "data": [ - 871 - ], - "on_conflict": [ - 876 + 868 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_on_conflict": { + "e_game_plugin_install_statuses_on_conflict": { "constraint": [ - 868 + 872 ], "update_columns": [ - 883 + 886 ], "where": [ - 867 + 871 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_order_by": { + "e_game_plugin_install_statuses_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_pk_columns_input": { + "e_game_plugin_install_statuses_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_select_column": {}, - "e_league_movement_types_set_input": { + "e_game_plugin_install_statuses_select_column": {}, + "e_game_plugin_install_statuses_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_stream_cursor_input": { + "e_game_plugin_install_statuses_stream_cursor_input": { "initial_value": [ - 882 + 885 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_stream_cursor_value_input": { + "e_game_plugin_install_statuses_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_movement_types_update_column": {}, - "e_league_movement_types_updates": { + "e_game_plugin_install_statuses_update_column": {}, + "e_game_plugin_install_statuses_updates": { "_set": [ - 880 + 883 ], "where": [ - 867 + 871 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses": { + "e_game_plugin_kinds": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_aggregate": { + "e_game_plugin_kinds_aggregate": { "aggregate": [ - 887 + 890 ], "nodes": [ - 885 + 888 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_aggregate_fields": { + "e_game_plugin_kinds_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 900, - "[e_league_proposal_statuses_select_column!]" + 902, + "[e_game_plugin_kinds_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 893 + 896 ], "min": [ - 894 + 897 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_bool_exp": { + "e_game_plugin_kinds_bool_exp": { "_and": [ - 888 + 891 ], "_not": [ - 888 + 891 ], "_or": [ - 888 + 891 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_constraint": {}, - "e_league_proposal_statuses_enum": {}, - "e_league_proposal_statuses_enum_comparison_exp": { + "e_game_plugin_kinds_constraint": {}, + "e_game_plugin_kinds_enum": {}, + "e_game_plugin_kinds_enum_comparison_exp": { "_eq": [ - 890 + 893 ], "_in": [ - 890 + 893 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 890 + 893 ], "_nin": [ - 890 + 893 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_insert_input": { + "e_game_plugin_kinds_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_max_fields": { + "e_game_plugin_kinds_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_min_fields": { + "e_game_plugin_kinds_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_mutation_response": { + "e_game_plugin_kinds_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 885 - ], - "__typename": [ - 80 - ] - }, - "e_league_proposal_statuses_obj_rel_insert_input": { - "data": [ - 892 - ], - "on_conflict": [ - 897 + 888 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_on_conflict": { + "e_game_plugin_kinds_on_conflict": { "constraint": [ - 889 + 892 ], "update_columns": [ - 904 + 906 ], "where": [ - 888 + 891 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_order_by": { + "e_game_plugin_kinds_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_pk_columns_input": { + "e_game_plugin_kinds_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_select_column": {}, - "e_league_proposal_statuses_set_input": { + "e_game_plugin_kinds_select_column": {}, + "e_game_plugin_kinds_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_stream_cursor_input": { + "e_game_plugin_kinds_stream_cursor_input": { "initial_value": [ - 903 + 905 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_stream_cursor_value_input": { + "e_game_plugin_kinds_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_proposal_statuses_update_column": {}, - "e_league_proposal_statuses_updates": { + "e_game_plugin_kinds_update_column": {}, + "e_game_plugin_kinds_updates": { "_set": [ - 901 + 903 ], "where": [ - 888 + 891 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses": { + "e_game_server_node_statuses": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_aggregate": { + "e_game_server_node_statuses_aggregate": { "aggregate": [ - 908 + 910 ], "nodes": [ - 906 + 908 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_aggregate_fields": { + "e_game_server_node_statuses_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 921, - "[e_league_registration_statuses_select_column!]" + 923, + "[e_game_server_node_statuses_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 914 + 916 ], "min": [ - 915 + 917 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_bool_exp": { + "e_game_server_node_statuses_bool_exp": { "_and": [ - 909 + 911 ], "_not": [ - 909 + 911 ], "_or": [ - 909 + 911 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_constraint": {}, - "e_league_registration_statuses_enum": {}, - "e_league_registration_statuses_enum_comparison_exp": { + "e_game_server_node_statuses_constraint": {}, + "e_game_server_node_statuses_enum": {}, + "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 911 + 913 ], "_in": [ - 911 + 913 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 911 + 913 ], "_nin": [ - 911 + 913 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_insert_input": { + "e_game_server_node_statuses_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_max_fields": { + "e_game_server_node_statuses_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_min_fields": { + "e_game_server_node_statuses_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_mutation_response": { + "e_game_server_node_statuses_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 906 + 908 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_obj_rel_insert_input": { + "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 913 + 915 ], "on_conflict": [ - 918 + 920 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_on_conflict": { + "e_game_server_node_statuses_on_conflict": { "constraint": [ - 910 + 912 ], "update_columns": [ - 925 + 927 ], "where": [ - 909 + 911 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_order_by": { + "e_game_server_node_statuses_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_pk_columns_input": { + "e_game_server_node_statuses_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_select_column": {}, - "e_league_registration_statuses_set_input": { + "e_game_server_node_statuses_select_column": {}, + "e_game_server_node_statuses_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_stream_cursor_input": { + "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 924 + 926 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_stream_cursor_value_input": { + "e_game_server_node_statuses_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_registration_statuses_update_column": {}, - "e_league_registration_statuses_updates": { + "e_game_server_node_statuses_update_column": {}, + "e_game_server_node_statuses_updates": { "_set": [ - 922 + 924 ], "where": [ - 909 + 911 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses": { + "e_league_movement_types": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_aggregate": { + "e_league_movement_types_aggregate": { "aggregate": [ - 929 + 931 ], "nodes": [ - 927 + 929 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_aggregate_fields": { + "e_league_movement_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 942, - "[e_league_season_statuses_select_column!]" + 944, + "[e_league_movement_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 935 + 937 ], "min": [ - 936 + 938 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_bool_exp": { + "e_league_movement_types_bool_exp": { "_and": [ - 930 + 932 ], "_not": [ - 930 + 932 ], "_or": [ - 930 + 932 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_constraint": {}, - "e_league_season_statuses_enum": {}, - "e_league_season_statuses_enum_comparison_exp": { + "e_league_movement_types_constraint": {}, + "e_league_movement_types_enum": {}, + "e_league_movement_types_enum_comparison_exp": { "_eq": [ - 932 + 934 ], "_in": [ - 932 + 934 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 932 + 934 ], "_nin": [ - 932 + 934 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_insert_input": { + "e_league_movement_types_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_max_fields": { + "e_league_movement_types_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_min_fields": { + "e_league_movement_types_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_mutation_response": { + "e_league_movement_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 927 + 929 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_obj_rel_insert_input": { + "e_league_movement_types_obj_rel_insert_input": { "data": [ - 934 + 936 ], "on_conflict": [ - 939 + 941 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_on_conflict": { + "e_league_movement_types_on_conflict": { "constraint": [ - 931 + 933 ], "update_columns": [ - 946 + 948 ], "where": [ - 930 + 932 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_order_by": { + "e_league_movement_types_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_pk_columns_input": { + "e_league_movement_types_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_select_column": {}, - "e_league_season_statuses_set_input": { + "e_league_movement_types_select_column": {}, + "e_league_movement_types_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_stream_cursor_input": { + "e_league_movement_types_stream_cursor_input": { "initial_value": [ - 945 + 947 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_stream_cursor_value_input": { + "e_league_movement_types_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_league_season_statuses_update_column": {}, - "e_league_season_statuses_updates": { + "e_league_movement_types_update_column": {}, + "e_league_movement_types_updates": { "_set": [ - 943 + 945 ], "where": [ - 930 + 932 ], "__typename": [ - 80 + 84 ] }, - "e_lobby_access": { + "e_league_proposal_statuses": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, - "e_lobby_access_aggregate": { + "e_league_proposal_statuses_aggregate": { "aggregate": [ - 950 + 952 ], "nodes": [ - 948 + 950 ], "__typename": [ - 80 + 84 ] }, - "e_lobby_access_aggregate_fields": { + "e_league_proposal_statuses_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 963, - "[e_lobby_access_select_column!]" + 965, + "[e_league_proposal_statuses_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 956 + 958 ], "min": [ - 957 + 959 ], "__typename": [ - 80 + 84 ] }, - "e_lobby_access_bool_exp": { + "e_league_proposal_statuses_bool_exp": { "_and": [ - 951 + 953 ], "_not": [ - 951 + 953 ], "_or": [ - 951 + 953 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, - "e_lobby_access_constraint": {}, - "e_lobby_access_enum": {}, - "e_lobby_access_enum_comparison_exp": { - "_eq": [ - 953 + "e_league_proposal_statuses_constraint": {}, + "e_league_proposal_statuses_enum": {}, + "e_league_proposal_statuses_enum_comparison_exp": { + "_eq": [ + 955 ], "_in": [ - 953 + 955 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 953 + 955 ], "_nin": [ + 955 + ], + "__typename": [ + 84 + ] + }, + "e_league_proposal_statuses_insert_input": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_proposal_statuses_max_fields": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_proposal_statuses_min_fields": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_proposal_statuses_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 950 + ], + "__typename": [ + 84 + ] + }, + "e_league_proposal_statuses_obj_rel_insert_input": { + "data": [ + 957 + ], + "on_conflict": [ + 962 + ], + "__typename": [ + 84 + ] + }, + "e_league_proposal_statuses_on_conflict": { + "constraint": [ + 954 + ], + "update_columns": [ + 969 + ], + "where": [ 953 ], "__typename": [ - 80 + 84 + ] + }, + "e_league_proposal_statuses_order_by": { + "description": [ + 3373 + ], + "value": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "e_league_proposal_statuses_pk_columns_input": { + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_proposal_statuses_select_column": {}, + "e_league_proposal_statuses_set_input": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_proposal_statuses_stream_cursor_input": { + "initial_value": [ + 968 + ], + "ordering": [ + 352 + ], + "__typename": [ + 84 + ] + }, + "e_league_proposal_statuses_stream_cursor_value_input": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_proposal_statuses_update_column": {}, + "e_league_proposal_statuses_updates": { + "_set": [ + 966 + ], + "where": [ + 953 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_aggregate": { + "aggregate": [ + 973 + ], + "nodes": [ + 971 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 986, + "[e_league_registration_statuses_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 979 + ], + "min": [ + 980 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_bool_exp": { + "_and": [ + 974 + ], + "_not": [ + 974 + ], + "_or": [ + 974 + ], + "description": [ + 86 + ], + "value": [ + 86 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_constraint": {}, + "e_league_registration_statuses_enum": {}, + "e_league_registration_statuses_enum_comparison_exp": { + "_eq": [ + 976 + ], + "_in": [ + 976 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 976 + ], + "_nin": [ + 976 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_insert_input": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_max_fields": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_min_fields": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 971 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_obj_rel_insert_input": { + "data": [ + 978 + ], + "on_conflict": [ + 983 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_on_conflict": { + "constraint": [ + 975 + ], + "update_columns": [ + 990 + ], + "where": [ + 974 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_order_by": { + "description": [ + 3373 + ], + "value": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_pk_columns_input": { + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_select_column": {}, + "e_league_registration_statuses_set_input": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_stream_cursor_input": { + "initial_value": [ + 989 + ], + "ordering": [ + 352 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_stream_cursor_value_input": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_registration_statuses_update_column": {}, + "e_league_registration_statuses_updates": { + "_set": [ + 987 + ], + "where": [ + 974 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_aggregate": { + "aggregate": [ + 994 + ], + "nodes": [ + 992 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1007, + "[e_league_season_statuses_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1000 + ], + "min": [ + 1001 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_bool_exp": { + "_and": [ + 995 + ], + "_not": [ + 995 + ], + "_or": [ + 995 + ], + "description": [ + 86 + ], + "value": [ + 86 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_constraint": {}, + "e_league_season_statuses_enum": {}, + "e_league_season_statuses_enum_comparison_exp": { + "_eq": [ + 997 + ], + "_in": [ + 997 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 997 + ], + "_nin": [ + 997 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_insert_input": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_max_fields": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_min_fields": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 992 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_obj_rel_insert_input": { + "data": [ + 999 + ], + "on_conflict": [ + 1004 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_on_conflict": { + "constraint": [ + 996 + ], + "update_columns": [ + 1011 + ], + "where": [ + 995 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_order_by": { + "description": [ + 3373 + ], + "value": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_pk_columns_input": { + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_select_column": {}, + "e_league_season_statuses_set_input": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_stream_cursor_input": { + "initial_value": [ + 1010 + ], + "ordering": [ + 352 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_stream_cursor_value_input": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_league_season_statuses_update_column": {}, + "e_league_season_statuses_updates": { + "_set": [ + 1008 + ], + "where": [ + 995 + ], + "__typename": [ + 84 + ] + }, + "e_lobby_access": { + "description": [ + 84 + ], + "value": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "e_lobby_access_aggregate": { + "aggregate": [ + 1015 + ], + "nodes": [ + 1013 + ], + "__typename": [ + 84 + ] + }, + "e_lobby_access_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1028, + "[e_lobby_access_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1021 + ], + "min": [ + 1022 + ], + "__typename": [ + 84 + ] + }, + "e_lobby_access_bool_exp": { + "_and": [ + 1016 + ], + "_not": [ + 1016 + ], + "_or": [ + 1016 + ], + "description": [ + 86 + ], + "value": [ + 86 + ], + "__typename": [ + 84 + ] + }, + "e_lobby_access_constraint": {}, + "e_lobby_access_enum": {}, + "e_lobby_access_enum_comparison_exp": { + "_eq": [ + 1018 + ], + "_in": [ + 1018 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1018 + ], + "_nin": [ + 1018 + ], + "__typename": [ + 84 ] }, "e_lobby_access_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_lobby_access_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_lobby_access_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_lobby_access_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 948 + 1013 ], "__typename": [ - 80 + 84 ] }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 955 + 1020 ], "on_conflict": [ - 960 + 1025 ], "__typename": [ - 80 + 84 ] }, "e_lobby_access_on_conflict": { "constraint": [ - 952 + 1017 ], "update_columns": [ - 967 + 1032 ], "where": [ - 951 + 1016 ], "__typename": [ - 80 + 84 ] }, "e_lobby_access_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_lobby_access_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_lobby_access_select_column": {}, "e_lobby_access_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 966 + 1031 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_lobby_access_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 964 + 1029 ], "where": [ - 951 + 1016 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_aggregate": { "aggregate": [ - 971 + 1036 ], "nodes": [ - 969 + 1034 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 983, + 1048, "[e_lobby_player_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 977 + 1042 ], "min": [ - 978 + 1043 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_bool_exp": { "_and": [ - 972 + 1037 ], "_not": [ - 972 + 1037 ], "_or": [ - 972 + 1037 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_constraint": {}, "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 974 + 1039 ], "_in": [ - 974 + 1039 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 974 + 1039 ], "_nin": [ - 974 + 1039 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 969 + 1034 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_on_conflict": { "constraint": [ - 973 + 1038 ], "update_columns": [ - 987 + 1052 ], "where": [ - 972 + 1037 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_select_column": {}, "e_lobby_player_status_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 986 + 1051 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 984 + 1049 ], "where": [ - 972 + 1037 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_aggregate": { "aggregate": [ - 991 + 1056 ], "nodes": [ - 989 + 1054 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1004, + 1069, "[e_map_pool_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 997 + 1062 ], "min": [ - 998 + 1063 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_bool_exp": { "_and": [ - 992 + 1057 ], "_not": [ - 992 + 1057 ], "_or": [ - 992 + 1057 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_constraint": {}, "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 994 + 1059 ], "_in": [ - 994 + 1059 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 994 + 1059 ], "_nin": [ - 994 + 1059 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 989 + 1054 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 996 + 1061 ], "on_conflict": [ - 1001 + 1066 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_on_conflict": { "constraint": [ - 993 + 1058 ], "update_columns": [ - 1008 + 1073 ], "where": [ - 992 + 1057 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_select_column": {}, "e_map_pool_types_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 1007 + 1072 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 1005 + 1070 ], "where": [ - 992 + 1057 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility": { "description": [ - 80 + 84 ], "match_clips": [ - 2421, + 2678, { "distinct_on": [ - 2443, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2441, + 2698, "[match_clips_order_by!]" ], "where": [ - 2430 + 2687 ] } ], "match_clips_aggregate": [ - 2422, + 2679, { "distinct_on": [ - 2443, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2441, + 2698, "[match_clips_order_by!]" ], "where": [ - 2430 + 2687 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 1012 + 1077 ], "nodes": [ - 1010 + 1075 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1024, + 1089, "[e_match_clip_visibility_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1018 + 1083 ], "min": [ - 1019 + 1084 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_bool_exp": { "_and": [ - 1013 + 1078 ], "_not": [ - 1013 + 1078 ], "_or": [ - 1013 + 1078 ], "description": [ - 82 + 86 ], "match_clips": [ - 2430 + 2687 ], "match_clips_aggregate": [ - 2423 + 2680 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_constraint": {}, "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 1015 + 1080 ], "_in": [ - 1015 + 1080 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1015 + 1080 ], "_nin": [ - 1015 + 1080 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_insert_input": { "description": [ - 80 + 84 ], "match_clips": [ - 2427 + 2684 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1010 + 1075 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 1014 + 1079 ], "update_columns": [ - 1028 + 1093 ], "where": [ - 1013 + 1078 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_order_by": { "description": [ - 3094 + 3373 ], "match_clips_aggregate": [ - 2426 + 2683 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_select_column": {}, "e_match_clip_visibility_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 1027 + 1092 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 1025 + 1090 ], "where": [ - 1013 + 1078 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status": { "description": [ - 80 + 84 ], "match_maps": [ - 2716, + 2973, { "distinct_on": [ - 2738, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2736, + 2993, "[match_maps_order_by!]" ], "where": [ - 2725 + 2982 ] } ], "match_maps_aggregate": [ - 2717, + 2974, { "distinct_on": [ - 2738, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2736, + 2993, "[match_maps_order_by!]" ], "where": [ - 2725 + 2982 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_aggregate": { "aggregate": [ - 1032 + 1097 ], "nodes": [ - 1030 + 1095 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1045, + 1110, "[e_match_map_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1038 + 1103 ], "min": [ - 1039 + 1104 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_bool_exp": { "_and": [ - 1033 + 1098 ], "_not": [ - 1033 + 1098 ], "_or": [ - 1033 + 1098 ], "description": [ - 82 + 86 ], "match_maps": [ - 2725 + 2982 ], "match_maps_aggregate": [ - 2718 + 2975 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_constraint": {}, "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 1035 + 1100 ], "_in": [ - 1035 + 1100 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1035 + 1100 ], "_nin": [ - 1035 + 1100 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_insert_input": { "description": [ - 80 + 84 ], "match_maps": [ - 2722 + 2979 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1030 + 1095 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 1037 + 1102 ], "on_conflict": [ - 1042 + 1107 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_on_conflict": { "constraint": [ - 1034 + 1099 ], "update_columns": [ - 1049 + 1114 ], "where": [ - 1033 + 1098 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_order_by": { "description": [ - 3094 + 3373 ], "match_maps_aggregate": [ - 2721 + 2978 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_select_column": {}, "e_match_map_status_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 1048 + 1113 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 1046 + 1111 ], "where": [ - 1033 + 1098 ], "__typename": [ - 80 + 84 ] }, "e_match_mode": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_aggregate": { "aggregate": [ - 1053 + 1118 ], "nodes": [ - 1051 + 1116 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1065, + 1130, "[e_match_mode_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1059 + 1124 ], "min": [ - 1060 + 1125 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_bool_exp": { "_and": [ - 1054 + 1119 ], "_not": [ - 1054 + 1119 ], "_or": [ - 1054 + 1119 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_constraint": {}, "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 1056 + 1121 ], "_in": [ - 1056 + 1121 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1056 + 1121 ], "_nin": [ - 1056 + 1121 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1051 + 1116 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_on_conflict": { "constraint": [ - 1055 + 1120 ], "update_columns": [ - 1069 + 1134 ], "where": [ - 1054 + 1119 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_select_column": {}, "e_match_mode_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 1068 + 1133 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 1066 + 1131 ], "where": [ - 1054 + 1119 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources": { "description": [ - 80 + 84 ], "match_lineup_players": [ - 2509, + 2766, { "distinct_on": [ - 2532, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2530, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2777 ] } ], "match_lineup_players_aggregate": [ - 2510, + 2767, { "distinct_on": [ - 2532, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2530, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2777 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_aggregate": { "aggregate": [ - 1073 + 1138 ], "nodes": [ - 1071 + 1136 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1085, + 1150, "[e_match_party_sources_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1079 + 1144 ], "min": [ - 1080 + 1145 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_bool_exp": { "_and": [ - 1074 + 1139 ], "_not": [ - 1074 + 1139 ], "_or": [ - 1074 + 1139 ], "description": [ - 82 + 86 ], "match_lineup_players": [ - 2520 + 2777 ], "match_lineup_players_aggregate": [ - 2511 + 2768 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_constraint": {}, "e_match_party_sources_enum": {}, "e_match_party_sources_enum_comparison_exp": { "_eq": [ - 1076 + 1141 ], "_in": [ - 1076 + 1141 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1076 + 1141 ], "_nin": [ - 1076 + 1141 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_insert_input": { "description": [ - 80 + 84 ], "match_lineup_players": [ - 2517 + 2774 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1071 + 1136 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_on_conflict": { "constraint": [ - 1075 + 1140 ], "update_columns": [ - 1089 + 1154 ], "where": [ - 1074 + 1139 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_order_by": { "description": [ - 3094 + 3373 ], "match_lineup_players_aggregate": [ - 2516 + 2773 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_select_column": {}, "e_match_party_sources_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_stream_cursor_input": { "initial_value": [ - 1088 + 1153 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_party_sources_update_column": {}, "e_match_party_sources_updates": { "_set": [ - 1086 + 1151 ], "where": [ - 1074 + 1139 ], "__typename": [ - 80 + 84 ] }, "e_match_status": { "description": [ - 80 + 84 ], "matches": [ - 2882, + 3157, { "distinct_on": [ - 2904, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2902, + 3179, "[matches_order_by!]" ], "where": [ - 2891 + 3168 ] } ], "matches_aggregate": [ - 2883, + 3158, { "distinct_on": [ - 2904, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2902, + 3179, "[matches_order_by!]" ], "where": [ - 2891 + 3168 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_status_aggregate": { "aggregate": [ - 1093 + 1158 ], "nodes": [ - 1091 + 1156 ], "__typename": [ - 80 + 84 ] }, "e_match_status_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1106, + 1171, "[e_match_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1099 + 1164 ], "min": [ - 1100 + 1165 ], "__typename": [ - 80 + 84 ] }, "e_match_status_bool_exp": { "_and": [ - 1094 + 1159 ], "_not": [ - 1094 + 1159 ], "_or": [ - 1094 + 1159 ], "description": [ - 82 + 86 ], "matches": [ - 2891 + 3168 ], "matches_aggregate": [ - 2884 + 3159 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_match_status_constraint": {}, "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 1096 + 1161 ], "_in": [ - 1096 + 1161 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1096 + 1161 ], "_nin": [ - 1096 + 1161 ], "__typename": [ - 80 + 84 ] }, "e_match_status_insert_input": { "description": [ - 80 + 84 ], "matches": [ - 2888 + 3165 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_status_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_status_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_status_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1091 + 1156 ], "__typename": [ - 80 + 84 ] }, "e_match_status_obj_rel_insert_input": { "data": [ - 1098 + 1163 ], "on_conflict": [ - 1103 + 1168 ], "__typename": [ - 80 + 84 ] }, "e_match_status_on_conflict": { "constraint": [ - 1095 + 1160 ], "update_columns": [ - 1110 + 1175 ], "where": [ - 1094 + 1159 ], "__typename": [ - 80 + 84 ] }, "e_match_status_order_by": { "description": [ - 3094 + 3373 ], "matches_aggregate": [ - 2887 + 3164 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_match_status_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_status_select_column": {}, "e_match_status_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_status_stream_cursor_input": { "initial_value": [ - 1109 + 1174 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_match_status_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 1107 + 1172 ], "where": [ - 1094 + 1159 ], "__typename": [ - 80 + 84 ] }, "e_match_types": { "description": [ - 80 + 84 ], "maps": [ - 2392, + 2649, { "distinct_on": [ - 2413, + 2670, "[maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2411, + 2668, "[maps_order_by!]" ], "where": [ - 2401 + 2658 ] } ], "maps_aggregate": [ - 2393, + 2650, { "distinct_on": [ - 2413, + 2670, "[maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2411, + 2668, "[maps_order_by!]" ], "where": [ - 2401 + 2658 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_types_aggregate": { "aggregate": [ - 1114 + 1179 ], "nodes": [ - 1112 + 1177 ], "__typename": [ - 80 + 84 ] }, "e_match_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1127, + 1192, "[e_match_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1120 + 1185 ], "min": [ - 1121 + 1186 ], "__typename": [ - 80 + 84 ] }, "e_match_types_bool_exp": { "_and": [ - 1115 + 1180 ], "_not": [ - 1115 + 1180 ], "_or": [ - 1115 + 1180 ], "description": [ - 82 + 86 ], "maps": [ - 2401 + 2658 ], "maps_aggregate": [ - 2394 + 2651 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_match_types_constraint": {}, "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 1117 + 1182 ], "_in": [ - 1117 + 1182 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1117 + 1182 ], "_nin": [ - 1117 + 1182 ], "__typename": [ - 80 + 84 ] }, "e_match_types_insert_input": { "description": [ - 80 + 84 ], "maps": [ - 2400 + 2657 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_types_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_types_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1112 + 1177 ], "__typename": [ - 80 + 84 ] }, "e_match_types_obj_rel_insert_input": { "data": [ - 1119 + 1184 ], "on_conflict": [ - 1124 + 1189 ], "__typename": [ - 80 + 84 ] }, "e_match_types_on_conflict": { "constraint": [ - 1116 + 1181 ], "update_columns": [ - 1131 + 1196 ], "where": [ - 1115 + 1180 ], "__typename": [ - 80 + 84 ] }, "e_match_types_order_by": { "description": [ - 3094 + 3373 ], "maps_aggregate": [ - 2399 + 2656 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_match_types_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_types_select_column": {}, "e_match_types_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_types_stream_cursor_input": { "initial_value": [ - 1130 + 1195 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_match_types_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 1128 + 1193 ], "where": [ - 1115 + 1180 ], "__typename": [ - 80 + 84 ] }, "e_notification_types": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_aggregate": { "aggregate": [ - 1135 + 1200 ], "nodes": [ - 1133 + 1198 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1147, + 1212, "[e_notification_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1141 + 1206 ], "min": [ - 1142 + 1207 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_bool_exp": { "_and": [ - 1136 + 1201 ], "_not": [ - 1136 + 1201 ], "_or": [ - 1136 + 1201 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_constraint": {}, "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 1138 + 1203 ], "_in": [ - 1138 + 1203 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1138 + 1203 ], "_nin": [ - 1138 + 1203 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1133 + 1198 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_on_conflict": { "constraint": [ - 1137 + 1202 ], "update_columns": [ - 1151 + 1216 ], "where": [ - 1136 + 1201 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_select_column": {}, "e_notification_types_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 1150 + 1215 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 1148 + 1213 ], "where": [ - 1136 + 1201 ], "__typename": [ - 80 + 84 ] }, "e_objective_types": { "description": [ - 80 + 84 ], "player_objectives": [ - 3650, + 3929, { "distinct_on": [ - 3671, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3669, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3938 ] } ], "player_objectives_aggregate": [ - 3651, + 3930, { "distinct_on": [ - 3671, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3669, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3938 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_aggregate": { "aggregate": [ - 1155 + 1220 ], "nodes": [ - 1153 + 1218 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1167, + 1232, "[e_objective_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1161 + 1226 ], "min": [ - 1162 + 1227 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_bool_exp": { "_and": [ - 1156 + 1221 ], "_not": [ - 1156 + 1221 ], "_or": [ - 1156 + 1221 ], "description": [ - 82 + 86 ], "player_objectives": [ - 3659 + 3938 ], "player_objectives_aggregate": [ - 3652 + 3931 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_constraint": {}, "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 1158 + 1223 ], "_in": [ - 1158 + 1223 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1158 + 1223 ], "_nin": [ - 1158 + 1223 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_insert_input": { "description": [ - 80 + 84 ], "player_objectives": [ - 3656 + 3935 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1153 + 1218 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_on_conflict": { "constraint": [ - 1157 + 1222 ], "update_columns": [ - 1171 + 1236 ], "where": [ - 1156 + 1221 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_order_by": { "description": [ - 3094 + 3373 ], "player_objectives_aggregate": [ - 3655 + 3934 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_select_column": {}, "e_objective_types_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 1170 + 1235 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 1168 + 1233 ], "where": [ - 1156 + 1221 ], "__typename": [ - 80 + 84 ] }, "e_player_roles": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_aggregate": { "aggregate": [ - 1175 + 1240 ], "nodes": [ - 1173 + 1238 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1187, + 1252, "[e_player_roles_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1181 + 1246 ], "min": [ - 1182 + 1247 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_bool_exp": { "_and": [ - 1176 + 1241 ], "_not": [ - 1176 + 1241 ], "_or": [ - 1176 + 1241 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_constraint": {}, "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 1178 + 1243 ], "_in": [ - 1178 + 1243 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1178 + 1243 ], "_nin": [ - 1178 + 1243 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1173 + 1238 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_on_conflict": { "constraint": [ - 1177 + 1242 ], "update_columns": [ - 1191 + 1256 ], "where": [ - 1176 + 1241 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_select_column": {}, "e_player_roles_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 1190 + 1255 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 1188 + 1253 ], "where": [ - 1176 + 1241 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_aggregate": { "aggregate": [ - 1195 + 1260 ], "nodes": [ - 1193 + 1258 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1207, + 1272, "[e_plugin_runtimes_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1201 + 1266 ], "min": [ - 1202 + 1267 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_bool_exp": { "_and": [ - 1196 + 1261 ], "_not": [ - 1196 + 1261 ], "_or": [ - 1196 + 1261 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_constraint": {}, "e_plugin_runtimes_enum": {}, "e_plugin_runtimes_enum_comparison_exp": { "_eq": [ - 1198 + 1263 ], "_in": [ - 1198 + 1263 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1198 + 1263 ], "_nin": [ - 1198 + 1263 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1193 + 1258 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_on_conflict": { "constraint": [ - 1197 + 1262 ], "update_columns": [ - 1211 + 1276 ], "where": [ - 1196 + 1261 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_select_column": {}, "e_plugin_runtimes_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_stream_cursor_input": { "initial_value": [ - 1210 + 1275 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_plugin_runtimes_update_column": {}, "e_plugin_runtimes_updates": { "_set": [ - 1208 + 1273 ], "where": [ - 1196 + 1261 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_aggregate": { "aggregate": [ - 1215 + 1280 ], "nodes": [ - 1213 + 1278 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1227, + 1292, "[e_ready_settings_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1221 + 1286 ], "min": [ - 1222 + 1287 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_bool_exp": { "_and": [ - 1216 + 1281 ], "_not": [ - 1216 + 1281 ], "_or": [ - 1216 + 1281 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_constraint": {}, "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 1218 + 1283 ], "_in": [ - 1218 + 1283 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1218 + 1283 ], "_nin": [ - 1218 + 1283 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1213 + 1278 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_on_conflict": { "constraint": [ - 1217 + 1282 ], "update_columns": [ - 1231 + 1296 ], "where": [ - 1216 + 1281 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_select_column": {}, "e_ready_settings_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 1230 + 1295 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 1228 + 1293 ], "where": [ - 1216 + 1281 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_aggregate": { "aggregate": [ - 1235 + 1300 ], "nodes": [ - 1233 + 1298 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1248, + 1313, "[e_sanction_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1241 + 1306 ], "min": [ - 1242 + 1307 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_bool_exp": { "_and": [ - 1236 + 1301 ], "_not": [ - 1236 + 1301 ], "_or": [ - 1236 + 1301 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_constraint": {}, "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 1238 + 1303 ], "_in": [ - 1238 + 1303 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1238 + 1303 ], "_nin": [ - 1238 + 1303 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1233 + 1298 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 1240 + 1305 ], "on_conflict": [ - 1245 + 1310 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_on_conflict": { "constraint": [ - 1237 + 1302 ], "update_columns": [ - 1252 + 1317 ], "where": [ - 1236 + 1301 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_select_column": {}, "e_sanction_types_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 1251 + 1316 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 1249 + 1314 ], "where": [ - 1236 + 1301 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses": { "description": [ - 80 + 84 ], "scrim_requests": [ - 4520, + 4804, { "distinct_on": [ - 4544, + 4828, "[team_scrim_requests_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4542, + 4826, "[team_scrim_requests_order_by!]" ], "where": [ - 4531 + 4815 ] } ], "scrim_requests_aggregate": [ - 4521, + 4805, { "distinct_on": [ - 4544, + 4828, "[team_scrim_requests_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4542, + 4826, "[team_scrim_requests_order_by!]" ], "where": [ - 4531 + 4815 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 1256 + 1321 ], "nodes": [ - 1254 + 1319 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1268, + 1333, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1262 + 1327 ], "min": [ - 1263 + 1328 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 1257 + 1322 ], "_not": [ - 1257 + 1322 ], "_or": [ - 1257 + 1322 ], "description": [ - 82 + 86 ], "scrim_requests": [ - 4531 + 4815 ], "scrim_requests_aggregate": [ - 4522 + 4806 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_constraint": {}, "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 1259 + 1324 ], "_in": [ - 1259 + 1324 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1259 + 1324 ], "_nin": [ - 1259 + 1324 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_insert_input": { "description": [ - 80 + 84 ], "scrim_requests": [ - 4528 + 4812 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1254 + 1319 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 1258 + 1323 ], "update_columns": [ - 1272 + 1337 ], "where": [ - 1257 + 1322 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_order_by": { "description": [ - 3094 + 3373 ], "scrim_requests_aggregate": [ - 4527 + 4811 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_select_column": {}, "e_scrim_request_statuses_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 1271 + 1336 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 1269 + 1334 ], "where": [ - 1257 + 1322 ], "__typename": [ - 80 + 84 ] }, "e_server_types": { "description": [ - 80 + 84 ], "servers": [ - 4193, + 4472, { "distinct_on": [ - 4217, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4215, + 4498, "[servers_order_by!]" ], "where": [ - 4204 + 4484 ] } ], "servers_aggregate": [ - 4194, + 4473, { "distinct_on": [ - 4217, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4215, + 4498, "[servers_order_by!]" ], "where": [ - 4204 + 4484 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_server_types_aggregate": { "aggregate": [ - 1276 + 1341 ], "nodes": [ - 1274 + 1339 ], "__typename": [ - 80 + 84 ] }, "e_server_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1288, + 1353, "[e_server_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1282 + 1347 ], "min": [ - 1283 + 1348 ], "__typename": [ - 80 + 84 ] }, "e_server_types_bool_exp": { "_and": [ - 1277 + 1342 ], "_not": [ - 1277 + 1342 ], "_or": [ - 1277 + 1342 ], "description": [ - 82 + 86 ], "servers": [ - 4204 + 4484 ], "servers_aggregate": [ - 4195 + 4474 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_server_types_constraint": {}, "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 1279 + 1344 ], "_in": [ - 1279 + 1344 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1279 + 1344 ], "_nin": [ - 1279 + 1344 ], "__typename": [ - 80 + 84 ] }, "e_server_types_insert_input": { "description": [ - 80 + 84 ], "servers": [ - 4201 + 4481 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_server_types_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_server_types_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_server_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1274 + 1339 ], "__typename": [ - 80 + 84 ] }, "e_server_types_on_conflict": { "constraint": [ - 1278 + 1343 ], "update_columns": [ - 1292 + 1357 ], "where": [ - 1277 + 1342 ], "__typename": [ - 80 + 84 ] }, "e_server_types_order_by": { "description": [ - 3094 + 3373 ], "servers_aggregate": [ - 4200 + 4479 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_server_types_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_server_types_select_column": {}, "e_server_types_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_server_types_stream_cursor_input": { "initial_value": [ - 1291 + 1356 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_server_types_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 1289 + 1354 ], "where": [ - 1277 + 1342 ], "__typename": [ - 80 + 84 ] }, "e_sides": { "description": [ - 80 + 84 ], "match_map_lineup_1": [ - 2716, + 2973, { "distinct_on": [ - 2738, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2736, + 2993, "[match_maps_order_by!]" ], "where": [ - 2725 + 2982 ] } ], "match_map_lineup_1_aggregate": [ - 2717, + 2974, { "distinct_on": [ - 2738, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2736, + 2993, "[match_maps_order_by!]" ], "where": [ - 2725 + 2982 ] } ], "match_map_lineup_2": [ - 2716, + 2973, { "distinct_on": [ - 2738, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2736, + 2993, "[match_maps_order_by!]" ], "where": [ - 2725 + 2982 ] } ], "match_map_lineup_2_aggregate": [ - 2717, + 2974, { "distinct_on": [ - 2738, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2736, + 2993, "[match_maps_order_by!]" ], "where": [ - 2725 + 2982 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_sides_aggregate": { "aggregate": [ - 1296 + 1361 ], "nodes": [ - 1294 + 1359 ], "__typename": [ - 80 + 84 ] }, "e_sides_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1308, + 1373, "[e_sides_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1302 + 1367 ], "min": [ - 1303 + 1368 ], "__typename": [ - 80 + 84 ] }, "e_sides_bool_exp": { "_and": [ - 1297 + 1362 ], "_not": [ - 1297 + 1362 ], "_or": [ - 1297 + 1362 ], "description": [ - 82 + 86 ], "match_map_lineup_1": [ - 2725 + 2982 ], "match_map_lineup_1_aggregate": [ - 2718 + 2975 ], "match_map_lineup_2": [ - 2725 + 2982 ], "match_map_lineup_2_aggregate": [ - 2718 + 2975 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_sides_constraint": {}, "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 1299 + 1364 ], "_in": [ - 1299 + 1364 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1299 + 1364 ], "_nin": [ - 1299 + 1364 ], "__typename": [ - 80 + 84 ] }, "e_sides_insert_input": { "description": [ - 80 + 84 ], "match_map_lineup_1": [ - 2722 + 2979 ], "match_map_lineup_2": [ - 2722 + 2979 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_sides_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_sides_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_sides_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1294 + 1359 ], "__typename": [ - 80 + 84 ] }, "e_sides_on_conflict": { "constraint": [ - 1298 + 1363 ], "update_columns": [ - 1312 + 1377 ], "where": [ - 1297 + 1362 ], "__typename": [ - 80 + 84 ] }, "e_sides_order_by": { "description": [ - 3094 + 3373 ], "match_map_lineup_1_aggregate": [ - 2721 + 2978 ], "match_map_lineup_2_aggregate": [ - 2721 + 2978 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_sides_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_sides_select_column": {}, "e_sides_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_sides_stream_cursor_input": { "initial_value": [ - 1311 + 1376 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_sides_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 1309 + 1374 ], "where": [ - 1297 + 1362 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_aggregate": { "aggregate": [ - 1316 + 1381 ], "nodes": [ - 1314 + 1379 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1328, + 1393, "[e_system_alert_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1322 + 1387 ], "min": [ - 1323 + 1388 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_bool_exp": { "_and": [ - 1317 + 1382 ], "_not": [ - 1317 + 1382 ], "_or": [ - 1317 + 1382 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_constraint": {}, "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 1319 + 1384 ], "_in": [ - 1319 + 1384 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1319 + 1384 ], "_nin": [ - 1319 + 1384 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1314 + 1379 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_on_conflict": { "constraint": [ - 1318 + 1383 ], "update_columns": [ - 1332 + 1397 ], "where": [ - 1317 + 1382 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_select_column": {}, "e_system_alert_types_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 1331 + 1396 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 1329 + 1394 ], "where": [ - 1317 + 1382 ], "__typename": [ - 80 + 84 ] }, "e_team_roles": { "description": [ - 80 + 84 ], "team_rosters": [ - 4379, + 4663, { "distinct_on": [ - 4402, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4400, + 4684, "[team_roster_order_by!]" ], "where": [ - 4390 + 4674 ] } ], "team_rosters_aggregate": [ - 4380, + 4664, { "distinct_on": [ - 4402, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4400, + 4684, "[team_roster_order_by!]" ], "where": [ - 4390 + 4674 ] } ], "tournament_team_rosters": [ - 5023, + 5307, { "distinct_on": [ - 5044, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5042, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5316 ] } ], "tournament_team_rosters_aggregate": [ - 5024, + 5308, { "distinct_on": [ - 5044, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5042, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5316 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_aggregate": { "aggregate": [ - 1336 + 1401 ], "nodes": [ - 1334 + 1399 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1349, + 1414, "[e_team_roles_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1342 + 1407 ], "min": [ - 1343 + 1408 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_bool_exp": { "_and": [ - 1337 + 1402 ], "_not": [ - 1337 + 1402 ], "_or": [ - 1337 + 1402 ], "description": [ - 82 + 86 ], "team_rosters": [ - 4390 + 4674 ], "team_rosters_aggregate": [ - 4381 + 4665 ], "tournament_team_rosters": [ - 5032 + 5316 ], "tournament_team_rosters_aggregate": [ - 5025 + 5309 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_constraint": {}, "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 1339 + 1404 ], "_in": [ - 1339 + 1404 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1339 + 1404 ], "_nin": [ - 1339 + 1404 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_insert_input": { "description": [ - 80 + 84 ], "team_rosters": [ - 4387 + 4671 ], "tournament_team_rosters": [ - 5029 + 5313 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1334 + 1399 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_obj_rel_insert_input": { "data": [ - 1341 + 1406 ], "on_conflict": [ - 1346 + 1411 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_on_conflict": { "constraint": [ - 1338 + 1403 ], "update_columns": [ - 1353 + 1418 ], "where": [ - 1337 + 1402 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_order_by": { "description": [ - 3094 + 3373 ], "team_rosters_aggregate": [ - 4386 + 4670 ], "tournament_team_rosters_aggregate": [ - 5028 + 5312 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_select_column": {}, "e_team_roles_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 1352 + 1417 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 1350 + 1415 ], "where": [ - 1337 + 1402 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 1357 + 1422 ], "nodes": [ - 1355 + 1420 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1369, + 1434, "[e_team_roster_statuses_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1363 + 1428 ], "min": [ - 1364 + 1429 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_bool_exp": { "_and": [ - 1358 + 1423 ], "_not": [ - 1358 + 1423 ], "_or": [ - 1358 + 1423 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_constraint": {}, "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 1360 + 1425 ], "_in": [ - 1360 + 1425 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1360 + 1425 ], "_nin": [ - 1360 + 1425 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1355 + 1420 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 1359 + 1424 ], "update_columns": [ - 1373 + 1438 ], "where": [ - 1358 + 1423 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_select_column": {}, "e_team_roster_statuses_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 1372 + 1437 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 1370 + 1435 ], "where": [ - 1358 + 1423 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_aggregate": { "aggregate": [ - 1377 + 1442 ], "nodes": [ - 1375 + 1440 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1389, + 1454, "[e_timeout_settings_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1383 + 1448 ], "min": [ - 1384 + 1449 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_bool_exp": { "_and": [ - 1378 + 1443 ], "_not": [ - 1378 + 1443 ], "_or": [ - 1378 + 1443 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_constraint": {}, "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 1380 + 1445 ], "_in": [ - 1380 + 1445 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1380 + 1445 ], "_nin": [ - 1380 + 1445 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1375 + 1440 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_on_conflict": { "constraint": [ - 1379 + 1444 ], "update_columns": [ - 1393 + 1458 ], "where": [ - 1378 + 1443 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_select_column": {}, "e_timeout_settings_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 1392 + 1457 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 1390 + 1455 ], "where": [ - 1378 + 1443 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories": { "description": [ - 80 + 84 ], "tournament_categories": [ - 4760, + 5044, { "distinct_on": [ - 4778, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4776, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5051 ] } ], "tournament_categories_aggregate": [ - 4761, + 5045, { "distinct_on": [ - 4778, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4776, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5051 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_aggregate": { "aggregate": [ - 1397 + 1462 ], "nodes": [ - 1395 + 1460 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1410, + 1475, "[e_tournament_categories_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1403 + 1468 ], "min": [ - 1404 + 1469 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_bool_exp": { "_and": [ - 1398 + 1463 ], "_not": [ - 1398 + 1463 ], "_or": [ - 1398 + 1463 ], "description": [ - 82 + 86 ], "tournament_categories": [ - 4767 + 5051 ], "tournament_categories_aggregate": [ - 4762 + 5046 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_constraint": {}, "e_tournament_categories_enum": {}, "e_tournament_categories_enum_comparison_exp": { "_eq": [ - 1400 + 1465 ], "_in": [ - 1400 + 1465 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1400 + 1465 ], "_nin": [ - 1400 + 1465 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_insert_input": { "description": [ - 80 + 84 ], "tournament_categories": [ - 4766 + 5050 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1395 + 1460 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_obj_rel_insert_input": { "data": [ - 1402 + 1467 ], "on_conflict": [ - 1407 + 1472 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_on_conflict": { "constraint": [ - 1399 + 1464 ], "update_columns": [ - 1414 + 1479 ], "where": [ - 1398 + 1463 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_order_by": { "description": [ - 3094 + 3373 ], "tournament_categories_aggregate": [ - 4765 + 5049 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_select_column": {}, "e_tournament_categories_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_stream_cursor_input": { "initial_value": [ - 1413 + 1478 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_categories_update_column": {}, "e_tournament_categories_updates": { "_set": [ - 1411 + 1476 ], "where": [ - 1398 + 1463 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types": { "description": [ - 80 + 84 ], "tournament_stages": [ - 4931, + 5215, { "distinct_on": [ - 4960, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4957, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5227 ] } ], "tournament_stages_aggregate": [ - 4932, + 5216, { "distinct_on": [ - 4960, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4957, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5227 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 1418 + 1483 ], "nodes": [ - 1416 + 1481 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1431, + 1496, "[e_tournament_stage_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1424 + 1489 ], "min": [ - 1425 + 1490 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_bool_exp": { "_and": [ - 1419 + 1484 ], "_not": [ - 1419 + 1484 ], "_or": [ - 1419 + 1484 ], "description": [ - 82 + 86 ], "tournament_stages": [ - 4943 + 5227 ], "tournament_stages_aggregate": [ - 4933 + 5217 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_constraint": {}, "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 1421 + 1486 ], "_in": [ - 1421 + 1486 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1421 + 1486 ], "_nin": [ - 1421 + 1486 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_insert_input": { "description": [ - 80 + 84 ], "tournament_stages": [ - 4940 + 5224 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1416 + 1481 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 1423 + 1488 ], "on_conflict": [ - 1428 + 1493 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 1420 + 1485 ], "update_columns": [ - 1435 + 1500 ], "where": [ - 1419 + 1484 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_order_by": { "description": [ - 3094 + 3373 ], "tournament_stages_aggregate": [ - 4938 + 5222 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_select_column": {}, "e_tournament_stage_types_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1434 + 1499 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1432 + 1497 ], "where": [ - 1419 + 1484 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status": { "description": [ - 80 + 84 ], "tournaments": [ - 5106, + 5390, { "distinct_on": [ - 5140, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5138, + 5422, "[tournaments_order_by!]" ], "where": [ - 5127 + 5411 ] } ], "tournaments_aggregate": [ - 5107, + 5391, { "distinct_on": [ - 5140, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5138, + 5422, "[tournaments_order_by!]" ], "where": [ - 5127 + 5411 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_aggregate": { "aggregate": [ - 1439 + 1504 ], "nodes": [ - 1437 + 1502 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1452, + 1517, "[e_tournament_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1445 + 1510 ], "min": [ - 1446 + 1511 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_bool_exp": { "_and": [ - 1440 + 1505 ], "_not": [ - 1440 + 1505 ], "_or": [ - 1440 + 1505 ], "description": [ - 82 + 86 ], "tournaments": [ - 5127 + 5411 ], "tournaments_aggregate": [ - 5108 + 5392 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_constraint": {}, "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1442 + 1507 ], "_in": [ - 1442 + 1507 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1442 + 1507 ], "_nin": [ - 1442 + 1507 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_insert_input": { "description": [ - 80 + 84 ], "tournaments": [ - 5124 + 5408 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1437 + 1502 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1444 + 1509 ], "on_conflict": [ - 1449 + 1514 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_on_conflict": { "constraint": [ - 1441 + 1506 ], "update_columns": [ - 1456 + 1521 ], "where": [ - 1440 + 1505 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_order_by": { "description": [ - 3094 + 3373 ], "tournaments_aggregate": [ - 5123 + 5407 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_select_column": {}, "e_tournament_status_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1455 + 1520 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1453 + 1518 ], "where": [ - 1440 + 1505 ], "__typename": [ - 80 + 84 ] }, "e_utility_types": { "description": [ - 80 + 84 ], "player_utilities": [ - 3978, + 4257, { "distinct_on": [ - 3999, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3997, + 4276, "[player_utility_order_by!]" ], "where": [ - 3987 + 4266 ] } ], "player_utilities_aggregate": [ - 3979, + 4258, { "distinct_on": [ - 3999, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3997, + 4276, "[player_utility_order_by!]" ], "where": [ - 3987 + 4266 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_aggregate": { "aggregate": [ - 1460 + 1525 ], "nodes": [ - 1458 + 1523 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1472, + 1537, "[e_utility_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1466 + 1531 ], "min": [ - 1467 + 1532 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_bool_exp": { "_and": [ - 1461 + 1526 ], "_not": [ - 1461 + 1526 ], "_or": [ - 1461 + 1526 ], "description": [ - 82 + 86 ], "player_utilities": [ - 3987 + 4266 ], "player_utilities_aggregate": [ - 3980 + 4259 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_constraint": {}, "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1463 + 1528 ], "_in": [ - 1463 + 1528 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1463 + 1528 ], "_nin": [ - 1463 + 1528 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_insert_input": { "description": [ - 80 + 84 ], "player_utilities": [ - 3984 + 4263 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1458 + 1523 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_on_conflict": { "constraint": [ - 1462 + 1527 ], "update_columns": [ - 1476 + 1541 ], "where": [ - 1461 + 1526 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_order_by": { "description": [ - 3094 + 3373 ], "player_utilities_aggregate": [ - 3983 + 4262 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_select_column": {}, "e_utility_types_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1475 + 1540 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1473 + 1538 ], "where": [ - 1461 + 1526 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types": { "description": [ - 80 + 84 ], "match_veto_picks": [ - 2688, + 2945, { "distinct_on": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2706, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2954 ] } ], "match_veto_picks_aggregate": [ - 2689, + 2946, { "distinct_on": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2706, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2954 ] } ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1480 + 1545 ], "nodes": [ - 1478 + 1543 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1492, + 1557, "[e_veto_pick_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1486 + 1551 ], "min": [ - 1487 + 1552 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_bool_exp": { "_and": [ - 1481 + 1546 ], "_not": [ - 1481 + 1546 ], "_or": [ - 1481 + 1546 ], "description": [ - 82 + 86 ], "match_veto_picks": [ - 2697 + 2954 ], "match_veto_picks_aggregate": [ - 2690 + 2947 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_constraint": {}, "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1483 + 1548 ], "_in": [ - 1483 + 1548 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1483 + 1548 ], "_nin": [ - 1483 + 1548 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_insert_input": { "description": [ - 80 + 84 ], "match_veto_picks": [ - 2696 + 2953 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1478 + 1543 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1482 + 1547 ], "update_columns": [ - 1496 + 1561 ], "where": [ - 1481 + 1546 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_order_by": { "description": [ - 3094 + 3373 ], "match_veto_picks_aggregate": [ - 2695 + 2952 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_select_column": {}, "e_veto_pick_types_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1495 + 1560 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1493 + 1558 ], "where": [ - 1481 + 1546 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_aggregate": { "aggregate": [ - 1500 + 1565 ], "nodes": [ - 1498 + 1563 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1512, + 1577, "[e_winning_reasons_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1506 + 1571 ], "min": [ - 1507 + 1572 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_bool_exp": { "_and": [ - 1501 + 1566 ], "_not": [ - 1501 + 1566 ], "_or": [ - 1501 + 1566 ], "description": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_constraint": {}, "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1503 + 1568 ], "_in": [ - 1503 + 1568 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1503 + 1568 ], "_nin": [ - 1503 + 1568 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_insert_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_max_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_min_fields": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1498 + 1563 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_on_conflict": { "constraint": [ - 1502 + 1567 ], "update_columns": [ - 1516 + 1581 ], "where": [ - 1501 + 1566 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_order_by": { "description": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_select_column": {}, "e_winning_reasons_set_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1515 + 1580 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_stream_cursor_value_input": { "description": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1513 + 1578 ], "where": [ - 1501 + 1566 ], "__typename": [ - 80 + 84 ] }, "event_match_links": { "created_at": [ - 4670 + 4954 ], "event": [ - 1749 + 1814 ], "event_id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_match_links_aggregate": { "aggregate": [ - 1520 + 1585 ], "nodes": [ - 1518 + 1583 ], "__typename": [ - 80 + 84 ] }, "event_match_links_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1530, + 1595, "[event_match_links_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1524 + 1589 ], "min": [ - 1525 + 1590 ], "__typename": [ - 80 + 84 ] }, "event_match_links_bool_exp": { "_and": [ - 1521 + 1586 ], "_not": [ - 1521 + 1586 ], "_or": [ - 1521 + 1586 ], "created_at": [ - 4671 + 4955 ], "event": [ - 1753 + 1818 ], "event_id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "event_match_links_constraint": {}, "event_match_links_insert_input": { "created_at": [ - 4670 + 4954 ], "event": [ - 1760 + 1825 ], "event_id": [ - 5170 + 5454 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_match_links_max_fields": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_match_links_min_fields": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_match_links_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1518 + 1583 ], "__typename": [ - 80 + 84 ] }, "event_match_links_on_conflict": { "constraint": [ - 1522 + 1587 ], "update_columns": [ - 1534 + 1599 ], "where": [ - 1521 + 1586 ], "__typename": [ - 80 + 84 ] }, "event_match_links_order_by": { "created_at": [ - 3094 + 3373 ], "event": [ - 1762 + 1827 ], "event_id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_match_links_pk_columns_input": { "event_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_match_links_select_column": {}, "event_match_links_set_input": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_match_links_stream_cursor_input": { "initial_value": [ - 1533 + 1598 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "event_match_links_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_match_links_update_column": {}, "event_match_links_updates": { "_set": [ - 1531 + 1596 ], "where": [ - 1521 + 1586 ], "__typename": [ - 80 + 84 ] }, "event_media": { "created_at": [ - 4670 + 4954 ], "event": [ - 1749 + 1814 ], "event_id": [ - 5170 + 5454 ], "external_url": [ - 80 + 84 ], "filename": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "mime_type": [ - 80 + 84 ], "players": [ - 1558, + 1623, { "distinct_on": [ - 1579, + 1644, "[event_media_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1577, + 1642, "[event_media_players_order_by!]" ], "where": [ - 1567 + 1632 ] } ], "players_aggregate": [ - 1559, + 1624, { "distinct_on": [ - 1579, + 1644, "[event_media_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1577, + 1642, "[event_media_players_order_by!]" ], "where": [ - 1567 + 1632 ] } ], "size": [ - 264 + 269 ], "thumbnail_filename": [ - 80 + 84 ], "title": [ - 80 + 84 ], "uploader": [ - 4052 + 4331 ], "uploader_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_aggregate": { "aggregate": [ - 1540 + 1605 ], "nodes": [ - 1536 + 1601 ], "__typename": [ - 80 + 84 ] }, "event_media_aggregate_bool_exp": { "count": [ - 1539 + 1604 ], "__typename": [ - 80 + 84 ] }, "event_media_aggregate_bool_exp_count": { "arguments": [ - 1599 + 1664 ], "distinct": [ - 5 + 6 ], "filter": [ - 1545 + 1610 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "event_media_aggregate_fields": { "avg": [ - 1543 + 1608 ], "count": [ - 40, + 41, { "columns": [ - 1599, + 1664, "[event_media_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1549 + 1614 ], "min": [ - 1551 + 1616 ], "stddev": [ - 1601 + 1666 ], "stddev_pop": [ - 1603 + 1668 ], "stddev_samp": [ - 1605 + 1670 ], "sum": [ - 1609 + 1674 ], "var_pop": [ - 1613 + 1678 ], "var_samp": [ - 1615 + 1680 ], "variance": [ - 1617 + 1682 ], "__typename": [ - 80 + 84 ] }, "event_media_aggregate_order_by": { "avg": [ - 1544 + 1609 ], "count": [ - 3094 + 3373 ], "max": [ - 1550 + 1615 ], "min": [ - 1552 + 1617 ], "stddev": [ - 1602 + 1667 ], "stddev_pop": [ - 1604 + 1669 ], "stddev_samp": [ - 1606 + 1671 ], "sum": [ - 1610 + 1675 ], "var_pop": [ - 1614 + 1679 ], "var_samp": [ - 1616 + 1681 ], "variance": [ - 1618 + 1683 ], "__typename": [ - 80 + 84 ] }, "event_media_arr_rel_insert_input": { "data": [ - 1548 + 1613 ], "on_conflict": [ - 1555 + 1620 ], "__typename": [ - 80 + 84 ] }, "event_media_avg_fields": { "size": [ - 31 + 32 ], "uploader_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_media_avg_order_by": { "size": [ - 3094 + 3373 ], "uploader_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_bool_exp": { "_and": [ - 1545 + 1610 ], "_not": [ - 1545 + 1610 ], "_or": [ - 1545 + 1610 ], "created_at": [ - 4671 + 4955 ], "event": [ - 1753 + 1818 ], "event_id": [ - 5172 + 5456 ], "external_url": [ - 82 + 86 ], "filename": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "mime_type": [ - 82 + 86 ], "players": [ - 1567 + 1632 ], "players_aggregate": [ - 1560 + 1625 ], "size": [ - 266 + 271 ], "thumbnail_filename": [ - 82 + 86 ], "title": [ - 82 + 86 ], "uploader": [ - 4056 + 4335 ], "uploader_steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "event_media_constraint": {}, "event_media_inc_input": { "size": [ - 264 + 269 ], "uploader_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_insert_input": { "created_at": [ - 4670 + 4954 ], "event": [ - 1760 + 1825 ], "event_id": [ - 5170 + 5454 ], "external_url": [ - 80 + 84 ], "filename": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "mime_type": [ - 80 + 84 ], "players": [ - 1564 + 1629 ], "size": [ - 264 + 269 ], "thumbnail_filename": [ - 80 + 84 ], "title": [ - 80 + 84 ], "uploader": [ - 4063 + 4342 ], "uploader_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_max_fields": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "external_url": [ - 80 + 84 ], "filename": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "mime_type": [ - 80 + 84 ], "size": [ - 264 + 269 ], "thumbnail_filename": [ - 80 + 84 ], "title": [ - 80 + 84 ], "uploader_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_max_order_by": { "created_at": [ - 3094 + 3373 ], "event_id": [ - 3094 + 3373 ], "external_url": [ - 3094 + 3373 ], "filename": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "mime_type": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "thumbnail_filename": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "uploader_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_min_fields": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "external_url": [ - 80 + 84 ], "filename": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "mime_type": [ - 80 + 84 ], "size": [ - 264 + 269 ], "thumbnail_filename": [ - 80 + 84 ], "title": [ - 80 + 84 ], "uploader_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_min_order_by": { "created_at": [ - 3094 + 3373 ], "event_id": [ - 3094 + 3373 ], "external_url": [ - 3094 + 3373 ], "filename": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "mime_type": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "thumbnail_filename": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "uploader_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1536 + 1601 ], "__typename": [ - 80 + 84 ] }, "event_media_obj_rel_insert_input": { "data": [ - 1548 + 1613 ], "on_conflict": [ - 1555 + 1620 ], "__typename": [ - 80 + 84 ] }, "event_media_on_conflict": { "constraint": [ - 1546 + 1611 ], "update_columns": [ - 1611 + 1676 ], "where": [ - 1545 + 1610 ], "__typename": [ - 80 + 84 ] }, "event_media_order_by": { "created_at": [ - 3094 + 3373 ], "event": [ - 1762 + 1827 ], "event_id": [ - 3094 + 3373 ], "external_url": [ - 3094 + 3373 ], "filename": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "mime_type": [ - 3094 + 3373 ], "players_aggregate": [ - 1563 + 1628 ], "size": [ - 3094 + 3373 ], "thumbnail_filename": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "uploader": [ - 4065 + 4344 ], "uploader_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_media_players": { "created_at": [ - 4670 + 4954 ], "media": [ - 1536 + 1601 ], "media_id": [ - 5170 + 5454 ], "player": [ - 4052 + 4331 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_players_aggregate": { "aggregate": [ - 1562 + 1627 ], "nodes": [ - 1558 + 1623 ], "__typename": [ - 80 + 84 ] }, "event_media_players_aggregate_bool_exp": { "count": [ - 1561 + 1626 ], "__typename": [ - 80 + 84 ] }, "event_media_players_aggregate_bool_exp_count": { "arguments": [ - 1579 + 1644 ], "distinct": [ - 5 + 6 ], "filter": [ - 1567 + 1632 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "event_media_players_aggregate_fields": { "avg": [ - 1565 + 1630 ], "count": [ - 40, + 41, { "columns": [ - 1579, + 1644, "[event_media_players_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1571 + 1636 ], "min": [ - 1573 + 1638 ], "stddev": [ - 1581 + 1646 ], "stddev_pop": [ - 1583 + 1648 ], "stddev_samp": [ - 1585 + 1650 ], "sum": [ - 1589 + 1654 ], "var_pop": [ - 1593 + 1658 ], "var_samp": [ - 1595 + 1660 ], "variance": [ - 1597 + 1662 ], "__typename": [ - 80 + 84 ] }, "event_media_players_aggregate_order_by": { "avg": [ - 1566 + 1631 ], "count": [ - 3094 + 3373 ], "max": [ - 1572 + 1637 ], "min": [ - 1574 + 1639 ], "stddev": [ - 1582 + 1647 ], "stddev_pop": [ - 1584 + 1649 ], "stddev_samp": [ - 1586 + 1651 ], "sum": [ - 1590 + 1655 ], "var_pop": [ - 1594 + 1659 ], "var_samp": [ - 1596 + 1661 ], "variance": [ - 1598 + 1663 ], "__typename": [ - 80 + 84 ] }, "event_media_players_arr_rel_insert_input": { "data": [ - 1570 + 1635 ], "on_conflict": [ - 1576 + 1641 ], "__typename": [ - 80 + 84 ] }, "event_media_players_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_media_players_avg_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_players_bool_exp": { "_and": [ - 1567 + 1632 ], "_not": [ - 1567 + 1632 ], "_or": [ - 1567 + 1632 ], "created_at": [ - 4671 + 4955 ], "media": [ - 1545 + 1610 ], "media_id": [ - 5172 + 5456 ], "player": [ - 4056 + 4335 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "event_media_players_constraint": {}, "event_media_players_inc_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_players_insert_input": { "created_at": [ - 4670 + 4954 ], "media": [ - 1554 + 1619 ], "media_id": [ - 5170 + 5454 ], "player": [ - 4063 + 4342 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_players_max_fields": { "created_at": [ - 4670 + 4954 ], "media_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_players_max_order_by": { "created_at": [ - 3094 + 3373 ], "media_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_players_min_fields": { "created_at": [ - 4670 + 4954 ], "media_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_players_min_order_by": { "created_at": [ - 3094 + 3373 ], "media_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_players_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1558 + 1623 ], "__typename": [ - 80 + 84 ] }, "event_media_players_on_conflict": { "constraint": [ - 1568 + 1633 ], "update_columns": [ - 1591 + 1656 ], "where": [ - 1567 + 1632 ], "__typename": [ - 80 + 84 ] }, "event_media_players_order_by": { "created_at": [ - 3094 + 3373 ], "media": [ - 1556 + 1621 ], "media_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_players_pk_columns_input": { "media_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_players_select_column": {}, "event_media_players_set_input": { "created_at": [ - 4670 + 4954 ], "media_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_players_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_media_players_stddev_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_players_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_media_players_stddev_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_players_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_media_players_stddev_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_players_stream_cursor_input": { "initial_value": [ - 1588 + 1653 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "event_media_players_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "media_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_players_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_players_sum_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_players_update_column": {}, "event_media_players_updates": { "_inc": [ - 1569 + 1634 ], "_set": [ - 1580 + 1645 ], "where": [ - 1567 + 1632 ], "__typename": [ - 80 + 84 ] }, "event_media_players_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_media_players_var_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_players_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_media_players_var_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_players_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_media_players_variance_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_select_column": {}, "event_media_set_input": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "external_url": [ - 80 + 84 ], "filename": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "mime_type": [ - 80 + 84 ], "size": [ - 264 + 269 ], "thumbnail_filename": [ - 80 + 84 ], "title": [ - 80 + 84 ], "uploader_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_stddev_fields": { "size": [ - 31 + 32 ], "uploader_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_media_stddev_order_by": { "size": [ - 3094 + 3373 ], "uploader_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_stddev_pop_fields": { "size": [ - 31 + 32 ], "uploader_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_media_stddev_pop_order_by": { "size": [ - 3094 + 3373 ], "uploader_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_stddev_samp_fields": { "size": [ - 31 + 32 ], "uploader_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_media_stddev_samp_order_by": { "size": [ - 3094 + 3373 ], "uploader_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_stream_cursor_input": { "initial_value": [ - 1608 + 1673 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "event_media_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "external_url": [ - 80 + 84 ], "filename": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "mime_type": [ - 80 + 84 ], "size": [ - 264 + 269 ], "thumbnail_filename": [ - 80 + 84 ], "title": [ - 80 + 84 ], "uploader_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_sum_fields": { "size": [ - 264 + 269 ], "uploader_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_media_sum_order_by": { "size": [ - 3094 + 3373 ], "uploader_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_update_column": {}, "event_media_updates": { "_inc": [ - 1547 + 1612 ], "_set": [ - 1600 + 1665 ], "where": [ - 1545 + 1610 ], "__typename": [ - 80 + 84 ] }, "event_media_var_pop_fields": { "size": [ - 31 + 32 ], "uploader_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_media_var_pop_order_by": { "size": [ - 3094 + 3373 ], "uploader_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_var_samp_fields": { "size": [ - 31 + 32 ], "uploader_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_media_var_samp_order_by": { "size": [ - 3094 + 3373 ], "uploader_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_media_variance_fields": { "size": [ - 31 + 32 ], "uploader_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_media_variance_order_by": { "size": [ - 3094 + 3373 ], "uploader_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_organizers": { "created_at": [ - 4670 + 4954 ], "event": [ - 1749 + 1814 ], "event_id": [ - 5170 + 5454 ], "organizer": [ - 4052 + 4331 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_organizers_aggregate": { "aggregate": [ - 1623 + 1688 ], "nodes": [ - 1619 + 1684 ], "__typename": [ - 80 + 84 ] }, "event_organizers_aggregate_bool_exp": { "count": [ - 1622 + 1687 ], "__typename": [ - 80 + 84 ] }, "event_organizers_aggregate_bool_exp_count": { "arguments": [ - 1640 + 1705 ], "distinct": [ - 5 + 6 ], "filter": [ - 1628 + 1693 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "event_organizers_aggregate_fields": { "avg": [ - 1626 + 1691 ], "count": [ - 40, + 41, { "columns": [ - 1640, + 1705, "[event_organizers_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1632 + 1697 ], "min": [ - 1634 + 1699 ], "stddev": [ - 1642 + 1707 ], "stddev_pop": [ - 1644 + 1709 ], "stddev_samp": [ - 1646 + 1711 ], "sum": [ - 1650 + 1715 ], "var_pop": [ - 1654 + 1719 ], "var_samp": [ - 1656 + 1721 ], "variance": [ - 1658 + 1723 ], "__typename": [ - 80 + 84 ] }, "event_organizers_aggregate_order_by": { "avg": [ - 1627 + 1692 ], "count": [ - 3094 + 3373 ], "max": [ - 1633 + 1698 ], "min": [ - 1635 + 1700 ], "stddev": [ - 1643 + 1708 ], "stddev_pop": [ - 1645 + 1710 ], "stddev_samp": [ - 1647 + 1712 ], "sum": [ - 1651 + 1716 ], "var_pop": [ - 1655 + 1720 ], "var_samp": [ - 1657 + 1722 ], "variance": [ - 1659 + 1724 ], "__typename": [ - 80 + 84 ] }, "event_organizers_arr_rel_insert_input": { "data": [ - 1631 + 1696 ], "on_conflict": [ - 1637 + 1702 ], "__typename": [ - 80 + 84 ] }, "event_organizers_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_organizers_avg_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_organizers_bool_exp": { "_and": [ - 1628 + 1693 ], "_not": [ - 1628 + 1693 ], "_or": [ - 1628 + 1693 ], "created_at": [ - 4671 + 4955 ], "event": [ - 1753 + 1818 ], "event_id": [ - 5172 + 5456 ], "organizer": [ - 4056 + 4335 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "event_organizers_constraint": {}, "event_organizers_inc_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_organizers_insert_input": { "created_at": [ - 4670 + 4954 ], "event": [ - 1760 + 1825 ], "event_id": [ - 5170 + 5454 ], "organizer": [ - 4063 + 4342 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_organizers_max_fields": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_organizers_max_order_by": { "created_at": [ - 3094 + 3373 ], "event_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_organizers_min_fields": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_organizers_min_order_by": { "created_at": [ - 3094 + 3373 ], "event_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_organizers_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1619 + 1684 ], "__typename": [ - 80 + 84 ] }, "event_organizers_on_conflict": { "constraint": [ - 1629 + 1694 ], "update_columns": [ - 1652 + 1717 ], "where": [ - 1628 + 1693 ], "__typename": [ - 80 + 84 ] }, "event_organizers_order_by": { "created_at": [ - 3094 + 3373 ], "event": [ - 1762 + 1827 ], "event_id": [ - 3094 + 3373 ], "organizer": [ - 4065 + 4344 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_organizers_pk_columns_input": { "event_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_organizers_select_column": {}, "event_organizers_set_input": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_organizers_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_organizers_stddev_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_organizers_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_organizers_stddev_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_organizers_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_organizers_stddev_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_organizers_stream_cursor_input": { "initial_value": [ - 1649 + 1714 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "event_organizers_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_organizers_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_organizers_sum_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_organizers_update_column": {}, "event_organizers_updates": { "_inc": [ - 1630 + 1695 ], "_set": [ - 1641 + 1706 ], "where": [ - 1628 + 1693 ], "__typename": [ - 80 + 84 ] }, "event_organizers_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_organizers_var_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_organizers_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_organizers_var_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_organizers_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_organizers_variance_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_players": { "created_at": [ - 4670 + 4954 ], "event": [ - 1749 + 1814 ], "event_id": [ - 5170 + 5454 ], "player": [ - 4052 + 4331 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_players_aggregate": { "aggregate": [ - 1664 + 1729 ], "nodes": [ - 1660 + 1725 ], "__typename": [ - 80 + 84 ] }, "event_players_aggregate_bool_exp": { "count": [ - 1663 + 1728 ], "__typename": [ - 80 + 84 ] }, "event_players_aggregate_bool_exp_count": { "arguments": [ - 1681 + 1746 ], "distinct": [ - 5 + 6 ], "filter": [ - 1669 + 1734 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "event_players_aggregate_fields": { "avg": [ - 1667 + 1732 ], "count": [ - 40, + 41, { "columns": [ - 1681, + 1746, "[event_players_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1673 + 1738 ], "min": [ - 1675 + 1740 ], "stddev": [ - 1683 + 1748 ], "stddev_pop": [ - 1685 + 1750 ], "stddev_samp": [ - 1687 + 1752 ], "sum": [ - 1691 + 1756 ], "var_pop": [ - 1695 + 1760 ], "var_samp": [ - 1697 + 1762 ], "variance": [ - 1699 + 1764 ], "__typename": [ - 80 + 84 ] }, "event_players_aggregate_order_by": { "avg": [ - 1668 + 1733 ], "count": [ - 3094 + 3373 ], "max": [ - 1674 + 1739 ], "min": [ - 1676 + 1741 ], "stddev": [ - 1684 + 1749 ], "stddev_pop": [ - 1686 + 1751 ], "stddev_samp": [ - 1688 + 1753 ], "sum": [ - 1692 + 1757 ], "var_pop": [ - 1696 + 1761 ], "var_samp": [ - 1698 + 1763 ], "variance": [ - 1700 + 1765 ], "__typename": [ - 80 + 84 ] }, "event_players_arr_rel_insert_input": { "data": [ - 1672 + 1737 ], "on_conflict": [ - 1678 + 1743 ], "__typename": [ - 80 + 84 ] }, "event_players_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_players_avg_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_players_bool_exp": { "_and": [ - 1669 + 1734 ], "_not": [ - 1669 + 1734 ], "_or": [ - 1669 + 1734 ], "created_at": [ - 4671 + 4955 ], "event": [ - 1753 + 1818 ], "event_id": [ - 5172 + 5456 ], "player": [ - 4056 + 4335 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "event_players_constraint": {}, "event_players_inc_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_players_insert_input": { "created_at": [ - 4670 + 4954 ], "event": [ - 1760 + 1825 ], "event_id": [ - 5170 + 5454 ], "player": [ - 4063 + 4342 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_players_max_fields": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_players_max_order_by": { "created_at": [ - 3094 + 3373 ], "event_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_players_min_fields": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_players_min_order_by": { "created_at": [ - 3094 + 3373 ], "event_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_players_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1660 + 1725 ], "__typename": [ - 80 + 84 ] }, "event_players_on_conflict": { "constraint": [ - 1670 + 1735 ], "update_columns": [ - 1693 + 1758 ], "where": [ - 1669 + 1734 ], "__typename": [ - 80 + 84 ] }, "event_players_order_by": { "created_at": [ - 3094 + 3373 ], "event": [ - 1762 + 1827 ], "event_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_players_pk_columns_input": { "event_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_players_select_column": {}, "event_players_set_input": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_players_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_players_stddev_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_players_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_players_stddev_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_players_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_players_stddev_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_players_stream_cursor_input": { "initial_value": [ - 1690 + 1755 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "event_players_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_players_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "event_players_sum_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_players_update_column": {}, "event_players_updates": { "_inc": [ - 1671 + 1736 ], "_set": [ - 1682 + 1747 ], "where": [ - 1669 + 1734 ], "__typename": [ - 80 + 84 ] }, "event_players_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_players_var_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_players_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_players_var_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_players_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "event_players_variance_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_teams": { "created_at": [ - 4670 + 4954 ], "event": [ - 1749 + 1814 ], "event_id": [ - 5170 + 5454 ], "team": [ - 4621 + 4905 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_teams_aggregate": { "aggregate": [ - 1705 + 1770 ], "nodes": [ - 1701 + 1766 ], "__typename": [ - 80 + 84 ] }, "event_teams_aggregate_bool_exp": { "count": [ - 1704 + 1769 ], "__typename": [ - 80 + 84 ] }, "event_teams_aggregate_bool_exp_count": { "arguments": [ - 1719 + 1784 ], "distinct": [ - 5 + 6 ], "filter": [ - 1708 + 1773 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "event_teams_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1719, + 1784, "[event_teams_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1711 + 1776 ], "min": [ - 1713 + 1778 ], "__typename": [ - 80 + 84 ] }, "event_teams_aggregate_order_by": { "count": [ - 3094 + 3373 ], "max": [ - 1712 + 1777 ], "min": [ - 1714 + 1779 ], "__typename": [ - 80 + 84 ] }, "event_teams_arr_rel_insert_input": { "data": [ - 1710 + 1775 ], "on_conflict": [ - 1716 + 1781 ], "__typename": [ - 80 + 84 ] }, "event_teams_bool_exp": { "_and": [ - 1708 + 1773 ], "_not": [ - 1708 + 1773 ], "_or": [ - 1708 + 1773 ], "created_at": [ - 4671 + 4955 ], "event": [ - 1753 + 1818 ], "event_id": [ - 5172 + 5456 ], "team": [ - 4632 + 4916 ], "team_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "event_teams_constraint": {}, "event_teams_insert_input": { "created_at": [ - 4670 + 4954 ], "event": [ - 1760 + 1825 ], "event_id": [ - 5170 + 5454 ], "team": [ - 4641 + 4925 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_teams_max_fields": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_teams_max_order_by": { "created_at": [ - 3094 + 3373 ], "event_id": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_teams_min_fields": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_teams_min_order_by": { "created_at": [ - 3094 + 3373 ], "event_id": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_teams_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1701 + 1766 ], "__typename": [ - 80 + 84 ] }, "event_teams_on_conflict": { "constraint": [ - 1709 + 1774 ], "update_columns": [ - 1723 + 1788 ], "where": [ - 1708 + 1773 ], "__typename": [ - 80 + 84 ] }, "event_teams_order_by": { "created_at": [ - 3094 + 3373 ], "event": [ - 1762 + 1827 ], "event_id": [ - 3094 + 3373 ], "team": [ - 4643 + 4927 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_teams_pk_columns_input": { "event_id": [ - 5170 + 5454 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_teams_select_column": {}, "event_teams_set_input": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_teams_stream_cursor_input": { "initial_value": [ - 1722 + 1787 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "event_teams_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_teams_update_column": {}, "event_teams_updates": { "_set": [ - 1720 + 1785 ], "where": [ - 1708 + 1773 ], "__typename": [ - 80 + 84 ] }, "event_tournaments": { "created_at": [ - 4670 + 4954 ], "event": [ - 1749 + 1814 ], "event_id": [ - 5170 + 5454 ], "tournament": [ - 5106 + 5390 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_aggregate": { "aggregate": [ - 1729 + 1794 ], "nodes": [ - 1725 + 1790 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_aggregate_bool_exp": { "count": [ - 1728 + 1793 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_aggregate_bool_exp_count": { "arguments": [ - 1743 + 1808 ], "distinct": [ - 5 + 6 ], "filter": [ - 1732 + 1797 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1743, + 1808, "[event_tournaments_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1735 + 1800 ], "min": [ - 1737 + 1802 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_aggregate_order_by": { "count": [ - 3094 + 3373 ], "max": [ - 1736 + 1801 ], "min": [ - 1738 + 1803 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_arr_rel_insert_input": { "data": [ - 1734 + 1799 ], "on_conflict": [ - 1740 + 1805 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_bool_exp": { "_and": [ - 1732 + 1797 ], "_not": [ - 1732 + 1797 ], "_or": [ - 1732 + 1797 ], "created_at": [ - 4671 + 4955 ], "event": [ - 1753 + 1818 ], "event_id": [ - 5172 + 5456 ], "tournament": [ - 5127 + 5411 ], "tournament_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_constraint": {}, "event_tournaments_insert_input": { "created_at": [ - 4670 + 4954 ], "event": [ - 1760 + 1825 ], "event_id": [ - 5170 + 5454 ], "tournament": [ - 5136 + 5420 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_max_fields": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_max_order_by": { "created_at": [ - 3094 + 3373 ], "event_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_min_fields": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_min_order_by": { "created_at": [ - 3094 + 3373 ], "event_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1725 + 1790 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_on_conflict": { "constraint": [ - 1733 + 1798 ], "update_columns": [ - 1747 + 1812 ], "where": [ - 1732 + 1797 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_order_by": { "created_at": [ - 3094 + 3373 ], "event": [ - 1762 + 1827 ], "event_id": [ - 3094 + 3373 ], "tournament": [ - 5138 + 5422 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_pk_columns_input": { "event_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_select_column": {}, "event_tournaments_set_input": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_stream_cursor_input": { "initial_value": [ - 1746 + 1811 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "event_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "event_tournaments_update_column": {}, "event_tournaments_updates": { "_set": [ - 1744 + 1809 ], "where": [ - 1732 + 1797 ], "__typename": [ - 80 + 84 ] }, "events": { "awards": [ - 195, + 200, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "awards_aggregate": [ - 196, + 201, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "banner": [ - 1536 + 1601 ], "banner_media_id": [ - 5170 + 5454 ], "can_upload_media": [ - 5 + 6 ], "can_view": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "ends_at": [ - 4670 + 4954 ], "hide_creator_organizer": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "is_organizer": [ - 5 + 6 ], "media": [ - 1536, + 1601, { "distinct_on": [ - 1599, + 1664, "[event_media_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1556, + 1621, "[event_media_order_by!]" ], "where": [ - 1545 + 1610 ] } ], "media_access": [ - 767 + 772 ], "media_aggregate": [ - 1537, + 1602, { "distinct_on": [ - 1599, + 1664, "[event_media_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1556, + 1621, "[event_media_order_by!]" ], "where": [ - 1545 + 1610 ] } ], "name": [ - 80 + 84 ], "organizer": [ - 4052 + 4331 ], "organizer_steam_id": [ - 264 + 269 ], "organizers": [ - 1619, + 1684, { "distinct_on": [ - 1640, + 1705, "[event_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1638, + 1703, "[event_organizers_order_by!]" ], "where": [ - 1628 + 1693 ] } ], "organizers_aggregate": [ - 1620, + 1685, { "distinct_on": [ - 1640, + 1705, "[event_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1638, + 1703, "[event_organizers_order_by!]" ], "where": [ - 1628 + 1693 ] } ], "player_stats": [ - 5173, + 5457, { "distinct_on": [ - 5199, + 5483, "[v_event_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5198, + 5482, "[v_event_player_stats_order_by!]" ], "where": [ - 5192 + 5476 ] } ], "player_stats_aggregate": [ - 5174, + 5458, { "distinct_on": [ - 5199, + 5483, "[v_event_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5198, + 5482, "[v_event_player_stats_order_by!]" ], "where": [ - 5192 + 5476 ] } ], "players": [ - 1660, + 1725, { "distinct_on": [ - 1681, + 1746, "[event_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1679, + 1744, "[event_players_order_by!]" ], "where": [ - 1669 + 1734 ] } ], "players_aggregate": [ - 1661, + 1726, { "distinct_on": [ - 1681, + 1746, "[event_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1679, + 1744, "[event_players_order_by!]" ], "where": [ - 1669 + 1734 ] } ], "starts_at": [ - 4670 + 4954 ], "teams": [ - 1701, + 1766, { "distinct_on": [ - 1719, + 1784, "[event_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1717, + 1782, "[event_teams_order_by!]" ], "where": [ - 1708 + 1773 ] } ], "teams_aggregate": [ - 1702, + 1767, { "distinct_on": [ - 1719, + 1784, "[event_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1717, + 1782, "[event_teams_order_by!]" ], "where": [ - 1708 + 1773 ] } ], "tournaments": [ - 1725, + 1790, { "distinct_on": [ - 1743, + 1808, "[event_tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1741, + 1806, "[event_tournaments_order_by!]" ], "where": [ - 1732 + 1797 ] } ], "tournaments_aggregate": [ - 1726, + 1791, { "distinct_on": [ - 1743, + 1808, "[event_tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1741, + 1806, "[event_tournaments_order_by!]" ], "where": [ - 1732 + 1797 ] } ], "visibility": [ - 787 + 792 ], "__typename": [ - 80 + 84 ] }, "events_aggregate": { "aggregate": [ - 1751 + 1816 ], "nodes": [ - 1749 + 1814 ], "__typename": [ - 80 + 84 ] }, "events_aggregate_fields": { "avg": [ - 1752 + 1817 ], "count": [ - 40, + 41, { "columns": [ - 1764, + 1829, "[events_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1757 + 1822 ], "min": [ - 1758 + 1823 ], "stddev": [ - 1766 + 1831 ], "stddev_pop": [ - 1767 + 1832 ], "stddev_samp": [ - 1768 + 1833 ], "sum": [ - 1771 + 1836 ], "var_pop": [ - 1774 + 1839 ], "var_samp": [ - 1775 + 1840 ], "variance": [ - 1776 + 1841 ], "__typename": [ - 80 + 84 ] }, "events_avg_fields": { "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "events_bool_exp": { "_and": [ - 1753 + 1818 ], "_not": [ - 1753 + 1818 ], "_or": [ - 1753 + 1818 ], "awards": [ - 204 + 209 ], "awards_aggregate": [ - 197 + 202 ], "banner": [ - 1545 + 1610 ], "banner_media_id": [ - 5172 + 5456 ], "can_upload_media": [ - 6 + 7 ], "can_view": [ - 6 + 7 ], "created_at": [ - 4671 + 4955 ], "description": [ - 82 + 86 ], "ends_at": [ - 4671 + 4955 ], "hide_creator_organizer": [ - 6 + 7 ], "id": [ - 5172 + 5456 ], "is_organizer": [ - 6 + 7 ], "media": [ - 1545 + 1610 ], "media_access": [ - 768 + 773 ], "media_aggregate": [ - 1538 + 1603 ], "name": [ - 82 + 86 ], "organizer": [ - 4056 + 4335 ], "organizer_steam_id": [ - 266 + 271 ], "organizers": [ - 1628 + 1693 ], "organizers_aggregate": [ - 1621 + 1686 ], "player_stats": [ - 5192 + 5476 ], "player_stats_aggregate": [ - 5175 + 5459 ], "players": [ - 1669 + 1734 ], "players_aggregate": [ - 1662 + 1727 ], "starts_at": [ - 4671 + 4955 ], "teams": [ - 1708 + 1773 ], "teams_aggregate": [ - 1703 + 1768 ], "tournaments": [ - 1732 + 1797 ], "tournaments_aggregate": [ - 1727 + 1792 ], "visibility": [ - 788 + 793 ], "__typename": [ - 80 + 84 ] }, "events_constraint": {}, "events_inc_input": { "organizer_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "events_insert_input": { "awards": [ - 201 + 206 ], "banner": [ - 1554 + 1619 ], "banner_media_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "ends_at": [ - 4670 + 4954 ], "hide_creator_organizer": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "media": [ - 1542 + 1607 ], "media_access": [ - 767 + 772 ], "name": [ - 80 + 84 ], "organizer": [ - 4063 + 4342 ], "organizer_steam_id": [ - 264 + 269 ], "organizers": [ - 1625 + 1690 ], "player_stats": [ - 5189 + 5473 ], "players": [ - 1666 + 1731 ], "starts_at": [ - 4670 + 4954 ], "teams": [ - 1707 + 1772 ], "tournaments": [ - 1731 + 1796 ], "visibility": [ - 787 + 792 ], "__typename": [ - 80 + 84 ] }, "events_max_fields": { "banner_media_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "ends_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "organizer_steam_id": [ - 264 + 269 ], "starts_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "events_min_fields": { "banner_media_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "ends_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "organizer_steam_id": [ - 264 + 269 ], "starts_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "events_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1749 + 1814 ], "__typename": [ - 80 + 84 ] }, "events_obj_rel_insert_input": { "data": [ - 1756 + 1821 ], "on_conflict": [ - 1761 + 1826 ], "__typename": [ - 80 + 84 ] }, "events_on_conflict": { "constraint": [ - 1754 + 1819 ], "update_columns": [ - 1772 + 1837 ], "where": [ - 1753 + 1818 ], "__typename": [ - 80 + 84 ] }, "events_order_by": { "awards_aggregate": [ - 200 + 205 ], "banner": [ - 1556 + 1621 ], "banner_media_id": [ - 3094 + 3373 ], "can_upload_media": [ - 3094 + 3373 ], "can_view": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "description": [ - 3094 + 3373 ], "ends_at": [ - 3094 + 3373 ], "hide_creator_organizer": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "is_organizer": [ - 3094 + 3373 ], "media_access": [ - 3094 + 3373 ], "media_aggregate": [ - 1541 + 1606 ], "name": [ - 3094 + 3373 ], "organizer": [ - 4065 + 4344 ], "organizer_steam_id": [ - 3094 + 3373 ], "organizers_aggregate": [ - 1624 + 1689 ], "player_stats_aggregate": [ - 5188 + 5472 ], "players_aggregate": [ - 1665 + 1730 ], "starts_at": [ - 3094 + 3373 ], "teams_aggregate": [ - 1706 + 1771 ], "tournaments_aggregate": [ - 1730 + 1795 ], "visibility": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "events_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "events_select_column": {}, "events_set_input": { "banner_media_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "ends_at": [ - 4670 + 4954 ], "hide_creator_organizer": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "media_access": [ - 767 + 772 ], "name": [ - 80 + 84 ], "organizer_steam_id": [ - 264 + 269 ], "starts_at": [ - 4670 + 4954 ], "visibility": [ - 787 + 792 ], "__typename": [ - 80 + 84 ] }, "events_stddev_fields": { "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "events_stddev_pop_fields": { "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "events_stddev_samp_fields": { "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "events_stream_cursor_input": { "initial_value": [ - 1770 + 1835 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "events_stream_cursor_value_input": { "banner_media_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "ends_at": [ - 4670 + 4954 ], "hide_creator_organizer": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "media_access": [ - 767 + 772 ], "name": [ - 80 + 84 ], "organizer_steam_id": [ - 264 + 269 ], "starts_at": [ - 4670 + 4954 ], "visibility": [ - 787 + 792 ], "__typename": [ - 80 + 84 ] }, "events_sum_fields": { "organizer_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "events_update_column": {}, "events_updates": { "_inc": [ - 1755 + 1820 ], "_set": [ - 1765 + 1830 ], "where": [ - 1753 + 1818 ], "__typename": [ - 80 + 84 ] }, "events_var_pop_fields": { "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "events_var_samp_fields": { "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "events_variance_fields": { "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "float8": {}, "float8_comparison_exp": { "_eq": [ - 1777 + 1842 ], "_gt": [ - 1777 + 1842 ], "_gte": [ - 1777 + 1842 ], "_in": [ - 1777 + 1842 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 1777 + 1842 ], "_lte": [ - 1777 + 1842 ], "_neq": [ - 1777 + 1842 ], "_nin": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "friends": { "e_status": [ - 802 + 807 ], "other_player_steam_id": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "status": [ - 807 + 812 ], "__typename": [ - 80 + 84 ] }, "friends_aggregate": { "aggregate": [ - 1781 + 1846 ], "nodes": [ - 1779 + 1844 ], "__typename": [ - 80 + 84 ] }, "friends_aggregate_fields": { "avg": [ - 1782 + 1847 ], "count": [ - 40, + 41, { "columns": [ - 1793, + 1858, "[friends_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1787 + 1852 ], "min": [ - 1788 + 1853 ], "stddev": [ - 1795 + 1860 ], "stddev_pop": [ - 1796 + 1861 ], "stddev_samp": [ - 1797 + 1862 ], "sum": [ - 1800 + 1865 ], "var_pop": [ - 1803 + 1868 ], "var_samp": [ - 1804 + 1869 ], "variance": [ - 1805 + 1870 ], "__typename": [ - 80 + 84 ] }, "friends_avg_fields": { "other_player_steam_id": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "friends_bool_exp": { "_and": [ - 1783 + 1848 ], "_not": [ - 1783 + 1848 ], "_or": [ - 1783 + 1848 ], "e_status": [ - 805 + 810 ], "other_player_steam_id": [ - 266 + 271 ], "player_steam_id": [ - 266 + 271 ], "status": [ - 808 + 813 ], "__typename": [ - 80 + 84 ] }, "friends_constraint": {}, "friends_inc_input": { "other_player_steam_id": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "friends_insert_input": { "e_status": [ - 813 + 818 ], "other_player_steam_id": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "status": [ - 807 + 812 ], "__typename": [ - 80 + 84 ] }, "friends_max_fields": { "other_player_steam_id": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "friends_min_fields": { "other_player_steam_id": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "friends_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1779 + 1844 ], "__typename": [ - 80 + 84 ] }, "friends_on_conflict": { "constraint": [ - 1784 + 1849 ], "update_columns": [ - 1801 + 1866 ], "where": [ - 1783 + 1848 ], "__typename": [ - 80 + 84 ] }, "friends_order_by": { "e_status": [ - 815 + 820 ], "other_player_steam_id": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "friends_pk_columns_input": { "other_player_steam_id": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "friends_select_column": {}, "friends_set_input": { "other_player_steam_id": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "status": [ - 807 + 812 ], "__typename": [ - 80 + 84 ] }, "friends_stddev_fields": { "other_player_steam_id": [ - 31 + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "friends_stddev_pop_fields": { + "other_player_steam_id": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "friends_stddev_samp_fields": { + "other_player_steam_id": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "friends_stream_cursor_input": { + "initial_value": [ + 1864 + ], + "ordering": [ + 352 + ], + "__typename": [ + 84 + ] + }, + "friends_stream_cursor_value_input": { + "other_player_steam_id": [ + 269 + ], + "player_steam_id": [ + 269 + ], + "status": [ + 812 + ], + "__typename": [ + 84 + ] + }, + "friends_sum_fields": { + "other_player_steam_id": [ + 269 + ], + "player_steam_id": [ + 269 + ], + "__typename": [ + 84 + ] + }, + "friends_update_column": {}, + "friends_updates": { + "_inc": [ + 1850 + ], + "_set": [ + 1859 + ], + "where": [ + 1848 + ], + "__typename": [ + 84 + ] + }, + "friends_var_pop_fields": { + "other_player_steam_id": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "friends_var_samp_fields": { + "other_player_steam_id": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "friends_variance_fields": { + "other_player_steam_id": [ + 32 ], "player_steam_id": [ - 31 + 32 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins": { + "config": [ + 2187, + { + "path": [ + 84 + ] + } + ], + "game_mode": [ + 1921 + ], + "game_mode_id": [ + 5454 + ], + "load_order": [ + 41 + ], + "plugin": [ + 2003 + ], + "plugin_slug": [ + 84 + ], + "required": [ + 6 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_aggregate": { + "aggregate": [ + 1877 + ], + "nodes": [ + 1871 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_aggregate_bool_exp": { + "bool_and": [ + 1874 + ], + "bool_or": [ + 1875 + ], + "count": [ + 1876 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_aggregate_bool_exp_bool_and": { + "arguments": [ + 1900 + ], + "distinct": [ + 6 + ], + "filter": [ + 1883 + ], + "predicate": [ + 7 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_aggregate_bool_exp_bool_or": { + "arguments": [ + 1901 + ], + "distinct": [ + 6 + ], + "filter": [ + 1883 + ], + "predicate": [ + 7 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_aggregate_bool_exp_count": { + "arguments": [ + 1899 + ], + "distinct": [ + 6 + ], + "filter": [ + 1883 + ], + "predicate": [ + 42 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_aggregate_fields": { + "avg": [ + 1881 + ], + "count": [ + 41, + { + "columns": [ + 1899, + "[game_mode_plugins_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1890 + ], + "min": [ + 1892 + ], + "stddev": [ + 1903 + ], + "stddev_pop": [ + 1905 + ], + "stddev_samp": [ + 1907 + ], + "sum": [ + 1911 + ], + "var_pop": [ + 1915 + ], + "var_samp": [ + 1917 + ], + "variance": [ + 1919 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_aggregate_order_by": { + "avg": [ + 1882 + ], + "count": [ + 3373 + ], + "max": [ + 1891 + ], + "min": [ + 1893 + ], + "stddev": [ + 1904 + ], + "stddev_pop": [ + 1906 + ], + "stddev_samp": [ + 1908 + ], + "sum": [ + 1912 + ], + "var_pop": [ + 1916 + ], + "var_samp": [ + 1918 + ], + "variance": [ + 1920 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_append_input": { + "config": [ + 2187 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_arr_rel_insert_input": { + "data": [ + 1889 + ], + "on_conflict": [ + 1895 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_avg_fields": { + "load_order": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_avg_order_by": { + "load_order": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_bool_exp": { + "_and": [ + 1883 + ], + "_not": [ + 1883 + ], + "_or": [ + 1883 + ], + "config": [ + 2189 + ], + "game_mode": [ + 1924 + ], + "game_mode_id": [ + 5456 + ], + "load_order": [ + 42 + ], + "plugin": [ + 2008 + ], + "plugin_slug": [ + 86 + ], + "required": [ + 7 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_constraint": {}, + "game_mode_plugins_delete_at_path_input": { + "config": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_delete_elem_input": { + "config": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_delete_key_input": { + "config": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_inc_input": { + "load_order": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_insert_input": { + "config": [ + 2187 + ], + "game_mode": [ + 1930 + ], + "game_mode_id": [ + 5454 + ], + "load_order": [ + 41 + ], + "plugin": [ + 2017 + ], + "plugin_slug": [ + 84 + ], + "required": [ + 6 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_max_fields": { + "game_mode_id": [ + 5454 + ], + "load_order": [ + 41 + ], + "plugin_slug": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_max_order_by": { + "game_mode_id": [ + 3373 + ], + "load_order": [ + 3373 + ], + "plugin_slug": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_min_fields": { + "game_mode_id": [ + 5454 + ], + "load_order": [ + 41 + ], + "plugin_slug": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_min_order_by": { + "game_mode_id": [ + 3373 + ], + "load_order": [ + 3373 + ], + "plugin_slug": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1871 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_on_conflict": { + "constraint": [ + 1884 + ], + "update_columns": [ + 1913 + ], + "where": [ + 1883 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_order_by": { + "config": [ + 3373 + ], + "game_mode": [ + 1932 + ], + "game_mode_id": [ + 3373 + ], + "load_order": [ + 3373 + ], + "plugin": [ + 2019 + ], + "plugin_slug": [ + 3373 + ], + "required": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_pk_columns_input": { + "game_mode_id": [ + 5454 + ], + "plugin_slug": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_prepend_input": { + "config": [ + 2187 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_select_column": {}, + "game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_and_arguments_columns": {}, + "game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns": {}, + "game_mode_plugins_set_input": { + "config": [ + 2187 + ], + "game_mode_id": [ + 5454 + ], + "load_order": [ + 41 + ], + "plugin_slug": [ + 84 + ], + "required": [ + 6 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_stddev_fields": { + "load_order": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_stddev_order_by": { + "load_order": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_stddev_pop_fields": { + "load_order": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_stddev_pop_order_by": { + "load_order": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_stddev_samp_fields": { + "load_order": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_stddev_samp_order_by": { + "load_order": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_stream_cursor_input": { + "initial_value": [ + 1910 + ], + "ordering": [ + 352 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_stream_cursor_value_input": { + "config": [ + 2187 + ], + "game_mode_id": [ + 5454 + ], + "load_order": [ + 41 + ], + "plugin_slug": [ + 84 + ], + "required": [ + 6 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_sum_fields": { + "load_order": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_sum_order_by": { + "load_order": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_update_column": {}, + "game_mode_plugins_updates": { + "_append": [ + 1879 + ], + "_delete_at_path": [ + 1885 + ], + "_delete_elem": [ + 1886 + ], + "_delete_key": [ + 1887 + ], + "_inc": [ + 1888 + ], + "_prepend": [ + 1898 + ], + "_set": [ + 1902 + ], + "where": [ + 1883 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_var_pop_fields": { + "load_order": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_var_pop_order_by": { + "load_order": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_var_samp_fields": { + "load_order": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_var_samp_order_by": { + "load_order": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_variance_fields": { + "load_order": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "game_mode_plugins_variance_order_by": { + "load_order": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_modes": { + "archived_at": [ + 4954 + ], + "cfg": [ + 84 + ], + "competitive_safe": [ + 6 + ], + "created_at": [ + 4954 + ], + "description": [ + 84 + ], + "enabled": [ + 6 + ], + "extra_game_params": [ + 84 + ], + "icon": [ + 84 + ], + "id": [ + 5454 + ], + "match_options": [ + 3015, + { + "distinct_on": [ + 3039, + "[match_options_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3037, + "[match_options_order_by!]" + ], + "where": [ + 3026 + ] + } + ], + "match_options_aggregate": [ + 3016, + { + "distinct_on": [ + 3039, + "[match_options_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3037, + "[match_options_order_by!]" + ], + "where": [ + 3026 + ] + } + ], + "name": [ + 84 + ], + "plugins": [ + 1871, + { + "distinct_on": [ + 1899, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1896, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1883 + ] + } + ], + "plugins_aggregate": [ + 1872, + { + "distinct_on": [ + 1899, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1896, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1883 + ] + } + ], + "runtime_conflicts": [ + 2187, + { + "path": [ + 84 + ] + } + ], + "slug": [ + 84 + ], + "supported_runtimes": [ + 2187, + { + "path": [ + 84 + ] + } + ], + "updated_at": [ + 4954 + ], + "__typename": [ + 84 + ] + }, + "game_modes_aggregate": { + "aggregate": [ + 1923 + ], + "nodes": [ + 1921 + ], + "__typename": [ + 84 + ] + }, + "game_modes_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1934, + "[game_modes_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1927 + ], + "min": [ + 1928 + ], + "__typename": [ + 84 + ] + }, + "game_modes_bool_exp": { + "_and": [ + 1924 + ], + "_not": [ + 1924 + ], + "_or": [ + 1924 + ], + "archived_at": [ + 4955 + ], + "cfg": [ + 86 + ], + "competitive_safe": [ + 7 + ], + "created_at": [ + 4955 + ], + "description": [ + 86 + ], + "enabled": [ + 7 + ], + "extra_game_params": [ + 86 + ], + "icon": [ + 86 + ], + "id": [ + 5456 + ], + "match_options": [ + 3026 + ], + "match_options_aggregate": [ + 3017 + ], + "name": [ + 86 + ], + "plugins": [ + 1883 + ], + "plugins_aggregate": [ + 1873 + ], + "runtime_conflicts": [ + 2189 + ], + "slug": [ + 86 + ], + "supported_runtimes": [ + 2189 + ], + "updated_at": [ + 4955 + ], + "__typename": [ + 84 + ] + }, + "game_modes_constraint": {}, + "game_modes_insert_input": { + "archived_at": [ + 4954 + ], + "cfg": [ + 84 + ], + "competitive_safe": [ + 6 + ], + "created_at": [ + 4954 + ], + "description": [ + 84 + ], + "enabled": [ + 6 + ], + "extra_game_params": [ + 84 + ], + "icon": [ + 84 + ], + "id": [ + 5454 + ], + "match_options": [ + 3023 + ], + "name": [ + 84 + ], + "plugins": [ + 1880 + ], + "slug": [ + 84 + ], + "updated_at": [ + 4954 + ], + "__typename": [ + 84 + ] + }, + "game_modes_max_fields": { + "archived_at": [ + 4954 + ], + "cfg": [ + 84 + ], + "created_at": [ + 4954 + ], + "description": [ + 84 + ], + "extra_game_params": [ + 84 + ], + "icon": [ + 84 + ], + "id": [ + 5454 + ], + "name": [ + 84 + ], + "slug": [ + 84 + ], + "updated_at": [ + 4954 + ], + "__typename": [ + 84 + ] + }, + "game_modes_min_fields": { + "archived_at": [ + 4954 + ], + "cfg": [ + 84 + ], + "created_at": [ + 4954 + ], + "description": [ + 84 + ], + "extra_game_params": [ + 84 + ], + "icon": [ + 84 + ], + "id": [ + 5454 + ], + "name": [ + 84 + ], + "slug": [ + 84 + ], + "updated_at": [ + 4954 + ], + "__typename": [ + 84 + ] + }, + "game_modes_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1921 + ], + "__typename": [ + 84 + ] + }, + "game_modes_obj_rel_insert_input": { + "data": [ + 1926 + ], + "on_conflict": [ + 1931 + ], + "__typename": [ + 84 + ] + }, + "game_modes_on_conflict": { + "constraint": [ + 1925 + ], + "update_columns": [ + 1938 + ], + "where": [ + 1924 + ], + "__typename": [ + 84 + ] + }, + "game_modes_order_by": { + "archived_at": [ + 3373 + ], + "cfg": [ + 3373 + ], + "competitive_safe": [ + 3373 + ], + "created_at": [ + 3373 + ], + "description": [ + 3373 + ], + "enabled": [ + 3373 + ], + "extra_game_params": [ + 3373 + ], + "icon": [ + 3373 + ], + "id": [ + 3373 + ], + "match_options_aggregate": [ + 3022 + ], + "name": [ + 3373 + ], + "plugins_aggregate": [ + 1878 + ], + "runtime_conflicts": [ + 3373 + ], + "slug": [ + 3373 + ], + "supported_runtimes": [ + 3373 + ], + "updated_at": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_modes_pk_columns_input": { + "id": [ + 5454 + ], + "__typename": [ + 84 + ] + }, + "game_modes_select_column": {}, + "game_modes_set_input": { + "archived_at": [ + 4954 + ], + "cfg": [ + 84 + ], + "competitive_safe": [ + 6 + ], + "created_at": [ + 4954 + ], + "description": [ + 84 + ], + "enabled": [ + 6 + ], + "extra_game_params": [ + 84 + ], + "icon": [ + 84 + ], + "id": [ + 5454 + ], + "name": [ + 84 + ], + "slug": [ + 84 + ], + "updated_at": [ + 4954 + ], + "__typename": [ + 84 + ] + }, + "game_modes_stream_cursor_input": { + "initial_value": [ + 1937 + ], + "ordering": [ + 352 + ], + "__typename": [ + 84 + ] + }, + "game_modes_stream_cursor_value_input": { + "archived_at": [ + 4954 + ], + "cfg": [ + 84 + ], + "competitive_safe": [ + 6 + ], + "created_at": [ + 4954 + ], + "description": [ + 84 + ], + "enabled": [ + 6 + ], + "extra_game_params": [ + 84 + ], + "icon": [ + 84 + ], + "id": [ + 5454 + ], + "name": [ + 84 + ], + "slug": [ + 84 + ], + "updated_at": [ + 4954 + ], + "__typename": [ + 84 + ] + }, + "game_modes_update_column": {}, + "game_modes_updates": { + "_set": [ + 1935 + ], + "where": [ + 1924 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs": { + "always_load": [ + 6 + ], + "channel": [ + 853 + ], + "created_at": [ + 4954 + ], + "disable_server_guidelines": [ + 6 + ], + "enabled": [ + 6 + ], + "plugin": [ + 2003 + ], + "plugin_slug": [ + 84 + ], + "updated_at": [ + 4954 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs_aggregate": { + "aggregate": [ + 1942 + ], + "nodes": [ + 1940 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1952, + "[game_plugin_installs_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1946 + ], + "min": [ + 1947 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs_bool_exp": { + "_and": [ + 1943 + ], + "_not": [ + 1943 + ], + "_or": [ + 1943 + ], + "always_load": [ + 7 + ], + "channel": [ + 854 + ], + "created_at": [ + 4955 + ], + "disable_server_guidelines": [ + 7 + ], + "enabled": [ + 7 + ], + "plugin": [ + 2008 + ], + "plugin_slug": [ + 86 + ], + "updated_at": [ + 4955 + ], + "version": [ + 86 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs_constraint": {}, + "game_plugin_installs_insert_input": { + "always_load": [ + 6 + ], + "channel": [ + 853 + ], + "created_at": [ + 4954 + ], + "disable_server_guidelines": [ + 6 + ], + "enabled": [ + 6 + ], + "plugin": [ + 2017 + ], + "plugin_slug": [ + 84 + ], + "updated_at": [ + 4954 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs_max_fields": { + "created_at": [ + 4954 + ], + "plugin_slug": [ + 84 + ], + "updated_at": [ + 4954 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs_min_fields": { + "created_at": [ + 4954 + ], + "plugin_slug": [ + 84 + ], + "updated_at": [ + 4954 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1940 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs_on_conflict": { + "constraint": [ + 1944 + ], + "update_columns": [ + 1956 + ], + "where": [ + 1943 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs_order_by": { + "always_load": [ + 3373 + ], + "channel": [ + 3373 + ], + "created_at": [ + 3373 + ], + "disable_server_guidelines": [ + 3373 + ], + "enabled": [ + 3373 + ], + "plugin": [ + 2019 + ], + "plugin_slug": [ + 3373 + ], + "updated_at": [ + 3373 + ], + "version": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs_pk_columns_input": { + "plugin_slug": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs_select_column": {}, + "game_plugin_installs_set_input": { + "always_load": [ + 6 + ], + "channel": [ + 853 + ], + "created_at": [ + 4954 + ], + "disable_server_guidelines": [ + 6 + ], + "enabled": [ + 6 + ], + "plugin_slug": [ + 84 + ], + "updated_at": [ + 4954 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs_stream_cursor_input": { + "initial_value": [ + 1955 + ], + "ordering": [ + 352 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs_stream_cursor_value_input": { + "always_load": [ + 6 + ], + "channel": [ + 853 + ], + "created_at": [ + 4954 + ], + "disable_server_guidelines": [ + 6 + ], + "enabled": [ + 6 + ], + "plugin_slug": [ + 84 + ], + "updated_at": [ + 4954 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_installs_update_column": {}, + "game_plugin_installs_updates": { + "_set": [ + 1953 + ], + "where": [ + 1943 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions": { + "install_path": [ + 84 + ], + "layout": [ + 84 + ], + "plugin": [ + 2003 + ], + "plugin_slug": [ + 84 + ], + "prerelease": [ + 6 + ], + "published_at": [ + 4954 + ], + "runtime": [ + 1263 + ], + "sha256": [ + 84 + ], + "size": [ + 41 + ], + "url": [ + 84 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_aggregate": { + "aggregate": [ + 1964 + ], + "nodes": [ + 1958 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_aggregate_bool_exp": { + "bool_and": [ + 1961 + ], + "bool_or": [ + 1962 + ], + "count": [ + 1963 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_aggregate_bool_exp_bool_and": { + "arguments": [ + 1982 + ], + "distinct": [ + 6 + ], + "filter": [ + 1969 + ], + "predicate": [ + 7 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_aggregate_bool_exp_bool_or": { + "arguments": [ + 1983 + ], + "distinct": [ + 6 + ], + "filter": [ + 1969 + ], + "predicate": [ + 7 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_aggregate_bool_exp_count": { + "arguments": [ + 1981 + ], + "distinct": [ + 6 + ], + "filter": [ + 1969 + ], + "predicate": [ + 42 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_aggregate_fields": { + "avg": [ + 1967 + ], + "count": [ + 41, + { + "columns": [ + 1981, + "[game_plugin_versions_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1973 + ], + "min": [ + 1975 + ], + "stddev": [ + 1985 + ], + "stddev_pop": [ + 1987 + ], + "stddev_samp": [ + 1989 + ], + "sum": [ + 1993 + ], + "var_pop": [ + 1997 + ], + "var_samp": [ + 1999 + ], + "variance": [ + 2001 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_aggregate_order_by": { + "avg": [ + 1968 + ], + "count": [ + 3373 + ], + "max": [ + 1974 + ], + "min": [ + 1976 + ], + "stddev": [ + 1986 + ], + "stddev_pop": [ + 1988 + ], + "stddev_samp": [ + 1990 + ], + "sum": [ + 1994 + ], + "var_pop": [ + 1998 + ], + "var_samp": [ + 2000 + ], + "variance": [ + 2002 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_arr_rel_insert_input": { + "data": [ + 1972 + ], + "on_conflict": [ + 1978 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_avg_fields": { + "size": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_avg_order_by": { + "size": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_bool_exp": { + "_and": [ + 1969 + ], + "_not": [ + 1969 + ], + "_or": [ + 1969 + ], + "install_path": [ + 86 + ], + "layout": [ + 86 + ], + "plugin": [ + 2008 + ], + "plugin_slug": [ + 86 + ], + "prerelease": [ + 7 + ], + "published_at": [ + 4955 + ], + "runtime": [ + 1264 + ], + "sha256": [ + 86 + ], + "size": [ + 42 + ], + "url": [ + 86 + ], + "version": [ + 86 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_constraint": {}, + "game_plugin_versions_inc_input": { + "size": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_insert_input": { + "install_path": [ + 84 + ], + "layout": [ + 84 + ], + "plugin": [ + 2017 + ], + "plugin_slug": [ + 84 + ], + "prerelease": [ + 6 + ], + "published_at": [ + 4954 + ], + "runtime": [ + 1263 + ], + "sha256": [ + 84 + ], + "size": [ + 41 + ], + "url": [ + 84 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_max_fields": { + "install_path": [ + 84 + ], + "layout": [ + 84 + ], + "plugin_slug": [ + 84 + ], + "published_at": [ + 4954 + ], + "sha256": [ + 84 + ], + "size": [ + 41 + ], + "url": [ + 84 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_max_order_by": { + "install_path": [ + 3373 + ], + "layout": [ + 3373 + ], + "plugin_slug": [ + 3373 + ], + "published_at": [ + 3373 + ], + "sha256": [ + 3373 + ], + "size": [ + 3373 + ], + "url": [ + 3373 + ], + "version": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_min_fields": { + "install_path": [ + 84 + ], + "layout": [ + 84 + ], + "plugin_slug": [ + 84 + ], + "published_at": [ + 4954 + ], + "sha256": [ + 84 + ], + "size": [ + 41 + ], + "url": [ + 84 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_min_order_by": { + "install_path": [ + 3373 + ], + "layout": [ + 3373 + ], + "plugin_slug": [ + 3373 + ], + "published_at": [ + 3373 + ], + "sha256": [ + 3373 + ], + "size": [ + 3373 + ], + "url": [ + 3373 + ], + "version": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1958 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_on_conflict": { + "constraint": [ + 1970 + ], + "update_columns": [ + 1995 + ], + "where": [ + 1969 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_order_by": { + "install_path": [ + 3373 + ], + "layout": [ + 3373 + ], + "plugin": [ + 2019 + ], + "plugin_slug": [ + 3373 + ], + "prerelease": [ + 3373 + ], + "published_at": [ + 3373 + ], + "runtime": [ + 3373 + ], + "sha256": [ + 3373 + ], + "size": [ + 3373 + ], + "url": [ + 3373 + ], + "version": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_pk_columns_input": { + "plugin_slug": [ + 84 + ], + "runtime": [ + 1263 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_select_column": {}, + "game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_and_arguments_columns": {}, + "game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns": {}, + "game_plugin_versions_set_input": { + "install_path": [ + 84 + ], + "layout": [ + 84 + ], + "plugin_slug": [ + 84 + ], + "prerelease": [ + 6 + ], + "published_at": [ + 4954 + ], + "runtime": [ + 1263 + ], + "sha256": [ + 84 + ], + "size": [ + 41 + ], + "url": [ + 84 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_stddev_fields": { + "size": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_stddev_order_by": { + "size": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_stddev_pop_fields": { + "size": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_stddev_pop_order_by": { + "size": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_stddev_samp_fields": { + "size": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_stddev_samp_order_by": { + "size": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_stream_cursor_input": { + "initial_value": [ + 1992 + ], + "ordering": [ + 352 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_stream_cursor_value_input": { + "install_path": [ + 84 + ], + "layout": [ + 84 + ], + "plugin_slug": [ + 84 + ], + "prerelease": [ + 6 + ], + "published_at": [ + 4954 + ], + "runtime": [ + 1263 + ], + "sha256": [ + 84 + ], + "size": [ + 41 + ], + "url": [ + 84 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_sum_fields": { + "size": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_sum_order_by": { + "size": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_update_column": {}, + "game_plugin_versions_updates": { + "_inc": [ + 1971 + ], + "_set": [ + 1984 + ], + "where": [ + 1969 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_var_pop_fields": { + "size": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_var_pop_order_by": { + "size": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_var_samp_fields": { + "size": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_var_samp_order_by": { + "size": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_variance_fields": { + "size": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "game_plugin_versions_variance_order_by": { + "size": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_plugins": { + "author": [ + 84 + ], + "config_path": [ + 84 + ], + "config_schema": [ + 2187, + { + "path": [ + 84 + ] + } + ], + "cvars": [ + 84 + ], + "description": [ + 84 + ], + "game_modes": [ + 1871, + { + "distinct_on": [ + 1899, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1896, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1883 + ] + } + ], + "game_modes_aggregate": [ + 1872, + { + "distinct_on": [ + 1899, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1896, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1883 + ] + } + ], + "homepage": [ + 84 + ], + "hot_swappable": [ + 6 + ], + "install_state": [ + 84 + ], + "installed_node_count": [ + 41 + ], + "kind": [ + 893 + ], + "name": [ + 84 + ], + "node_installs": [ + 2035, + { + "distinct_on": [ + 2055, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2053, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2044 + ] + } + ], + "node_installs_aggregate": [ + 2036, + { + "distinct_on": [ + 2055, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2053, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2044 + ] + } + ], + "pairs_with": [ + 84 + ], + "panel": [ + 2187, + { + "path": [ + 84 + ] + } + ], + "requires_server_guidelines_disabled": [ + 6 + ], + "requires_service": [ + 84 + ], + "slug": [ + 84 + ], + "source": [ + 84 + ], + "synced_at": [ + 4954 + ], + "tags": [ + 84 + ], + "target_node_count": [ + 41 + ], + "verified": [ + 6 + ], + "versions": [ + 1958, + { + "distinct_on": [ + 1981, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1979, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 1969 + ] + } + ], + "versions_aggregate": [ + 1959, + { + "distinct_on": [ + 1981, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1979, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 1969 + ] + } + ], + "wiring": [ + 2187, + { + "path": [ + 84 + ] + } + ], + "__typename": [ + 84 + ] + }, + "game_plugins_aggregate": { + "aggregate": [ + 2005 + ], + "nodes": [ + 2003 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_aggregate_fields": { + "avg": [ + 2007 + ], + "count": [ + 41, + { + "columns": [ + 2022, + "[game_plugins_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2014 + ], + "min": [ + 2015 + ], + "stddev": [ + 2024 + ], + "stddev_pop": [ + 2025 + ], + "stddev_samp": [ + 2026 + ], + "sum": [ + 2029 + ], + "var_pop": [ + 2032 + ], + "var_samp": [ + 2033 + ], + "variance": [ + 2034 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_append_input": { + "config_schema": [ + 2187 + ], + "panel": [ + 2187 + ], + "wiring": [ + 2187 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_avg_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_bool_exp": { + "_and": [ + 2008 + ], + "_not": [ + 2008 + ], + "_or": [ + 2008 + ], + "author": [ + 86 + ], + "config_path": [ + 86 + ], + "config_schema": [ + 2189 + ], + "cvars": [ + 85 + ], + "description": [ + 86 + ], + "game_modes": [ + 1883 + ], + "game_modes_aggregate": [ + 1873 + ], + "homepage": [ + 86 + ], + "hot_swappable": [ + 7 + ], + "install_state": [ + 86 + ], + "installed_node_count": [ + 42 + ], + "kind": [ + 894 + ], + "name": [ + 86 + ], + "node_installs": [ + 2044 + ], + "node_installs_aggregate": [ + 2037 + ], + "pairs_with": [ + 85 + ], + "panel": [ + 2189 + ], + "requires_server_guidelines_disabled": [ + 7 + ], + "requires_service": [ + 86 + ], + "slug": [ + 86 + ], + "source": [ + 86 + ], + "synced_at": [ + 4955 + ], + "tags": [ + 85 + ], + "target_node_count": [ + 42 + ], + "verified": [ + 7 + ], + "versions": [ + 1969 + ], + "versions_aggregate": [ + 1960 + ], + "wiring": [ + 2189 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_constraint": {}, + "game_plugins_delete_at_path_input": { + "config_schema": [ + 84 + ], + "panel": [ + 84 + ], + "wiring": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_delete_elem_input": { + "config_schema": [ + 41 + ], + "panel": [ + 41 + ], + "wiring": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_delete_key_input": { + "config_schema": [ + 84 + ], + "panel": [ + 84 + ], + "wiring": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_insert_input": { + "author": [ + 84 + ], + "config_path": [ + 84 + ], + "config_schema": [ + 2187 + ], + "cvars": [ + 84 + ], + "description": [ + 84 + ], + "game_modes": [ + 1880 + ], + "homepage": [ + 84 + ], + "hot_swappable": [ + 6 + ], + "kind": [ + 893 + ], + "name": [ + 84 + ], + "node_installs": [ + 2043 + ], + "pairs_with": [ + 84 + ], + "panel": [ + 2187 + ], + "requires_server_guidelines_disabled": [ + 6 + ], + "requires_service": [ + 84 + ], + "slug": [ + 84 + ], + "source": [ + 84 + ], + "synced_at": [ + 4954 + ], + "tags": [ + 84 + ], + "verified": [ + 6 + ], + "versions": [ + 1966 + ], + "wiring": [ + 2187 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_max_fields": { + "author": [ + 84 + ], + "config_path": [ + 84 + ], + "cvars": [ + 84 + ], + "description": [ + 84 + ], + "homepage": [ + 84 + ], + "install_state": [ + 84 + ], + "installed_node_count": [ + 41 + ], + "name": [ + 84 + ], + "pairs_with": [ + 84 + ], + "requires_service": [ + 84 + ], + "slug": [ + 84 + ], + "source": [ + 84 + ], + "synced_at": [ + 4954 + ], + "tags": [ + 84 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_min_fields": { + "author": [ + 84 + ], + "config_path": [ + 84 + ], + "cvars": [ + 84 + ], + "description": [ + 84 + ], + "homepage": [ + 84 + ], + "install_state": [ + 84 + ], + "installed_node_count": [ + 41 + ], + "name": [ + 84 + ], + "pairs_with": [ + 84 + ], + "requires_service": [ + 84 + ], + "slug": [ + 84 + ], + "source": [ + 84 + ], + "synced_at": [ + 4954 + ], + "tags": [ + 84 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2003 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_obj_rel_insert_input": { + "data": [ + 2013 + ], + "on_conflict": [ + 2018 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_on_conflict": { + "constraint": [ + 2009 + ], + "update_columns": [ + 2030 + ], + "where": [ + 2008 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_order_by": { + "author": [ + 3373 + ], + "config_path": [ + 3373 + ], + "config_schema": [ + 3373 + ], + "cvars": [ + 3373 + ], + "description": [ + 3373 + ], + "game_modes_aggregate": [ + 1878 + ], + "homepage": [ + 3373 + ], + "hot_swappable": [ + 3373 + ], + "install_state": [ + 3373 + ], + "installed_node_count": [ + 3373 + ], + "kind": [ + 3373 + ], + "name": [ + 3373 + ], + "node_installs_aggregate": [ + 2042 + ], + "pairs_with": [ + 3373 + ], + "panel": [ + 3373 + ], + "requires_server_guidelines_disabled": [ + 3373 + ], + "requires_service": [ + 3373 + ], + "slug": [ + 3373 + ], + "source": [ + 3373 + ], + "synced_at": [ + 3373 + ], + "tags": [ + 3373 + ], + "target_node_count": [ + 3373 + ], + "verified": [ + 3373 + ], + "versions_aggregate": [ + 1965 + ], + "wiring": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_pk_columns_input": { + "slug": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_prepend_input": { + "config_schema": [ + 2187 + ], + "panel": [ + 2187 + ], + "wiring": [ + 2187 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_select_column": {}, + "game_plugins_set_input": { + "author": [ + 84 + ], + "config_path": [ + 84 + ], + "config_schema": [ + 2187 + ], + "cvars": [ + 84 + ], + "description": [ + 84 + ], + "homepage": [ + 84 + ], + "hot_swappable": [ + 6 + ], + "kind": [ + 893 + ], + "name": [ + 84 + ], + "pairs_with": [ + 84 + ], + "panel": [ + 2187 + ], + "requires_server_guidelines_disabled": [ + 6 + ], + "requires_service": [ + 84 + ], + "slug": [ + 84 + ], + "source": [ + 84 + ], + "synced_at": [ + 4954 + ], + "tags": [ + 84 + ], + "verified": [ + 6 + ], + "wiring": [ + 2187 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_stddev_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_stddev_pop_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_stddev_samp_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_stream_cursor_input": { + "initial_value": [ + 2028 + ], + "ordering": [ + 352 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_stream_cursor_value_input": { + "author": [ + 84 + ], + "config_path": [ + 84 + ], + "config_schema": [ + 2187 + ], + "cvars": [ + 84 + ], + "description": [ + 84 + ], + "homepage": [ + 84 + ], + "hot_swappable": [ + 6 + ], + "kind": [ + 893 + ], + "name": [ + 84 + ], + "pairs_with": [ + 84 + ], + "panel": [ + 2187 + ], + "requires_server_guidelines_disabled": [ + 6 + ], + "requires_service": [ + 84 + ], + "slug": [ + 84 + ], + "source": [ + 84 + ], + "synced_at": [ + 4954 + ], + "tags": [ + 84 + ], + "verified": [ + 6 + ], + "wiring": [ + 2187 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_sum_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_update_column": {}, + "game_plugins_updates": { + "_append": [ + 2006 + ], + "_delete_at_path": [ + 2010 + ], + "_delete_elem": [ + 2011 + ], + "_delete_key": [ + 2012 + ], + "_prepend": [ + 2021 + ], + "_set": [ + 2023 + ], + "where": [ + 2008 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_var_pop_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_var_samp_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_plugins_variance_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins": { + "channel": [ + 853 + ], + "created_at": [ + 4954 + ], + "detected": [ + 6 + ], + "detected_version": [ + 84 + ], + "game_server_node": [ + 2063 + ], + "game_server_node_id": [ + 84 + ], + "id": [ + 5454 + ], + "installed_at": [ + 4954 + ], + "last_error": [ + 84 + ], + "plugin": [ + 2003 + ], + "plugin_slug": [ + 84 + ], + "runtime": [ + 1263 + ], + "source": [ + 84 + ], + "status": [ + 873 + ], + "updated_at": [ + 4954 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_aggregate": { + "aggregate": [ + 2041 + ], + "nodes": [ + 2035 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_aggregate_bool_exp": { + "bool_and": [ + 2038 + ], + "bool_or": [ + 2039 + ], + "count": [ + 2040 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_aggregate_bool_exp_bool_and": { + "arguments": [ + 2056 + ], + "distinct": [ + 6 + ], + "filter": [ + 2044 + ], + "predicate": [ + 7 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_aggregate_bool_exp_bool_or": { + "arguments": [ + 2057 + ], + "distinct": [ + 6 + ], + "filter": [ + 2044 + ], + "predicate": [ + 7 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_aggregate_bool_exp_count": { + "arguments": [ + 2055 + ], + "distinct": [ + 6 + ], + "filter": [ + 2044 + ], + "predicate": [ + 42 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 2055, + "[game_server_node_plugins_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2047 + ], + "min": [ + 2049 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_aggregate_order_by": { + "count": [ + 3373 + ], + "max": [ + 2048 + ], + "min": [ + 2050 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_arr_rel_insert_input": { + "data": [ + 2046 + ], + "on_conflict": [ + 2052 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_bool_exp": { + "_and": [ + 2044 + ], + "_not": [ + 2044 + ], + "_or": [ + 2044 + ], + "channel": [ + 854 + ], + "created_at": [ + 4955 + ], + "detected": [ + 7 + ], + "detected_version": [ + 86 + ], + "game_server_node": [ + 2075 + ], + "game_server_node_id": [ + 86 + ], + "id": [ + 5456 + ], + "installed_at": [ + 4955 + ], + "last_error": [ + 86 + ], + "plugin": [ + 2008 + ], + "plugin_slug": [ + 86 + ], + "runtime": [ + 1264 + ], + "source": [ + 86 + ], + "status": [ + 874 + ], + "updated_at": [ + 4955 + ], + "version": [ + 86 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_constraint": {}, + "game_server_node_plugins_insert_input": { + "channel": [ + 853 + ], + "created_at": [ + 4954 + ], + "detected": [ + 6 + ], + "detected_version": [ + 84 + ], + "game_server_node": [ + 2087 + ], + "game_server_node_id": [ + 84 + ], + "id": [ + 5454 + ], + "installed_at": [ + 4954 + ], + "last_error": [ + 84 + ], + "plugin": [ + 2017 + ], + "plugin_slug": [ + 84 + ], + "runtime": [ + 1263 + ], + "source": [ + 84 + ], + "status": [ + 873 + ], + "updated_at": [ + 4954 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_max_fields": { + "created_at": [ + 4954 + ], + "detected_version": [ + 84 + ], + "game_server_node_id": [ + 84 + ], + "id": [ + 5454 + ], + "installed_at": [ + 4954 + ], + "last_error": [ + 84 + ], + "plugin_slug": [ + 84 + ], + "source": [ + 84 + ], + "updated_at": [ + 4954 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_max_order_by": { + "created_at": [ + 3373 + ], + "detected_version": [ + 3373 + ], + "game_server_node_id": [ + 3373 + ], + "id": [ + 3373 + ], + "installed_at": [ + 3373 + ], + "last_error": [ + 3373 + ], + "plugin_slug": [ + 3373 + ], + "source": [ + 3373 + ], + "updated_at": [ + 3373 + ], + "version": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_min_fields": { + "created_at": [ + 4954 + ], + "detected_version": [ + 84 + ], + "game_server_node_id": [ + 84 + ], + "id": [ + 5454 + ], + "installed_at": [ + 4954 + ], + "last_error": [ + 84 + ], + "plugin_slug": [ + 84 + ], + "source": [ + 84 + ], + "updated_at": [ + 4954 + ], + "version": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_min_order_by": { + "created_at": [ + 3373 + ], + "detected_version": [ + 3373 + ], + "game_server_node_id": [ + 3373 + ], + "id": [ + 3373 + ], + "installed_at": [ + 3373 + ], + "last_error": [ + 3373 + ], + "plugin_slug": [ + 3373 + ], + "source": [ + 3373 + ], + "updated_at": [ + 3373 + ], + "version": [ + 3373 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2035 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_on_conflict": { + "constraint": [ + 2045 + ], + "update_columns": [ + 2061 + ], + "where": [ + 2044 + ], + "__typename": [ + 84 + ] + }, + "game_server_node_plugins_order_by": { + "channel": [ + 3373 + ], + "created_at": [ + 3373 + ], + "detected": [ + 3373 + ], + "detected_version": [ + 3373 + ], + "game_server_node": [ + 2089 + ], + "game_server_node_id": [ + 3373 + ], + "id": [ + 3373 + ], + "installed_at": [ + 3373 + ], + "last_error": [ + 3373 + ], + "plugin": [ + 2019 + ], + "plugin_slug": [ + 3373 + ], + "runtime": [ + 3373 + ], + "source": [ + 3373 + ], + "status": [ + 3373 + ], + "updated_at": [ + 3373 + ], + "version": [ + 3373 ], "__typename": [ - 80 + 84 ] }, - "friends_stddev_pop_fields": { - "other_player_steam_id": [ - 31 - ], - "player_steam_id": [ - 31 + "game_server_node_plugins_pk_columns_input": { + "id": [ + 5454 ], "__typename": [ - 80 + 84 ] }, - "friends_stddev_samp_fields": { - "other_player_steam_id": [ - 31 + "game_server_node_plugins_select_column": {}, + "game_server_node_plugins_select_column_game_server_node_plugins_aggregate_bool_exp_bool_and_arguments_columns": {}, + "game_server_node_plugins_select_column_game_server_node_plugins_aggregate_bool_exp_bool_or_arguments_columns": {}, + "game_server_node_plugins_set_input": { + "channel": [ + 853 ], - "player_steam_id": [ - 31 + "created_at": [ + 4954 + ], + "detected": [ + 6 + ], + "detected_version": [ + 84 + ], + "game_server_node_id": [ + 84 + ], + "id": [ + 5454 + ], + "installed_at": [ + 4954 + ], + "last_error": [ + 84 + ], + "plugin_slug": [ + 84 + ], + "runtime": [ + 1263 + ], + "source": [ + 84 + ], + "status": [ + 873 + ], + "updated_at": [ + 4954 + ], + "version": [ + 84 ], "__typename": [ - 80 + 84 ] }, - "friends_stream_cursor_input": { + "game_server_node_plugins_stream_cursor_input": { "initial_value": [ - 1799 + 2060 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, - "friends_stream_cursor_value_input": { - "other_player_steam_id": [ - 264 + "game_server_node_plugins_stream_cursor_value_input": { + "channel": [ + 853 ], - "player_steam_id": [ - 264 + "created_at": [ + 4954 ], - "status": [ - 807 + "detected": [ + 6 ], - "__typename": [ - 80 - ] - }, - "friends_sum_fields": { - "other_player_steam_id": [ - 264 + "detected_version": [ + 84 ], - "player_steam_id": [ - 264 + "game_server_node_id": [ + 84 ], - "__typename": [ - 80 - ] - }, - "friends_update_column": {}, - "friends_updates": { - "_inc": [ - 1785 + "id": [ + 5454 ], - "_set": [ - 1794 + "installed_at": [ + 4954 ], - "where": [ - 1783 + "last_error": [ + 84 ], - "__typename": [ - 80 - ] - }, - "friends_var_pop_fields": { - "other_player_steam_id": [ - 31 + "plugin_slug": [ + 84 ], - "player_steam_id": [ - 31 + "runtime": [ + 1263 ], - "__typename": [ - 80 - ] - }, - "friends_var_samp_fields": { - "other_player_steam_id": [ - 31 + "source": [ + 84 ], - "player_steam_id": [ - 31 + "status": [ + 873 + ], + "updated_at": [ + 4954 + ], + "version": [ + 84 ], "__typename": [ - 80 + 84 ] }, - "friends_variance_fields": { - "other_player_steam_id": [ - 31 + "game_server_node_plugins_update_column": {}, + "game_server_node_plugins_updates": { + "_set": [ + 2058 ], - "player_steam_id": [ - 31 + "where": [ + 2044 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes": { "available_server_count": [ - 40 + 41 ], "build_id": [ - 40 + 41 ], "cpu_cores_per_socket": [ - 40 + 41 ], "cpu_frequency_info": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "cpu_governor_info": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "cpu_sockets": [ - 40 + 41 ], "cpu_threads_per_core": [ - 40 + 41 ], "cpu_warnings": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "cs2_launch_options": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "cs2_video_settings": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "csgo_build_id": [ - 40 + 41 ], "demo_network_limiter": [ - 40 + 41 ], "disk_available_gb": [ - 40 + 41 ], "disk_used_percent": [ - 40 + 41 ], "e_region": [ - 4166 + 4445 ], "e_status": [ - 843 + 908 ], "enabled": [ - 5 + 6 ], "enabled_for_match_making": [ - 5 + 6 ], "end_port_range": [ - 40 + 41 ], "gpu": [ - 5 + 6 ], "gpu_demos_enabled": [ - 5 + 6 ], "gpu_info": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "gpu_rendering_enabled": [ - 5 + 6 ], "gpu_streaming_enabled": [ - 5 + 6 ], "id": [ - 80 + 84 ], "label": [ - 80 + 84 ], "lan_ip": [ - 1926 + 2183 ], "node_ip": [ - 1926 + 2183 ], "offline_at": [ - 4670 + 4954 ], "pin_build_id": [ - 40 + 41 ], "pin_plugin_runtime": [ - 80 + 84 ], "pin_plugin_version": [ - 80 + 84 ], "pinned_version": [ - 1857 + 2114 ], "plugin_supported": [ - 5 + 6 + ], + "plugins": [ + 2035, + { + "distinct_on": [ + 2055, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2053, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2044 + ] + } + ], + "plugins_aggregate": [ + 2036, + { + "distinct_on": [ + 2055, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2053, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2044 + ] + } + ], + "plugins_synced_at": [ + 4954 ], "public_ip": [ - 1926 + 2183 ], "region": [ - 80 + 84 ], "servers": [ - 4193, + 4472, { "distinct_on": [ - 4217, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4215, + 4498, "[servers_order_by!]" ], "where": [ - 4204 + 4484 ] } ], "servers_aggregate": [ - 4194, + 4473, { "distinct_on": [ - 4217, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4215, + 4498, "[servers_order_by!]" ], "where": [ - 4204 + 4484 ] } ], "shader_bake_progress": [ - 3092 + 3371 ], "shader_bake_progress_stage": [ - 80 + 84 ], "shader_bake_status": [ - 80 + 84 ], "shader_bake_status_history": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "start_port_range": [ - 40 + 41 ], "status": [ - 848 + 913 ], "supports_cpu_pinning": [ - 5 + 6 ], "supports_low_latency": [ - 5 + 6 ], "token": [ - 80 + 84 ], "total_server_count": [ - 40 + 41 ], "update_status": [ - 80 + 84 ], "version": [ - 1857 + 2114 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_aggregate": { "aggregate": [ - 1812 + 2069 ], "nodes": [ - 1806 + 2063 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 1809 + 2066 ], "bool_or": [ - 1810 + 2067 ], "count": [ - 1811 + 2068 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 1836 + 2093 ], "distinct": [ - 5 + 6 ], "filter": [ - 1818 + 2075 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 1837 + 2094 ], "distinct": [ - 5 + 6 ], "filter": [ - 1818 + 2075 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 1835 + 2092 ], "distinct": [ - 5 + 6 ], "filter": [ - 1818 + 2075 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_aggregate_fields": { "avg": [ - 1816 + 2073 ], "count": [ - 40, + 41, { "columns": [ - 1835, + 2092, "[game_server_nodes_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1825 + 2082 ], "min": [ - 1827 + 2084 ], "stddev": [ - 1839 + 2096 ], "stddev_pop": [ - 1841 + 2098 ], "stddev_samp": [ - 1843 + 2100 ], "sum": [ - 1847 + 2104 ], "var_pop": [ - 1851 + 2108 ], "var_samp": [ - 1853 + 2110 ], "variance": [ - 1855 + 2112 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_aggregate_order_by": { "avg": [ - 1817 + 2074 ], "count": [ - 3094 + 3373 ], "max": [ - 1826 + 2083 ], "min": [ - 1828 + 2085 ], "stddev": [ - 1840 + 2097 ], "stddev_pop": [ - 1842 + 2099 ], "stddev_samp": [ - 1844 + 2101 ], "sum": [ - 1848 + 2105 ], "var_pop": [ - 1852 + 2109 ], "var_samp": [ - 1854 + 2111 ], "variance": [ - 1856 + 2113 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 1930 + 2187 ], "cpu_governor_info": [ - 1930 + 2187 ], "cpu_warnings": [ - 1930 + 2187 ], "cs2_launch_options": [ - 1930 + 2187 ], "cs2_video_settings": [ - 1930 + 2187 ], "gpu_info": [ - 1930 + 2187 ], "shader_bake_status_history": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 1824 + 2081 ], "on_conflict": [ - 1831 + 2088 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_avg_fields": { "available_server_count": [ - 40 + 41 ], "build_id": [ - 31 + 32 ], "cpu_cores_per_socket": [ - 31 + 32 ], "cpu_sockets": [ - 31 + 32 ], "cpu_threads_per_core": [ - 31 + 32 ], "csgo_build_id": [ - 31 + 32 ], "demo_network_limiter": [ - 31 + 32 ], "disk_available_gb": [ - 31 + 32 ], "disk_used_percent": [ - 31 + 32 ], "end_port_range": [ - 31 + 32 ], "pin_build_id": [ - 31 + 32 ], "shader_bake_progress": [ - 31 + 32 ], "start_port_range": [ - 31 + 32 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_avg_order_by": { "build_id": [ - 3094 + 3373 ], "cpu_cores_per_socket": [ - 3094 + 3373 ], "cpu_sockets": [ - 3094 + 3373 ], "cpu_threads_per_core": [ - 3094 + 3373 ], "csgo_build_id": [ - 3094 + 3373 ], "demo_network_limiter": [ - 3094 + 3373 ], "disk_available_gb": [ - 3094 + 3373 ], "disk_used_percent": [ - 3094 + 3373 ], "end_port_range": [ - 3094 + 3373 ], "pin_build_id": [ - 3094 + 3373 ], "shader_bake_progress": [ - 3094 + 3373 ], "start_port_range": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_bool_exp": { "_and": [ - 1818 + 2075 ], "_not": [ - 1818 + 2075 ], "_or": [ - 1818 + 2075 ], "available_server_count": [ - 41 + 42 ], "build_id": [ - 41 + 42 ], "cpu_cores_per_socket": [ - 41 + 42 ], "cpu_frequency_info": [ - 1932 + 2189 ], "cpu_governor_info": [ - 1932 + 2189 ], "cpu_sockets": [ - 41 + 42 ], "cpu_threads_per_core": [ - 41 + 42 ], "cpu_warnings": [ - 1932 + 2189 ], "cs2_launch_options": [ - 1932 + 2189 ], "cs2_video_settings": [ - 1932 + 2189 ], "csgo_build_id": [ - 41 + 42 ], "demo_network_limiter": [ - 41 + 42 ], "disk_available_gb": [ - 41 + 42 ], "disk_used_percent": [ - 41 + 42 ], "e_region": [ - 4170 + 4449 ], "e_status": [ - 846 + 911 ], "enabled": [ - 6 + 7 ], "enabled_for_match_making": [ - 6 + 7 ], "end_port_range": [ - 41 + 42 ], "gpu": [ - 6 + 7 ], "gpu_demos_enabled": [ - 6 + 7 ], "gpu_info": [ - 1932 + 2189 ], "gpu_rendering_enabled": [ - 6 + 7 ], "gpu_streaming_enabled": [ - 6 + 7 ], "id": [ - 82 + 86 ], "label": [ - 82 + 86 ], "lan_ip": [ - 1927 + 2184 ], "node_ip": [ - 1927 + 2184 ], "offline_at": [ - 4671 + 4955 ], "pin_build_id": [ - 41 + 42 ], "pin_plugin_runtime": [ - 82 + 86 ], "pin_plugin_version": [ - 82 + 86 ], "pinned_version": [ - 1862 + 2119 ], "plugin_supported": [ - 6 + 7 + ], + "plugins": [ + 2044 + ], + "plugins_aggregate": [ + 2037 + ], + "plugins_synced_at": [ + 4955 ], "public_ip": [ - 1927 + 2184 ], "region": [ - 82 + 86 ], "servers": [ - 4204 + 4484 ], "servers_aggregate": [ - 4195 + 4474 ], "shader_bake_progress": [ - 3093 + 3372 ], "shader_bake_progress_stage": [ - 82 + 86 ], "shader_bake_status": [ - 82 + 86 ], "shader_bake_status_history": [ - 1932 + 2189 ], "start_port_range": [ - 41 + 42 ], "status": [ - 849 + 914 ], "supports_cpu_pinning": [ - 6 + 7 ], "supports_low_latency": [ - 6 + 7 ], "token": [ - 82 + 86 ], "total_server_count": [ - 41 + 42 ], "update_status": [ - 82 + 86 ], "version": [ - 1862 + 2119 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_constraint": {}, "game_server_nodes_delete_at_path_input": { "cpu_frequency_info": [ - 80 + 84 ], "cpu_governor_info": [ - 80 + 84 ], "cpu_warnings": [ - 80 + 84 ], "cs2_launch_options": [ - 80 + 84 ], "cs2_video_settings": [ - 80 + 84 ], "gpu_info": [ - 80 + 84 ], "shader_bake_status_history": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_delete_elem_input": { "cpu_frequency_info": [ - 40 + 41 ], "cpu_governor_info": [ - 40 + 41 ], "cpu_warnings": [ - 40 + 41 ], "cs2_launch_options": [ - 40 + 41 ], "cs2_video_settings": [ - 40 + 41 ], "gpu_info": [ - 40 + 41 ], "shader_bake_status_history": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_delete_key_input": { "cpu_frequency_info": [ - 80 + 84 ], "cpu_governor_info": [ - 80 + 84 ], "cpu_warnings": [ - 80 + 84 ], "cs2_launch_options": [ - 80 + 84 ], "cs2_video_settings": [ - 80 + 84 ], "gpu_info": [ - 80 + 84 ], "shader_bake_status_history": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_inc_input": { "build_id": [ - 40 + 41 ], "cpu_cores_per_socket": [ - 40 + 41 ], "cpu_sockets": [ - 40 + 41 ], "cpu_threads_per_core": [ - 40 + 41 ], "csgo_build_id": [ - 40 + 41 ], "demo_network_limiter": [ - 40 + 41 ], "disk_available_gb": [ - 40 + 41 ], "disk_used_percent": [ - 40 + 41 ], "end_port_range": [ - 40 + 41 ], "pin_build_id": [ - 40 + 41 ], "shader_bake_progress": [ - 3092 + 3371 ], "start_port_range": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_insert_input": { "build_id": [ - 40 + 41 ], "cpu_cores_per_socket": [ - 40 + 41 ], "cpu_frequency_info": [ - 1930 + 2187 ], "cpu_governor_info": [ - 1930 + 2187 ], "cpu_sockets": [ - 40 + 41 ], "cpu_threads_per_core": [ - 40 + 41 ], "cpu_warnings": [ - 1930 + 2187 ], "cs2_launch_options": [ - 1930 + 2187 ], "cs2_video_settings": [ - 1930 + 2187 ], "csgo_build_id": [ - 40 + 41 ], "demo_network_limiter": [ - 40 + 41 ], "disk_available_gb": [ - 40 + 41 ], "disk_used_percent": [ - 40 + 41 ], "e_region": [ - 4176 + 4455 ], "e_status": [ - 854 + 919 ], "enabled": [ - 5 + 6 ], "enabled_for_match_making": [ - 5 + 6 ], "end_port_range": [ - 40 + 41 ], "gpu": [ - 5 + 6 ], "gpu_demos_enabled": [ - 5 + 6 ], "gpu_info": [ - 1930 + 2187 ], "gpu_rendering_enabled": [ - 5 + 6 ], "gpu_streaming_enabled": [ - 5 + 6 ], "id": [ - 80 + 84 ], "label": [ - 80 + 84 ], "lan_ip": [ - 1926 + 2183 ], "node_ip": [ - 1926 + 2183 ], "offline_at": [ - 4670 + 4954 ], "pin_build_id": [ - 40 + 41 ], "pin_plugin_runtime": [ - 80 + 84 ], "pin_plugin_version": [ - 80 + 84 ], "pinned_version": [ - 1872 + 2129 + ], + "plugins": [ + 2043 + ], + "plugins_synced_at": [ + 4954 ], "public_ip": [ - 1926 + 2183 ], "region": [ - 80 + 84 ], "servers": [ - 4201 + 4481 ], "shader_bake_progress": [ - 3092 + 3371 ], "shader_bake_progress_stage": [ - 80 + 84 ], "shader_bake_status": [ - 80 + 84 ], "shader_bake_status_history": [ - 1930 + 2187 ], "start_port_range": [ - 40 + 41 ], "status": [ - 848 + 913 ], "supports_cpu_pinning": [ - 5 + 6 ], "supports_low_latency": [ - 5 + 6 ], "token": [ - 80 + 84 ], "update_status": [ - 80 + 84 ], "version": [ - 1872 + 2129 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_max_fields": { "available_server_count": [ - 40 + 41 ], "build_id": [ - 40 + 41 ], "cpu_cores_per_socket": [ - 40 + 41 ], "cpu_sockets": [ - 40 + 41 ], "cpu_threads_per_core": [ - 40 + 41 ], "csgo_build_id": [ - 40 + 41 ], "demo_network_limiter": [ - 40 + 41 ], "disk_available_gb": [ - 40 + 41 ], "disk_used_percent": [ - 40 + 41 ], "end_port_range": [ - 40 + 41 ], "id": [ - 80 + 84 ], "label": [ - 80 + 84 ], "offline_at": [ - 4670 + 4954 ], "pin_build_id": [ - 40 + 41 ], "pin_plugin_runtime": [ - 80 + 84 ], "pin_plugin_version": [ - 80 + 84 + ], + "plugins_synced_at": [ + 4954 ], "region": [ - 80 + 84 ], "shader_bake_progress": [ - 3092 + 3371 ], "shader_bake_progress_stage": [ - 80 + 84 ], "shader_bake_status": [ - 80 + 84 ], "start_port_range": [ - 40 + 41 ], "token": [ - 80 + 84 ], "total_server_count": [ - 40 + 41 ], "update_status": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_max_order_by": { "build_id": [ - 3094 + 3373 ], "cpu_cores_per_socket": [ - 3094 + 3373 ], "cpu_sockets": [ - 3094 + 3373 ], "cpu_threads_per_core": [ - 3094 + 3373 ], "csgo_build_id": [ - 3094 + 3373 ], "demo_network_limiter": [ - 3094 + 3373 ], "disk_available_gb": [ - 3094 + 3373 ], "disk_used_percent": [ - 3094 + 3373 ], "end_port_range": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "offline_at": [ - 3094 + 3373 ], "pin_build_id": [ - 3094 + 3373 ], "pin_plugin_runtime": [ - 3094 + 3373 ], "pin_plugin_version": [ - 3094 + 3373 + ], + "plugins_synced_at": [ + 3373 ], "region": [ - 3094 + 3373 ], "shader_bake_progress": [ - 3094 + 3373 ], "shader_bake_progress_stage": [ - 3094 + 3373 ], "shader_bake_status": [ - 3094 + 3373 ], "start_port_range": [ - 3094 + 3373 ], "token": [ - 3094 + 3373 ], "update_status": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_min_fields": { "available_server_count": [ - 40 + 41 ], "build_id": [ - 40 + 41 ], "cpu_cores_per_socket": [ - 40 + 41 ], "cpu_sockets": [ - 40 + 41 ], "cpu_threads_per_core": [ - 40 + 41 ], "csgo_build_id": [ - 40 + 41 ], "demo_network_limiter": [ - 40 + 41 ], "disk_available_gb": [ - 40 + 41 ], "disk_used_percent": [ - 40 + 41 ], "end_port_range": [ - 40 + 41 ], "id": [ - 80 + 84 ], "label": [ - 80 + 84 ], "offline_at": [ - 4670 + 4954 ], "pin_build_id": [ - 40 + 41 ], "pin_plugin_runtime": [ - 80 + 84 ], "pin_plugin_version": [ - 80 + 84 + ], + "plugins_synced_at": [ + 4954 ], "region": [ - 80 + 84 ], "shader_bake_progress": [ - 3092 + 3371 ], "shader_bake_progress_stage": [ - 80 + 84 ], "shader_bake_status": [ - 80 + 84 ], "start_port_range": [ - 40 + 41 ], "token": [ - 80 + 84 ], "total_server_count": [ - 40 + 41 ], "update_status": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_min_order_by": { "build_id": [ - 3094 + 3373 ], "cpu_cores_per_socket": [ - 3094 + 3373 ], "cpu_sockets": [ - 3094 + 3373 ], "cpu_threads_per_core": [ - 3094 + 3373 ], "csgo_build_id": [ - 3094 + 3373 ], "demo_network_limiter": [ - 3094 + 3373 ], "disk_available_gb": [ - 3094 + 3373 ], "disk_used_percent": [ - 3094 + 3373 ], "end_port_range": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "offline_at": [ - 3094 + 3373 ], "pin_build_id": [ - 3094 + 3373 ], "pin_plugin_runtime": [ - 3094 + 3373 ], "pin_plugin_version": [ - 3094 + 3373 + ], + "plugins_synced_at": [ + 3373 ], "region": [ - 3094 + 3373 ], "shader_bake_progress": [ - 3094 + 3373 ], "shader_bake_progress_stage": [ - 3094 + 3373 ], "shader_bake_status": [ - 3094 + 3373 ], "start_port_range": [ - 3094 + 3373 ], "token": [ - 3094 + 3373 ], "update_status": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1806 + 2063 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1824 + 2081 ], "on_conflict": [ - 1831 + 2088 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_on_conflict": { "constraint": [ - 1819 + 2076 ], "update_columns": [ - 1849 + 2106 ], "where": [ - 1818 + 2075 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_order_by": { "available_server_count": [ - 3094 + 3373 ], "build_id": [ - 3094 + 3373 ], "cpu_cores_per_socket": [ - 3094 + 3373 ], "cpu_frequency_info": [ - 3094 + 3373 ], "cpu_governor_info": [ - 3094 + 3373 ], "cpu_sockets": [ - 3094 + 3373 ], "cpu_threads_per_core": [ - 3094 + 3373 ], "cpu_warnings": [ - 3094 + 3373 ], "cs2_launch_options": [ - 3094 + 3373 ], "cs2_video_settings": [ - 3094 + 3373 ], "csgo_build_id": [ - 3094 + 3373 ], "demo_network_limiter": [ - 3094 + 3373 ], "disk_available_gb": [ - 3094 + 3373 ], "disk_used_percent": [ - 3094 + 3373 ], "e_region": [ - 4178 + 4457 ], "e_status": [ - 856 + 921 ], "enabled": [ - 3094 + 3373 ], "enabled_for_match_making": [ - 3094 + 3373 ], "end_port_range": [ - 3094 + 3373 ], "gpu": [ - 3094 + 3373 ], "gpu_demos_enabled": [ - 3094 + 3373 ], "gpu_info": [ - 3094 + 3373 ], "gpu_rendering_enabled": [ - 3094 + 3373 ], "gpu_streaming_enabled": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "lan_ip": [ - 3094 + 3373 ], "node_ip": [ - 3094 + 3373 ], "offline_at": [ - 3094 + 3373 ], "pin_build_id": [ - 3094 + 3373 ], "pin_plugin_runtime": [ - 3094 + 3373 ], "pin_plugin_version": [ - 3094 + 3373 ], "pinned_version": [ - 1874 + 2131 ], "plugin_supported": [ - 3094 + 3373 + ], + "plugins_aggregate": [ + 2042 + ], + "plugins_synced_at": [ + 3373 ], "public_ip": [ - 3094 + 3373 ], "region": [ - 3094 + 3373 ], "servers_aggregate": [ - 4200 + 4479 ], "shader_bake_progress": [ - 3094 + 3373 ], "shader_bake_progress_stage": [ - 3094 + 3373 ], "shader_bake_status": [ - 3094 + 3373 ], "shader_bake_status_history": [ - 3094 + 3373 ], "start_port_range": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "supports_cpu_pinning": [ - 3094 + 3373 ], "supports_low_latency": [ - 3094 + 3373 ], "token": [ - 3094 + 3373 ], "total_server_count": [ - 3094 + 3373 ], "update_status": [ - 3094 + 3373 ], "version": [ - 1874 + 2131 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_pk_columns_input": { "id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1930 + 2187 ], "cpu_governor_info": [ - 1930 + 2187 ], "cpu_warnings": [ - 1930 + 2187 ], "cs2_launch_options": [ - 1930 + 2187 ], "cs2_video_settings": [ - 1930 + 2187 ], "gpu_info": [ - 1930 + 2187 ], "shader_bake_status_history": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_select_column": {}, @@ -29164,10842 +33912,10848 @@ export default { "game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns": {}, "game_server_nodes_set_input": { "build_id": [ - 40 + 41 ], "cpu_cores_per_socket": [ - 40 + 41 ], "cpu_frequency_info": [ - 1930 + 2187 ], "cpu_governor_info": [ - 1930 + 2187 ], "cpu_sockets": [ - 40 + 41 ], "cpu_threads_per_core": [ - 40 + 41 ], "cpu_warnings": [ - 1930 + 2187 ], "cs2_launch_options": [ - 1930 + 2187 ], "cs2_video_settings": [ - 1930 + 2187 ], "csgo_build_id": [ - 40 + 41 ], "demo_network_limiter": [ - 40 + 41 ], "disk_available_gb": [ - 40 + 41 ], "disk_used_percent": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "enabled_for_match_making": [ - 5 + 6 ], "end_port_range": [ - 40 + 41 ], "gpu": [ - 5 + 6 ], "gpu_demos_enabled": [ - 5 + 6 ], "gpu_info": [ - 1930 + 2187 ], "gpu_rendering_enabled": [ - 5 + 6 ], "gpu_streaming_enabled": [ - 5 + 6 ], "id": [ - 80 + 84 ], "label": [ - 80 + 84 ], "lan_ip": [ - 1926 + 2183 ], "node_ip": [ - 1926 + 2183 ], "offline_at": [ - 4670 + 4954 ], "pin_build_id": [ - 40 + 41 ], "pin_plugin_runtime": [ - 80 + 84 ], "pin_plugin_version": [ - 80 + 84 + ], + "plugins_synced_at": [ + 4954 ], "public_ip": [ - 1926 + 2183 ], "region": [ - 80 + 84 ], "shader_bake_progress": [ - 3092 + 3371 ], "shader_bake_progress_stage": [ - 80 + 84 ], "shader_bake_status": [ - 80 + 84 ], "shader_bake_status_history": [ - 1930 + 2187 ], "start_port_range": [ - 40 + 41 ], "status": [ - 848 + 913 ], "supports_cpu_pinning": [ - 5 + 6 ], "supports_low_latency": [ - 5 + 6 ], "token": [ - 80 + 84 ], "update_status": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_stddev_fields": { "available_server_count": [ - 40 + 41 ], "build_id": [ - 31 + 32 ], "cpu_cores_per_socket": [ - 31 + 32 ], "cpu_sockets": [ - 31 + 32 ], "cpu_threads_per_core": [ - 31 + 32 ], "csgo_build_id": [ - 31 + 32 ], "demo_network_limiter": [ - 31 + 32 ], "disk_available_gb": [ - 31 + 32 ], "disk_used_percent": [ - 31 + 32 ], "end_port_range": [ - 31 + 32 ], "pin_build_id": [ - 31 + 32 ], "shader_bake_progress": [ - 31 + 32 ], "start_port_range": [ - 31 + 32 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_stddev_order_by": { "build_id": [ - 3094 + 3373 ], "cpu_cores_per_socket": [ - 3094 + 3373 ], "cpu_sockets": [ - 3094 + 3373 ], "cpu_threads_per_core": [ - 3094 + 3373 ], "csgo_build_id": [ - 3094 + 3373 ], "demo_network_limiter": [ - 3094 + 3373 ], "disk_available_gb": [ - 3094 + 3373 ], "disk_used_percent": [ - 3094 + 3373 ], "end_port_range": [ - 3094 + 3373 ], "pin_build_id": [ - 3094 + 3373 ], "shader_bake_progress": [ - 3094 + 3373 ], "start_port_range": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_stddev_pop_fields": { "available_server_count": [ - 40 + 41 ], "build_id": [ - 31 + 32 ], "cpu_cores_per_socket": [ - 31 + 32 ], "cpu_sockets": [ - 31 + 32 ], "cpu_threads_per_core": [ - 31 + 32 ], "csgo_build_id": [ - 31 + 32 ], "demo_network_limiter": [ - 31 + 32 ], "disk_available_gb": [ - 31 + 32 ], "disk_used_percent": [ - 31 + 32 ], "end_port_range": [ - 31 + 32 ], "pin_build_id": [ - 31 + 32 ], "shader_bake_progress": [ - 31 + 32 ], "start_port_range": [ - 31 + 32 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 3094 + 3373 ], "cpu_cores_per_socket": [ - 3094 + 3373 ], "cpu_sockets": [ - 3094 + 3373 ], "cpu_threads_per_core": [ - 3094 + 3373 ], "csgo_build_id": [ - 3094 + 3373 ], "demo_network_limiter": [ - 3094 + 3373 ], "disk_available_gb": [ - 3094 + 3373 ], "disk_used_percent": [ - 3094 + 3373 ], "end_port_range": [ - 3094 + 3373 ], "pin_build_id": [ - 3094 + 3373 ], "shader_bake_progress": [ - 3094 + 3373 ], "start_port_range": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_stddev_samp_fields": { "available_server_count": [ - 40 + 41 ], "build_id": [ - 31 + 32 ], "cpu_cores_per_socket": [ - 31 + 32 ], "cpu_sockets": [ - 31 + 32 ], "cpu_threads_per_core": [ - 31 + 32 ], "csgo_build_id": [ - 31 + 32 ], "demo_network_limiter": [ - 31 + 32 ], "disk_available_gb": [ - 31 + 32 ], "disk_used_percent": [ - 31 + 32 ], "end_port_range": [ - 31 + 32 ], "pin_build_id": [ - 31 + 32 ], "shader_bake_progress": [ - 31 + 32 ], "start_port_range": [ - 31 + 32 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 3094 + 3373 ], "cpu_cores_per_socket": [ - 3094 + 3373 ], "cpu_sockets": [ - 3094 + 3373 ], "cpu_threads_per_core": [ - 3094 + 3373 ], "csgo_build_id": [ - 3094 + 3373 ], "demo_network_limiter": [ - 3094 + 3373 ], "disk_available_gb": [ - 3094 + 3373 ], "disk_used_percent": [ - 3094 + 3373 ], "end_port_range": [ - 3094 + 3373 ], "pin_build_id": [ - 3094 + 3373 ], "shader_bake_progress": [ - 3094 + 3373 ], "start_port_range": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1846 + 2103 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_stream_cursor_value_input": { "build_id": [ - 40 + 41 ], "cpu_cores_per_socket": [ - 40 + 41 ], "cpu_frequency_info": [ - 1930 + 2187 ], "cpu_governor_info": [ - 1930 + 2187 ], "cpu_sockets": [ - 40 + 41 ], "cpu_threads_per_core": [ - 40 + 41 ], "cpu_warnings": [ - 1930 + 2187 ], "cs2_launch_options": [ - 1930 + 2187 ], "cs2_video_settings": [ - 1930 + 2187 ], "csgo_build_id": [ - 40 + 41 ], "demo_network_limiter": [ - 40 + 41 ], "disk_available_gb": [ - 40 + 41 ], "disk_used_percent": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "enabled_for_match_making": [ - 5 + 6 ], "end_port_range": [ - 40 + 41 ], "gpu": [ - 5 + 6 ], "gpu_demos_enabled": [ - 5 + 6 ], "gpu_info": [ - 1930 + 2187 ], "gpu_rendering_enabled": [ - 5 + 6 ], "gpu_streaming_enabled": [ - 5 + 6 ], "id": [ - 80 + 84 ], "label": [ - 80 + 84 ], "lan_ip": [ - 1926 + 2183 ], "node_ip": [ - 1926 + 2183 ], "offline_at": [ - 4670 + 4954 ], "pin_build_id": [ - 40 + 41 ], "pin_plugin_runtime": [ - 80 + 84 ], "pin_plugin_version": [ - 80 + 84 + ], + "plugins_synced_at": [ + 4954 ], "public_ip": [ - 1926 + 2183 ], "region": [ - 80 + 84 ], "shader_bake_progress": [ - 3092 + 3371 ], "shader_bake_progress_stage": [ - 80 + 84 ], "shader_bake_status": [ - 80 + 84 ], "shader_bake_status_history": [ - 1930 + 2187 ], "start_port_range": [ - 40 + 41 ], "status": [ - 848 + 913 ], "supports_cpu_pinning": [ - 5 + 6 ], "supports_low_latency": [ - 5 + 6 ], "token": [ - 80 + 84 ], "update_status": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_sum_fields": { "available_server_count": [ - 40 + 41 ], "build_id": [ - 40 + 41 ], "cpu_cores_per_socket": [ - 40 + 41 ], "cpu_sockets": [ - 40 + 41 ], "cpu_threads_per_core": [ - 40 + 41 ], "csgo_build_id": [ - 40 + 41 ], "demo_network_limiter": [ - 40 + 41 ], "disk_available_gb": [ - 40 + 41 ], "disk_used_percent": [ - 40 + 41 ], "end_port_range": [ - 40 + 41 ], "pin_build_id": [ - 40 + 41 ], "shader_bake_progress": [ - 3092 + 3371 ], "start_port_range": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_sum_order_by": { "build_id": [ - 3094 + 3373 ], "cpu_cores_per_socket": [ - 3094 + 3373 ], "cpu_sockets": [ - 3094 + 3373 ], "cpu_threads_per_core": [ - 3094 + 3373 ], "csgo_build_id": [ - 3094 + 3373 ], "demo_network_limiter": [ - 3094 + 3373 ], "disk_available_gb": [ - 3094 + 3373 ], "disk_used_percent": [ - 3094 + 3373 ], "end_port_range": [ - 3094 + 3373 ], "pin_build_id": [ - 3094 + 3373 ], "shader_bake_progress": [ - 3094 + 3373 ], "start_port_range": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1814 + 2071 ], "_delete_at_path": [ - 1820 + 2077 ], "_delete_elem": [ - 1821 + 2078 ], "_delete_key": [ - 1822 + 2079 ], "_inc": [ - 1823 + 2080 ], "_prepend": [ - 1834 + 2091 ], "_set": [ - 1838 + 2095 ], "where": [ - 1818 + 2075 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_var_pop_fields": { "available_server_count": [ - 40 + 41 ], "build_id": [ - 31 + 32 ], "cpu_cores_per_socket": [ - 31 + 32 ], "cpu_sockets": [ - 31 + 32 ], "cpu_threads_per_core": [ - 31 + 32 ], "csgo_build_id": [ - 31 + 32 ], "demo_network_limiter": [ - 31 + 32 ], "disk_available_gb": [ - 31 + 32 ], "disk_used_percent": [ - 31 + 32 ], "end_port_range": [ - 31 + 32 ], "pin_build_id": [ - 31 + 32 ], "shader_bake_progress": [ - 31 + 32 ], "start_port_range": [ - 31 + 32 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 3094 + 3373 ], "cpu_cores_per_socket": [ - 3094 + 3373 ], "cpu_sockets": [ - 3094 + 3373 ], "cpu_threads_per_core": [ - 3094 + 3373 ], "csgo_build_id": [ - 3094 + 3373 ], "demo_network_limiter": [ - 3094 + 3373 ], "disk_available_gb": [ - 3094 + 3373 ], "disk_used_percent": [ - 3094 + 3373 ], "end_port_range": [ - 3094 + 3373 ], "pin_build_id": [ - 3094 + 3373 ], "shader_bake_progress": [ - 3094 + 3373 ], "start_port_range": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_var_samp_fields": { "available_server_count": [ - 40 + 41 ], "build_id": [ - 31 + 32 ], "cpu_cores_per_socket": [ - 31 + 32 ], "cpu_sockets": [ - 31 + 32 ], "cpu_threads_per_core": [ - 31 + 32 ], "csgo_build_id": [ - 31 + 32 ], "demo_network_limiter": [ - 31 + 32 ], "disk_available_gb": [ - 31 + 32 ], "disk_used_percent": [ - 31 + 32 ], "end_port_range": [ - 31 + 32 ], "pin_build_id": [ - 31 + 32 ], "shader_bake_progress": [ - 31 + 32 ], "start_port_range": [ - 31 + 32 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 3094 + 3373 ], "cpu_cores_per_socket": [ - 3094 + 3373 ], "cpu_sockets": [ - 3094 + 3373 ], "cpu_threads_per_core": [ - 3094 + 3373 ], "csgo_build_id": [ - 3094 + 3373 ], "demo_network_limiter": [ - 3094 + 3373 ], "disk_available_gb": [ - 3094 + 3373 ], "disk_used_percent": [ - 3094 + 3373 ], "end_port_range": [ - 3094 + 3373 ], "pin_build_id": [ - 3094 + 3373 ], "shader_bake_progress": [ - 3094 + 3373 ], "start_port_range": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_variance_fields": { "available_server_count": [ - 40 + 41 ], "build_id": [ - 31 + 32 ], "cpu_cores_per_socket": [ - 31 + 32 ], "cpu_sockets": [ - 31 + 32 ], "cpu_threads_per_core": [ - 31 + 32 ], "csgo_build_id": [ - 31 + 32 ], "demo_network_limiter": [ - 31 + 32 ], "disk_available_gb": [ - 31 + 32 ], "disk_used_percent": [ - 31 + 32 ], "end_port_range": [ - 31 + 32 ], "pin_build_id": [ - 31 + 32 ], "shader_bake_progress": [ - 31 + 32 ], "start_port_range": [ - 31 + 32 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "game_server_nodes_variance_order_by": { "build_id": [ - 3094 + 3373 ], "cpu_cores_per_socket": [ - 3094 + 3373 ], "cpu_sockets": [ - 3094 + 3373 ], "cpu_threads_per_core": [ - 3094 + 3373 ], "csgo_build_id": [ - 3094 + 3373 ], "demo_network_limiter": [ - 3094 + 3373 ], "disk_available_gb": [ - 3094 + 3373 ], "disk_used_percent": [ - 3094 + 3373 ], "end_port_range": [ - 3094 + 3373 ], "pin_build_id": [ - 3094 + 3373 ], "shader_bake_progress": [ - 3094 + 3373 ], "start_port_range": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "game_versions": { "build_id": [ - 40 + 41 ], "current": [ - 5 + 6 ], "cvars": [ - 5 + 6 ], "description": [ - 80 + 84 ], "downloads": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "updated_at": [ - 4670 + 4954 ], "version": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_versions_aggregate": { "aggregate": [ - 1859 + 2116 ], "nodes": [ - 1857 + 2114 ], "__typename": [ - 80 + 84 ] }, "game_versions_aggregate_fields": { "avg": [ - 1861 + 2118 ], "count": [ - 40, + 41, { "columns": [ - 1877, + 2134, "[game_versions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1869 + 2126 ], "min": [ - 1870 + 2127 ], "stddev": [ - 1879 + 2136 ], "stddev_pop": [ - 1880 + 2137 ], "stddev_samp": [ - 1881 + 2138 ], "sum": [ - 1884 + 2141 ], "var_pop": [ - 1887 + 2144 ], "var_samp": [ - 1888 + 2145 ], "variance": [ - 1889 + 2146 ], "__typename": [ - 80 + 84 ] }, "game_versions_append_input": { "downloads": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "game_versions_avg_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "game_versions_bool_exp": { "_and": [ - 1862 + 2119 ], "_not": [ - 1862 + 2119 ], "_or": [ - 1862 + 2119 ], "build_id": [ - 41 + 42 ], "current": [ - 6 + 7 ], "cvars": [ - 6 + 7 ], "description": [ - 82 + 86 ], "downloads": [ - 1932 + 2189 ], "updated_at": [ - 4671 + 4955 ], "version": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "game_versions_constraint": {}, "game_versions_delete_at_path_input": { "downloads": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_versions_delete_elem_input": { "downloads": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "game_versions_delete_key_input": { "downloads": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_versions_inc_input": { "build_id": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "game_versions_insert_input": { "build_id": [ - 40 + 41 ], "current": [ - 5 + 6 ], "cvars": [ - 5 + 6 ], "description": [ - 80 + 84 ], "downloads": [ - 1930 + 2187 ], "updated_at": [ - 4670 + 4954 ], "version": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_versions_max_fields": { "build_id": [ - 40 + 41 ], "description": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "version": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_versions_min_fields": { "build_id": [ - 40 + 41 ], "description": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "version": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_versions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1857 + 2114 ], "__typename": [ - 80 + 84 ] }, "game_versions_obj_rel_insert_input": { "data": [ - 1868 + 2125 ], "on_conflict": [ - 1873 + 2130 ], "__typename": [ - 80 + 84 ] }, "game_versions_on_conflict": { "constraint": [ - 1863 + 2120 ], "update_columns": [ - 1885 + 2142 ], "where": [ - 1862 + 2119 ], "__typename": [ - 80 + 84 ] }, "game_versions_order_by": { "build_id": [ - 3094 + 3373 ], "current": [ - 3094 + 3373 ], "cvars": [ - 3094 + 3373 ], "description": [ - 3094 + 3373 ], "downloads": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "version": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "game_versions_pk_columns_input": { "build_id": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "game_versions_prepend_input": { "downloads": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "game_versions_select_column": {}, "game_versions_set_input": { "build_id": [ - 40 + 41 ], "current": [ - 5 + 6 ], "cvars": [ - 5 + 6 ], "description": [ - 80 + 84 ], "downloads": [ - 1930 + 2187 ], "updated_at": [ - 4670 + 4954 ], "version": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_versions_stddev_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "game_versions_stddev_pop_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "game_versions_stddev_samp_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "game_versions_stream_cursor_input": { "initial_value": [ - 1883 + 2140 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "game_versions_stream_cursor_value_input": { "build_id": [ - 40 + 41 ], "current": [ - 5 + 6 ], "cvars": [ - 5 + 6 ], "description": [ - 80 + 84 ], "downloads": [ - 1930 + 2187 ], "updated_at": [ - 4670 + 4954 ], "version": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "game_versions_sum_fields": { "build_id": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1860 + 2117 ], "_delete_at_path": [ - 1864 + 2121 ], "_delete_elem": [ - 1865 + 2122 ], "_delete_key": [ - 1866 + 2123 ], "_inc": [ - 1867 + 2124 ], "_prepend": [ - 1876 + 2133 ], "_set": [ - 1878 + 2135 ], "where": [ - 1862 + 2119 ], "__typename": [ - 80 + 84 ] }, "game_versions_var_pop_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "game_versions_var_samp_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "game_versions_variance_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations": { "branch": [ - 80 + 84 ], "build_id": [ - 40 + 41 ], "game_version": [ - 1857 + 2114 ], "id": [ - 5170 + 5454 ], "results": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "status": [ - 80 + 84 ], "validated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1892 + 2149 ], "nodes": [ - 1890 + 2147 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1894 + 2151 ], "count": [ - 40, + 41, { "columns": [ - 1909, + 2166, "[gamedata_signature_validations_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1902 + 2159 ], "min": [ - 1903 + 2160 ], "stddev": [ - 1911 + 2168 ], "stddev_pop": [ - 1912 + 2169 ], "stddev_samp": [ - 1913 + 2170 ], "sum": [ - 1916 + 2173 ], "var_pop": [ - 1919 + 2176 ], "var_samp": [ - 1920 + 2177 ], "variance": [ - 1921 + 2178 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_append_input": { "results": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_avg_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1895 + 2152 ], "_not": [ - 1895 + 2152 ], "_or": [ - 1895 + 2152 ], "branch": [ - 82 + 86 ], "build_id": [ - 41 + 42 ], "game_version": [ - 1862 + 2119 ], "id": [ - 5172 + 5456 ], "results": [ - 1932 + 2189 ], "status": [ - 82 + 86 ], "validated_at": [ - 4671 + 4955 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_constraint": {}, "gamedata_signature_validations_delete_at_path_input": { "results": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_delete_elem_input": { "results": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_delete_key_input": { "results": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_inc_input": { "build_id": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_insert_input": { "branch": [ - 80 + 84 ], "build_id": [ - 40 + 41 ], "game_version": [ - 1872 + 2129 ], "id": [ - 5170 + 5454 ], "results": [ - 1930 + 2187 ], "status": [ - 80 + 84 ], "validated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_max_fields": { "branch": [ - 80 + 84 ], "build_id": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "status": [ - 80 + 84 ], "validated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_min_fields": { "branch": [ - 80 + 84 ], "build_id": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "status": [ - 80 + 84 ], "validated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1890 + 2147 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1896 + 2153 ], "update_columns": [ - 1917 + 2174 ], "where": [ - 1895 + 2152 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_order_by": { "branch": [ - 3094 + 3373 ], "build_id": [ - 3094 + 3373 ], "game_version": [ - 1874 + 2131 ], "id": [ - 3094 + 3373 ], "results": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "validated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_prepend_input": { "results": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_select_column": {}, "gamedata_signature_validations_set_input": { "branch": [ - 80 + 84 ], "build_id": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "results": [ - 1930 + 2187 ], "status": [ - 80 + 84 ], "validated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_stddev_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_stddev_pop_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_stddev_samp_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1915 + 2172 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_stream_cursor_value_input": { "branch": [ - 80 + 84 ], "build_id": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "results": [ - 1930 + 2187 ], "status": [ - 80 + 84 ], "validated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_sum_fields": { "build_id": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1893 + 2150 ], "_delete_at_path": [ - 1897 + 2154 ], "_delete_elem": [ - 1898 + 2155 ], "_delete_key": [ - 1899 + 2156 ], "_inc": [ - 1900 + 2157 ], "_prepend": [ - 1908 + 2165 ], "_set": [ - 1910 + 2167 ], "where": [ - 1895 + 2152 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_var_pop_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_var_samp_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "gamedata_signature_validations_variance_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "get_event_leaderboard_args": { "_category": [ - 80 + 84 ], "_event_id": [ - 5170 + 5454 ], "_match_type": [ - 80 + 84 ], "_min_rounds": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "get_leaderboard_args": { "_category": [ - 80 + 84 ], "_exclude_tournaments": [ - 5 + 6 ], "_match_type": [ - 80 + 84 ], "_role": [ - 80 + 84 ], "_season_id": [ - 5170 + 5454 ], "_source": [ - 80 + 84 ], "_window_days": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "get_league_season_leaderboard_args": { "_category": [ - 80 + 84 ], "_league_season_id": [ - 5170 + 5454 ], "_role": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "get_player_leaderboard_rank_args": { "_category": [ - 80 + 84 ], "_exclude_tournaments": [ - 5 + 6 ], "_match_type": [ - 80 + 84 ], "_player_steam_id": [ - 80 + 84 ], "_season_id": [ - 5170 + 5454 ], "_source": [ - 80 + 84 ], "_window_days": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "inet": {}, "inet_comparison_exp": { "_eq": [ - 1926 + 2183 ], "_gt": [ - 1926 + 2183 ], "_gte": [ - 1926 + 2183 ], "_in": [ - 1926 + 2183 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 1926 + 2183 ], "_lte": [ - 1926 + 2183 ], "_neq": [ - 1926 + 2183 ], "_nin": [ - 1926 + 2183 ], "__typename": [ - 80 + 84 ] }, "json": {}, "json_comparison_exp": { "_eq": [ - 1928 + 2185 ], "_gt": [ - 1928 + 2185 ], "_gte": [ - 1928 + 2185 ], "_in": [ - 1928 + 2185 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 1928 + 2185 ], "_lte": [ - 1928 + 2185 ], "_neq": [ - 1928 + 2185 ], "_nin": [ - 1928 + 2185 ], "__typename": [ - 80 + 84 ] }, "jsonb": {}, "jsonb_cast_exp": { "String": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "jsonb_comparison_exp": { "_cast": [ - 1931 + 2188 ], "_contained_in": [ - 1930 + 2187 ], "_contains": [ - 1930 + 2187 ], "_eq": [ - 1930 + 2187 ], "_gt": [ - 1930 + 2187 ], "_gte": [ - 1930 + 2187 ], "_has_key": [ - 80 + 84 ], "_has_keys_all": [ - 80 + 84 ], "_has_keys_any": [ - 80 + 84 ], "_in": [ - 1930 + 2187 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 1930 + 2187 ], "_lte": [ - 1930 + 2187 ], "_neq": [ - 1930 + 2187 ], "_nin": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries": { "matches_played": [ - 40 + 41 ], "player_avatar_url": [ - 80 + 84 ], "player_country": [ - 80 + 84 ], "player_custom_avatar_url": [ - 80 + 84 ], "player_name": [ - 80 + 84 ], "player_steam_id": [ - 80 + 84 ], "secondary_value": [ - 1777 + 1842 ], "tertiary_value": [ - 1777 + 1842 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_aggregate": { "aggregate": [ - 1935 + 2192 ], "nodes": [ - 1933 + 2190 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1936 + 2193 ], "count": [ - 40, + 41, { "columns": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1940 + 2197 ], "min": [ - 1941 + 2198 ], "stddev": [ - 1946 + 2203 ], "stddev_pop": [ - 1947 + 2204 ], "stddev_samp": [ - 1948 + 2205 ], "sum": [ - 1951 + 2208 ], "var_pop": [ - 1953 + 2210 ], "var_samp": [ - 1954 + 2211 ], "variance": [ - 1955 + 2212 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_avg_fields": { "matches_played": [ - 31 + 32 ], "secondary_value": [ - 31 + 32 ], "tertiary_value": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_bool_exp": { "_and": [ - 1937 + 2194 ], "_not": [ - 1937 + 2194 ], "_or": [ - 1937 + 2194 ], "matches_played": [ - 41 + 42 ], "player_avatar_url": [ - 82 + 86 ], "player_country": [ - 82 + 86 ], "player_custom_avatar_url": [ - 82 + 86 ], "player_name": [ - 82 + 86 ], "player_steam_id": [ - 82 + 86 ], "secondary_value": [ - 1778 + 1843 ], "tertiary_value": [ - 1778 + 1843 ], "value": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_inc_input": { "matches_played": [ - 40 + 41 ], "secondary_value": [ - 1777 + 1842 ], "tertiary_value": [ - 1777 + 1842 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_insert_input": { "matches_played": [ - 40 + 41 ], "player_avatar_url": [ - 80 + 84 ], "player_country": [ - 80 + 84 ], "player_custom_avatar_url": [ - 80 + 84 ], "player_name": [ - 80 + 84 ], "player_steam_id": [ - 80 + 84 ], "secondary_value": [ - 1777 + 1842 ], "tertiary_value": [ - 1777 + 1842 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_max_fields": { "matches_played": [ - 40 + 41 ], "player_avatar_url": [ - 80 + 84 ], "player_country": [ - 80 + 84 ], "player_custom_avatar_url": [ - 80 + 84 ], "player_name": [ - 80 + 84 ], "player_steam_id": [ - 80 + 84 ], "secondary_value": [ - 1777 + 1842 ], "tertiary_value": [ - 1777 + 1842 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_min_fields": { "matches_played": [ - 40 + 41 ], "player_avatar_url": [ - 80 + 84 ], "player_country": [ - 80 + 84 ], "player_custom_avatar_url": [ - 80 + 84 ], "player_name": [ - 80 + 84 ], "player_steam_id": [ - 80 + 84 ], "secondary_value": [ - 1777 + 1842 ], "tertiary_value": [ - 1777 + 1842 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1933 + 2190 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_order_by": { "matches_played": [ - 3094 + 3373 ], "player_avatar_url": [ - 3094 + 3373 ], "player_country": [ - 3094 + 3373 ], "player_custom_avatar_url": [ - 3094 + 3373 ], "player_name": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "secondary_value": [ - 3094 + 3373 ], "tertiary_value": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_select_column": {}, "leaderboard_entries_set_input": { "matches_played": [ - 40 + 41 ], "player_avatar_url": [ - 80 + 84 ], "player_country": [ - 80 + 84 ], "player_custom_avatar_url": [ - 80 + 84 ], "player_name": [ - 80 + 84 ], "player_steam_id": [ - 80 + 84 ], "secondary_value": [ - 1777 + 1842 ], "tertiary_value": [ - 1777 + 1842 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_stddev_fields": { "matches_played": [ - 31 + 32 ], "secondary_value": [ - 31 + 32 ], "tertiary_value": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_stddev_pop_fields": { "matches_played": [ - 31 + 32 ], "secondary_value": [ - 31 + 32 ], "tertiary_value": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_stddev_samp_fields": { "matches_played": [ - 31 + 32 ], "secondary_value": [ - 31 + 32 ], "tertiary_value": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1950 + 2207 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_stream_cursor_value_input": { "matches_played": [ - 40 + 41 ], "player_avatar_url": [ - 80 + 84 ], "player_country": [ - 80 + 84 ], "player_custom_avatar_url": [ - 80 + 84 ], "player_name": [ - 80 + 84 ], "player_steam_id": [ - 80 + 84 ], "secondary_value": [ - 1777 + 1842 ], "tertiary_value": [ - 1777 + 1842 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_sum_fields": { "matches_played": [ - 40 + 41 ], "secondary_value": [ - 1777 + 1842 ], "tertiary_value": [ - 1777 + 1842 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_updates": { "_inc": [ - 1938 + 2195 ], "_set": [ - 1945 + 2202 ], "where": [ - 1937 + 2194 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_var_pop_fields": { "matches_played": [ - 31 + 32 ], "secondary_value": [ - 31 + 32 ], "tertiary_value": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_var_samp_fields": { "matches_played": [ - 31 + 32 ], "secondary_value": [ - 31 + 32 ], "tertiary_value": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "leaderboard_entries_variance_fields": { "matches_played": [ - 31 + 32 ], "secondary_value": [ - 31 + 32 ], "tertiary_value": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 5170 + 5454 ], "_winning_tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_divisions": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "season_divisions": [ - 2108, + 2365, { "distinct_on": [ - 2127, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2125, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2372 ] } ], "season_divisions_aggregate": [ - 2109, + 2366, { "distinct_on": [ - 2127, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2125, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2372 ] } ], "tier": [ - 4257 + 4541 ], "__typename": [ - 80 + 84 ] }, "league_divisions_aggregate": { "aggregate": [ - 1959 + 2216 ], "nodes": [ - 1957 + 2214 ], "__typename": [ - 80 + 84 ] }, "league_divisions_aggregate_fields": { "avg": [ - 1960 + 2217 ], "count": [ - 40, + 41, { "columns": [ - 1972, + 2229, "[league_divisions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1965 + 2222 ], "min": [ - 1966 + 2223 ], "stddev": [ - 1974 + 2231 ], "stddev_pop": [ - 1975 + 2232 ], "stddev_samp": [ - 1976 + 2233 ], "sum": [ - 1979 + 2236 ], "var_pop": [ - 1982 + 2239 ], "var_samp": [ - 1983 + 2240 ], "variance": [ - 1984 + 2241 ], "__typename": [ - 80 + 84 ] }, "league_divisions_avg_fields": { "tier": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_divisions_bool_exp": { "_and": [ - 1961 + 2218 ], "_not": [ - 1961 + 2218 ], "_or": [ - 1961 + 2218 ], "created_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "name": [ - 82 + 86 ], "season_divisions": [ - 2115 + 2372 ], "season_divisions_aggregate": [ - 2110 + 2367 ], "tier": [ - 4258 + 4542 ], "__typename": [ - 80 + 84 ] }, "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 4257 + 4541 ], "__typename": [ - 80 + 84 ] }, "league_divisions_insert_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "season_divisions": [ - 2114 + 2371 ], "tier": [ - 4257 + 4541 ], "__typename": [ - 80 + 84 ] }, "league_divisions_max_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "tier": [ - 4257 + 4541 ], "__typename": [ - 80 + 84 ] }, "league_divisions_min_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "tier": [ - 4257 + 4541 ], "__typename": [ - 80 + 84 ] }, "league_divisions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1957 + 2214 ], "__typename": [ - 80 + 84 ] }, "league_divisions_obj_rel_insert_input": { "data": [ - 1964 + 2221 ], "on_conflict": [ - 1969 + 2226 ], "__typename": [ - 80 + 84 ] }, "league_divisions_on_conflict": { "constraint": [ - 1962 + 2219 ], "update_columns": [ - 1980 + 2237 ], "where": [ - 1961 + 2218 ], "__typename": [ - 80 + 84 ] }, "league_divisions_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "season_divisions_aggregate": [ - 2113 + 2370 ], "tier": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_divisions_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "tier": [ - 4257 + 4541 ], "__typename": [ - 80 + 84 ] }, "league_divisions_stddev_fields": { "tier": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_divisions_stddev_pop_fields": { "tier": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_divisions_stddev_samp_fields": { "tier": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_divisions_stream_cursor_input": { "initial_value": [ - 1978 + 2235 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "tier": [ - 4257 + 4541 ], "__typename": [ - 80 + 84 ] }, "league_divisions_sum_fields": { "tier": [ - 4257 + 4541 ], "__typename": [ - 80 + 84 ] }, "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 1963 + 2220 ], "_set": [ - 1973 + 2230 ], "where": [ - 1961 + 2218 ], "__typename": [ - 80 + 84 ] }, "league_divisions_var_pop_fields": { "tier": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_divisions_var_samp_fields": { "tier": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_divisions_variance_fields": { "tier": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks": { "closes_at": [ - 4670 + 4954 ], "created_at": [ - 4670 + 4954 ], "default_match_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "opens_at": [ - 4670 + 4954 ], "season": [ - 2133 + 2390 ], "week_number": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_aggregate": { "aggregate": [ - 1989 + 2246 ], "nodes": [ - 1985 + 2242 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 1988 + 2245 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 2006 + 2263 ], "distinct": [ - 5 + 6 ], "filter": [ - 1994 + 2251 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_aggregate_fields": { "avg": [ - 1992 + 2249 ], "count": [ - 40, + 41, { "columns": [ - 2006, + 2263, "[league_match_weeks_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1998 + 2255 ], "min": [ - 2000 + 2257 ], "stddev": [ - 2008 + 2265 ], "stddev_pop": [ - 2010 + 2267 ], "stddev_samp": [ - 2012 + 2269 ], "sum": [ - 2016 + 2273 ], "var_pop": [ - 2020 + 2277 ], "var_samp": [ - 2022 + 2279 ], "variance": [ - 2024 + 2281 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_aggregate_order_by": { "avg": [ - 1993 + 2250 ], "count": [ - 3094 + 3373 ], "max": [ - 1999 + 2256 ], "min": [ - 2001 + 2258 ], "stddev": [ - 2009 + 2266 ], "stddev_pop": [ - 2011 + 2268 ], "stddev_samp": [ - 2013 + 2270 ], "sum": [ - 2017 + 2274 ], "var_pop": [ - 2021 + 2278 ], "var_samp": [ - 2023 + 2280 ], "variance": [ - 2025 + 2282 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 1997 + 2254 ], "on_conflict": [ - 2003 + 2260 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_avg_fields": { "week_number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_avg_order_by": { "week_number": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_bool_exp": { "_and": [ - 1994 + 2251 ], "_not": [ - 1994 + 2251 ], "_or": [ - 1994 + 2251 ], "closes_at": [ - 4671 + 4955 ], "created_at": [ - 4671 + 4955 ], "default_match_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "league_season_id": [ - 5172 + 5456 ], "opens_at": [ - 4671 + 4955 ], "season": [ - 2138 + 2395 ], "week_number": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_constraint": {}, "league_match_weeks_inc_input": { "week_number": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_insert_input": { "closes_at": [ - 4670 + 4954 ], "created_at": [ - 4670 + 4954 ], "default_match_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "opens_at": [ - 4670 + 4954 ], "season": [ - 2148 + 2405 ], "week_number": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_max_fields": { "closes_at": [ - 4670 + 4954 ], "created_at": [ - 4670 + 4954 ], "default_match_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "opens_at": [ - 4670 + 4954 ], "week_number": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_max_order_by": { "closes_at": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "default_match_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "opens_at": [ - 3094 + 3373 ], "week_number": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_min_fields": { "closes_at": [ - 4670 + 4954 ], "created_at": [ - 4670 + 4954 ], "default_match_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "opens_at": [ - 4670 + 4954 ], "week_number": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_min_order_by": { "closes_at": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "default_match_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "opens_at": [ - 3094 + 3373 ], "week_number": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1985 + 2242 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_on_conflict": { "constraint": [ - 1995 + 2252 ], "update_columns": [ - 2018 + 2275 ], "where": [ - 1994 + 2251 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_order_by": { "closes_at": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "default_match_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "opens_at": [ - 3094 + 3373 ], "season": [ - 2150 + 2407 ], "week_number": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4670 + 4954 ], "created_at": [ - 4670 + 4954 ], "default_match_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "opens_at": [ - 4670 + 4954 ], "week_number": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_stddev_fields": { "week_number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_stddev_order_by": { "week_number": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_stddev_pop_fields": { "week_number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_stddev_samp_fields": { "week_number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 2015 + 2272 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4670 + 4954 ], "created_at": [ - 4670 + 4954 ], "default_match_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "opens_at": [ - 4670 + 4954 ], "week_number": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_sum_fields": { "week_number": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_sum_order_by": { "week_number": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 1996 + 2253 ], "_set": [ - 2007 + 2264 ], "where": [ - 1994 + 2251 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_var_pop_fields": { "week_number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_var_samp_fields": { "week_number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_variance_fields": { "week_number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_match_weeks_variance_order_by": { "week_number": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs": { "created_at": [ - 4670 + 4954 ], "higher_division": [ - 1957 + 2214 ], "higher_division_id": [ - 5170 + 5454 ], "higher_slots": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "lower_division": [ - 1957 + 2214 ], "lower_division_id": [ - 5170 + 5454 ], "resolved_at": [ - 4670 + 4954 ], "season": [ - 2133 + 2390 ], "tournament": [ - 5106 + 5390 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 2030 + 2287 ], "nodes": [ - 2026 + 2283 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 2029 + 2286 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 2047 + 2304 ], "distinct": [ - 5 + 6 ], "filter": [ - 2035 + 2292 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 2033 + 2290 ], "count": [ - 40, + 41, { "columns": [ - 2047, + 2304, "[league_relegation_playoffs_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2039 + 2296 ], "min": [ - 2041 + 2298 ], "stddev": [ - 2049 + 2306 ], "stddev_pop": [ - 2051 + 2308 ], "stddev_samp": [ - 2053 + 2310 ], "sum": [ - 2057 + 2314 ], "var_pop": [ - 2061 + 2318 ], "var_samp": [ - 2063 + 2320 ], "variance": [ - 2065 + 2322 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_aggregate_order_by": { "avg": [ - 2034 + 2291 ], "count": [ - 3094 + 3373 ], "max": [ - 2040 + 2297 ], "min": [ - 2042 + 2299 ], "stddev": [ - 2050 + 2307 ], "stddev_pop": [ - 2052 + 2309 ], "stddev_samp": [ - 2054 + 2311 ], "sum": [ - 2058 + 2315 ], "var_pop": [ - 2062 + 2319 ], "var_samp": [ - 2064 + 2321 ], "variance": [ - 2066 + 2323 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 2038 + 2295 ], "on_conflict": [ - 2044 + 2301 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_avg_fields": { "higher_slots": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_bool_exp": { "_and": [ - 2035 + 2292 ], "_not": [ - 2035 + 2292 ], "_or": [ - 2035 + 2292 ], "created_at": [ - 4671 + 4955 ], "higher_division": [ - 1961 + 2218 ], "higher_division_id": [ - 5172 + 5456 ], "higher_slots": [ - 41 + 42 ], "id": [ - 5172 + 5456 ], "league_season_id": [ - 5172 + 5456 ], "lower_division": [ - 1961 + 2218 ], "lower_division_id": [ - 5172 + 5456 ], "resolved_at": [ - 4671 + 4955 ], "season": [ - 2138 + 2395 ], "tournament": [ - 5127 + 5411 ], "tournament_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_constraint": {}, "league_relegation_playoffs_inc_input": { "higher_slots": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4670 + 4954 ], "higher_division": [ - 1968 + 2225 ], "higher_division_id": [ - 5170 + 5454 ], "higher_slots": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "lower_division": [ - 1968 + 2225 ], "lower_division_id": [ - 5170 + 5454 ], "resolved_at": [ - 4670 + 4954 ], "season": [ - 2148 + 2405 ], "tournament": [ - 5136 + 5420 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4670 + 4954 ], "higher_division_id": [ - 5170 + 5454 ], "higher_slots": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "lower_division_id": [ - 5170 + 5454 ], "resolved_at": [ - 4670 + 4954 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 3094 + 3373 ], "higher_division_id": [ - 3094 + 3373 ], "higher_slots": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "lower_division_id": [ - 3094 + 3373 ], "resolved_at": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4670 + 4954 ], "higher_division_id": [ - 5170 + 5454 ], "higher_slots": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "lower_division_id": [ - 5170 + 5454 ], "resolved_at": [ - 4670 + 4954 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 3094 + 3373 ], "higher_division_id": [ - 3094 + 3373 ], "higher_slots": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "lower_division_id": [ - 3094 + 3373 ], "resolved_at": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2026 + 2283 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 2036 + 2293 ], "update_columns": [ - 2059 + 2316 ], "where": [ - 2035 + 2292 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_order_by": { "created_at": [ - 3094 + 3373 ], "higher_division": [ - 1970 + 2227 ], "higher_division_id": [ - 3094 + 3373 ], "higher_slots": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "lower_division": [ - 1970 + 2227 ], "lower_division_id": [ - 3094 + 3373 ], "resolved_at": [ - 3094 + 3373 ], "season": [ - 2150 + 2407 ], "tournament": [ - 5138 + 5422 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4670 + 4954 ], "higher_division_id": [ - 5170 + 5454 ], "higher_slots": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "lower_division_id": [ - 5170 + 5454 ], "resolved_at": [ - 4670 + 4954 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_stddev_fields": { "higher_slots": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_stddev_pop_fields": { "higher_slots": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_stddev_samp_fields": { "higher_slots": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 2056 + 2313 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "higher_division_id": [ - 5170 + 5454 ], "higher_slots": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "lower_division_id": [ - 5170 + 5454 ], "resolved_at": [ - 4670 + 4954 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_sum_fields": { "higher_slots": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 2037 + 2294 ], "_set": [ - 2048 + 2305 ], "where": [ - 2035 + 2292 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_var_pop_fields": { "higher_slots": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_var_samp_fields": { "higher_slots": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_variance_fields": { "higher_slots": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals": { "bracket": [ - 4714 + 4998 ], "created_at": [ - 4670 + 4954 ], "e_proposal_status": [ - 885 + 950 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "proposed_by": [ - 4052 + 4331 ], "proposed_by_league_team_season_id": [ - 5170 + 5454 ], "proposed_by_steam_id": [ - 264 + 269 ], "proposed_time": [ - 4670 + 4954 ], "responded_by": [ - 4052 + 4331 ], "responded_by_steam_id": [ - 264 + 269 ], "status": [ - 890 + 955 ], "team_season": [ - 2248 + 2505 ], "tournament_bracket_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 2071 + 2328 ], "nodes": [ - 2067 + 2324 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 2070 + 2327 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 2088 + 2345 ], "distinct": [ - 5 + 6 ], "filter": [ - 2076 + 2333 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 2074 + 2331 ], "count": [ - 40, + 41, { "columns": [ - 2088, + 2345, "[league_scheduling_proposals_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2080 + 2337 ], "min": [ - 2082 + 2339 ], "stddev": [ - 2090 + 2347 ], "stddev_pop": [ - 2092 + 2349 ], "stddev_samp": [ - 2094 + 2351 ], "sum": [ - 2098 + 2355 ], "var_pop": [ - 2102 + 2359 ], "var_samp": [ - 2104 + 2361 ], "variance": [ - 2106 + 2363 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_aggregate_order_by": { "avg": [ - 2075 + 2332 ], "count": [ - 3094 + 3373 ], "max": [ - 2081 + 2338 ], "min": [ - 2083 + 2340 ], "stddev": [ - 2091 + 2348 ], "stddev_pop": [ - 2093 + 2350 ], "stddev_samp": [ - 2095 + 2352 ], "sum": [ - 2099 + 2356 ], "var_pop": [ - 2103 + 2360 ], "var_samp": [ - 2105 + 2362 ], "variance": [ - 2107 + 2364 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 2079 + 2336 ], "on_conflict": [ - 2085 + 2342 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_avg_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "responded_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "responded_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_bool_exp": { "_and": [ - 2076 + 2333 ], "_not": [ - 2076 + 2333 ], "_or": [ - 2076 + 2333 ], "bracket": [ - 4725 + 5009 ], "created_at": [ - 4671 + 4955 ], "e_proposal_status": [ - 888 + 953 ], "id": [ - 5172 + 5456 ], "message": [ - 82 + 86 ], "proposed_by": [ - 4056 + 4335 ], "proposed_by_league_team_season_id": [ - 5172 + 5456 ], "proposed_by_steam_id": [ - 266 + 271 ], "proposed_time": [ - 4671 + 4955 ], "responded_by": [ - 4056 + 4335 ], "responded_by_steam_id": [ - 266 + 271 ], "status": [ - 891 + 956 ], "team_season": [ - 2257 + 2514 ], "tournament_bracket_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_constraint": {}, "league_scheduling_proposals_inc_input": { "proposed_by_steam_id": [ - 264 + 269 ], "responded_by_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4734 + 5018 ], "created_at": [ - 4670 + 4954 ], "e_proposal_status": [ - 896 + 961 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "proposed_by": [ - 4063 + 4342 ], "proposed_by_league_team_season_id": [ - 5170 + 5454 ], "proposed_by_steam_id": [ - 264 + 269 ], "proposed_time": [ - 4670 + 4954 ], "responded_by": [ - 4063 + 4342 ], "responded_by_steam_id": [ - 264 + 269 ], "status": [ - 890 + 955 ], "team_season": [ - 2266 + 2523 ], "tournament_bracket_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "proposed_by_league_team_season_id": [ - 5170 + 5454 ], "proposed_by_steam_id": [ - 264 + 269 ], "proposed_time": [ - 4670 + 4954 ], "responded_by_steam_id": [ - 264 + 269 ], "tournament_bracket_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "message": [ - 3094 + 3373 ], "proposed_by_league_team_season_id": [ - 3094 + 3373 ], "proposed_by_steam_id": [ - 3094 + 3373 ], "proposed_time": [ - 3094 + 3373 ], "responded_by_steam_id": [ - 3094 + 3373 ], "tournament_bracket_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "proposed_by_league_team_season_id": [ - 5170 + 5454 ], "proposed_by_steam_id": [ - 264 + 269 ], "proposed_time": [ - 4670 + 4954 ], "responded_by_steam_id": [ - 264 + 269 ], "tournament_bracket_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "message": [ - 3094 + 3373 ], "proposed_by_league_team_season_id": [ - 3094 + 3373 ], "proposed_by_steam_id": [ - 3094 + 3373 ], "proposed_time": [ - 3094 + 3373 ], "responded_by_steam_id": [ - 3094 + 3373 ], "tournament_bracket_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2067 + 2324 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 2077 + 2334 ], "update_columns": [ - 2100 + 2357 ], "where": [ - 2076 + 2333 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_order_by": { "bracket": [ - 4736 + 5020 ], "created_at": [ - 3094 + 3373 ], "e_proposal_status": [ - 898 + 963 ], "id": [ - 3094 + 3373 ], "message": [ - 3094 + 3373 ], "proposed_by": [ - 4065 + 4344 ], "proposed_by_league_team_season_id": [ - 3094 + 3373 ], "proposed_by_steam_id": [ - 3094 + 3373 ], "proposed_time": [ - 3094 + 3373 ], "responded_by": [ - 4065 + 4344 ], "responded_by_steam_id": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "team_season": [ - 2268 + 2525 ], "tournament_bracket_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "proposed_by_league_team_season_id": [ - 5170 + 5454 ], "proposed_by_steam_id": [ - 264 + 269 ], "proposed_time": [ - 4670 + 4954 ], "responded_by_steam_id": [ - 264 + 269 ], "status": [ - 890 + 955 ], "tournament_bracket_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_stddev_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "responded_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "responded_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_stddev_pop_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "responded_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "responded_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_stddev_samp_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "responded_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "responded_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 2097 + 2354 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "proposed_by_league_team_season_id": [ - 5170 + 5454 ], "proposed_by_steam_id": [ - 264 + 269 ], "proposed_time": [ - 4670 + 4954 ], "responded_by_steam_id": [ - 264 + 269 ], "status": [ - 890 + 955 ], "tournament_bracket_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_sum_fields": { "proposed_by_steam_id": [ - 264 + 269 ], "responded_by_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "responded_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 2078 + 2335 ], "_set": [ - 2089 + 2346 ], "where": [ - 2076 + 2333 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_var_pop_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "responded_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "responded_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_var_samp_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "responded_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "responded_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_variance_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "responded_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "responded_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions": { "created_at": [ - 4670 + 4954 ], "division": [ - 1957 + 2214 ], "id": [ - 5170 + 5454 ], "league_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "season": [ - 2133 + 2390 ], "standings": [ - 5242, + 5526, { "distinct_on": [ - 5258, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5257, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5535 ] } ], "standings_aggregate": [ - 5243, + 5527, { "distinct_on": [ - 5258, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5257, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5535 ] } ], "tournament": [ - 5106 + 5390 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_aggregate": { "aggregate": [ - 2112 + 2369 ], "nodes": [ - 2108 + 2365 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 2111 + 2368 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 2127 + 2384 ], "distinct": [ - 5 + 6 ], "filter": [ - 2115 + 2372 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2127, + 2384, "[league_season_divisions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2118 + 2375 ], "min": [ - 2120 + 2377 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_aggregate_order_by": { "count": [ - 3094 + 3373 ], "max": [ - 2119 + 2376 ], "min": [ - 2121 + 2378 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 2117 + 2374 ], "on_conflict": [ - 2124 + 2381 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_bool_exp": { "_and": [ - 2115 + 2372 ], "_not": [ - 2115 + 2372 ], "_or": [ - 2115 + 2372 ], "created_at": [ - 4671 + 4955 ], "division": [ - 1961 + 2218 ], "id": [ - 5172 + 5456 ], "league_division_id": [ - 5172 + 5456 ], "league_season_id": [ - 5172 + 5456 ], "season": [ - 2138 + 2395 ], "standings": [ - 5251 + 5535 ], "standings_aggregate": [ - 5244 + 5528 ], "tournament": [ - 5127 + 5411 ], "tournament_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4670 + 4954 ], "division": [ - 1968 + 2225 ], "id": [ - 5170 + 5454 ], "league_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "season": [ - 2148 + 2405 ], "standings": [ - 5248 + 5532 ], "tournament": [ - 5136 + 5420 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_max_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "league_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_max_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_division_id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_min_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "league_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_min_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_division_id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2108 + 2365 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 2117 + 2374 ], "on_conflict": [ - 2124 + 2381 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_on_conflict": { "constraint": [ - 2116 + 2373 ], "update_columns": [ - 2131 + 2388 ], "where": [ - 2115 + 2372 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_order_by": { "created_at": [ - 3094 + 3373 ], "division": [ - 1970 + 2227 ], "id": [ - 3094 + 3373 ], "league_division_id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "season": [ - 2150 + 2407 ], "standings_aggregate": [ - 5247 + 5531 ], "tournament": [ - 5138 + 5422 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "league_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 2130 + 2387 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "league_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 2128 + 2385 ], "where": [ - 2115 + 2372 ], "__typename": [ - 80 + 84 ] }, "league_seasons": { "auto_regular_season_format": [ - 5 + 6 ], "awards": [ - 195, + 200, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "awards_aggregate": [ - 196, + 201, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "can_register": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "created_by_steam_id": [ - 264 + 269 ], "default_best_of": [ - 40 + 41 ], "direct_promote_count": [ - 40 + 41 ], "direct_relegate_count": [ - 40 + 41 ], "e_league_season_status": [ - 927 + 992 ], "games_per_week": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "is_league_admin": [ - 5 + 6 ], "is_roster_locked": [ - 5 + 6 ], "match_options_id": [ - 5170 + 5454 ], "match_weeks": [ - 1985, + 2242, { "distinct_on": [ - 2006, + 2263, "[league_match_weeks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2004, + 2261, "[league_match_weeks_order_by!]" ], "where": [ - 1994 + 2251 ] } ], "match_weeks_aggregate": [ - 1986, + 2243, { "distinct_on": [ - 2006, + 2263, "[league_match_weeks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2004, + 2261, "[league_match_weeks_order_by!]" ], "where": [ - 1994 + 2251 ] } ], "match_weeks_count": [ - 40 + 41 ], "max_roster_size": [ - 40 + 41 ], "min_roster_size": [ - 40 + 41 ], "movements": [ - 2166, + 2423, { "distinct_on": [ - 2187, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2185, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2432 ] } ], "movements_aggregate": [ - 2167, + 2424, { "distinct_on": [ - 2187, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2185, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2432 ] } ], "my_registration": [ - 2248, + 2505, { "distinct_on": [ - 2270, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2268, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2514 ] } ], "name": [ - 80 + 84 ], "options": [ - 2758 + 3015 ], "player_stats": [ - 5275, + 5559, { "distinct_on": [ - 5301, + 5585, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5300, + 5584, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5294 + 5578 ] } ], "player_stats_aggregate": [ - 5276, + 5560, { "distinct_on": [ - 5301, + 5585, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5300, + 5584, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5294 + 5578 ] } ], "playoff_best_of": [ - 40 + 41 ], "playoff_round_best_of": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "playoff_seats": [ - 40 + 41 ], "playoff_stage_type": [ - 1421 + 1486 ], "playoff_third_place_match": [ - 5 + 6 ], "promote_count": [ - 40 + 41 ], "regular_season_stage_type": [ - 1421 + 1486 ], "relegate_count": [ - 40 + 41 ], "relegation_down_count": [ - 40 + 41 ], "relegation_playoffs": [ - 2026, + 2283, { "distinct_on": [ - 2047, + 2304, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2045, + 2302, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2035 + 2292 ] } ], "relegation_playoffs_aggregate": [ - 2027, + 2284, { "distinct_on": [ - 2047, + 2304, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2045, + 2302, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2035 + 2292 ] } ], "relegation_up_count": [ - 40 + 41 ], "roster_lock_at": [ - 4670 + 4954 ], "season_divisions": [ - 2108, + 2365, { "distinct_on": [ - 2127, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2125, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2372 ] } ], "season_divisions_aggregate": [ - 2109, + 2366, { "distinct_on": [ - 2127, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2125, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2372 ] } ], "season_number": [ - 40 + 41 ], "signup_closes_at": [ - 4670 + 4954 ], "signup_opens_at": [ - 4670 + 4954 ], "standings": [ - 5242, + 5526, { "distinct_on": [ - 5258, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5257, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5535 ] } ], "standings_aggregate": [ - 5243, + 5527, { "distinct_on": [ - 5258, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5257, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5535 ] } ], "starts_at": [ - 4670 + 4954 ], "status": [ - 932 + 997 ], "team_seasons": [ - 2248, + 2505, { "distinct_on": [ - 2270, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2268, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2514 ] } ], "team_seasons_aggregate": [ - 2249, + 2506, { "distinct_on": [ - 2270, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2268, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2514 ] } ], "week_best_of": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "__typename": [ - 80 + 84 ] }, "league_seasons_aggregate": { "aggregate": [ - 2135 + 2392 ], "nodes": [ - 2133 + 2390 ], "__typename": [ - 80 + 84 ] }, "league_seasons_aggregate_fields": { "avg": [ - 2137 + 2394 ], "count": [ - 40, + 41, { "columns": [ - 2153, + 2410, "[league_seasons_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2145 + 2402 ], "min": [ - 2146 + 2403 ], "stddev": [ - 2155 + 2412 ], "stddev_pop": [ - 2156 + 2413 ], "stddev_samp": [ - 2157 + 2414 ], "sum": [ - 2160 + 2417 ], "var_pop": [ - 2163 + 2420 ], "var_samp": [ - 2164 + 2421 ], "variance": [ - 2165 + 2422 ], "__typename": [ - 80 + 84 ] }, "league_seasons_append_input": { "playoff_round_best_of": [ - 1930 + 2187 ], "week_best_of": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "league_seasons_avg_fields": { "created_by_steam_id": [ - 31 + 32 ], "default_best_of": [ - 31 + 32 ], "direct_promote_count": [ - 31 + 32 ], "direct_relegate_count": [ - 31 + 32 ], "games_per_week": [ - 31 + 32 ], "match_weeks_count": [ - 31 + 32 ], "max_roster_size": [ - 31 + 32 ], "min_roster_size": [ - 31 + 32 ], "playoff_best_of": [ - 31 + 32 ], "playoff_seats": [ - 31 + 32 ], "promote_count": [ - 31 + 32 ], "relegate_count": [ - 31 + 32 ], "relegation_down_count": [ - 31 + 32 ], "relegation_up_count": [ - 31 + 32 ], "season_number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_seasons_bool_exp": { "_and": [ - 2138 + 2395 ], "_not": [ - 2138 + 2395 ], "_or": [ - 2138 + 2395 ], "auto_regular_season_format": [ - 6 + 7 ], "awards": [ - 204 + 209 ], "awards_aggregate": [ - 197 + 202 ], "can_register": [ - 6 + 7 ], "created_at": [ - 4671 + 4955 ], "created_by_steam_id": [ - 266 + 271 ], "default_best_of": [ - 41 + 42 ], "direct_promote_count": [ - 41 + 42 ], "direct_relegate_count": [ - 41 + 42 ], "e_league_season_status": [ - 930 + 995 ], "games_per_week": [ - 41 + 42 ], "id": [ - 5172 + 5456 ], "is_league_admin": [ - 6 + 7 ], "is_roster_locked": [ - 6 + 7 ], "match_options_id": [ - 5172 + 5456 ], "match_weeks": [ - 1994 + 2251 ], "match_weeks_aggregate": [ - 1987 + 2244 ], "match_weeks_count": [ - 41 + 42 ], "max_roster_size": [ - 41 + 42 ], "min_roster_size": [ - 41 + 42 ], "movements": [ - 2175 + 2432 ], "movements_aggregate": [ - 2168 + 2425 ], "my_registration": [ - 2257 + 2514 ], "name": [ - 82 + 86 ], "options": [ - 2762 + 3026 ], "player_stats": [ - 5294 + 5578 ], "player_stats_aggregate": [ - 5277 + 5561 ], "playoff_best_of": [ - 41 + 42 ], "playoff_round_best_of": [ - 1932 + 2189 ], "playoff_seats": [ - 41 + 42 ], "playoff_stage_type": [ - 1422 + 1487 ], "playoff_third_place_match": [ - 6 + 7 ], "promote_count": [ - 41 + 42 ], "regular_season_stage_type": [ - 1422 + 1487 ], "relegate_count": [ - 41 + 42 ], "relegation_down_count": [ - 41 + 42 ], "relegation_playoffs": [ - 2035 + 2292 ], "relegation_playoffs_aggregate": [ - 2028 + 2285 ], "relegation_up_count": [ - 41 + 42 ], "roster_lock_at": [ - 4671 + 4955 ], "season_divisions": [ - 2115 + 2372 ], "season_divisions_aggregate": [ - 2110 + 2367 ], "season_number": [ - 41 + 42 ], "signup_closes_at": [ - 4671 + 4955 ], "signup_opens_at": [ - 4671 + 4955 ], "standings": [ - 5251 + 5535 ], "standings_aggregate": [ - 5244 + 5528 ], "starts_at": [ - 4671 + 4955 ], "status": [ - 933 + 998 ], "team_seasons": [ - 2257 + 2514 ], "team_seasons_aggregate": [ - 2250 + 2507 ], "week_best_of": [ - 1932 + 2189 ], "__typename": [ - 80 + 84 ] }, "league_seasons_constraint": {}, "league_seasons_delete_at_path_input": { "playoff_round_best_of": [ - 80 + 84 ], "week_best_of": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "league_seasons_delete_elem_input": { "playoff_round_best_of": [ - 40 + 41 ], "week_best_of": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_seasons_delete_key_input": { "playoff_round_best_of": [ - 80 + 84 ], "week_best_of": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "league_seasons_inc_input": { "created_by_steam_id": [ - 264 + 269 ], "default_best_of": [ - 40 + 41 ], "direct_promote_count": [ - 40 + 41 ], "direct_relegate_count": [ - 40 + 41 ], "games_per_week": [ - 40 + 41 ], "match_weeks_count": [ - 40 + 41 ], "max_roster_size": [ - 40 + 41 ], "min_roster_size": [ - 40 + 41 ], "playoff_best_of": [ - 40 + 41 ], "playoff_seats": [ - 40 + 41 ], "promote_count": [ - 40 + 41 ], "relegate_count": [ - 40 + 41 ], "relegation_down_count": [ - 40 + 41 ], "relegation_up_count": [ - 40 + 41 ], "season_number": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_seasons_insert_input": { "auto_regular_season_format": [ - 5 + 6 ], "awards": [ - 201 + 206 ], "created_at": [ - 4670 + 4954 ], "created_by_steam_id": [ - 264 + 269 ], "default_best_of": [ - 40 + 41 ], "direct_promote_count": [ - 40 + 41 ], "direct_relegate_count": [ - 40 + 41 ], "e_league_season_status": [ - 938 + 1003 ], "games_per_week": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "match_weeks": [ - 1991 + 2248 ], "match_weeks_count": [ - 40 + 41 ], "max_roster_size": [ - 40 + 41 ], "min_roster_size": [ - 40 + 41 ], "movements": [ - 2172 + 2429 ], "name": [ - 80 + 84 ], "options": [ - 2769 + 3035 ], "player_stats": [ - 5291 + 5575 ], "playoff_best_of": [ - 40 + 41 ], "playoff_round_best_of": [ - 1930 + 2187 ], "playoff_seats": [ - 40 + 41 ], "playoff_stage_type": [ - 1421 + 1486 ], "playoff_third_place_match": [ - 5 + 6 ], "promote_count": [ - 40 + 41 ], "regular_season_stage_type": [ - 1421 + 1486 ], "relegate_count": [ - 40 + 41 ], "relegation_down_count": [ - 40 + 41 ], "relegation_playoffs": [ - 2032 + 2289 ], "relegation_up_count": [ - 40 + 41 ], "roster_lock_at": [ - 4670 + 4954 ], "season_divisions": [ - 2114 + 2371 ], "season_number": [ - 40 + 41 ], "signup_closes_at": [ - 4670 + 4954 ], "signup_opens_at": [ - 4670 + 4954 ], "standings": [ - 5248 + 5532 ], "starts_at": [ - 4670 + 4954 ], "status": [ - 932 + 997 ], "team_seasons": [ - 2254 + 2511 ], "week_best_of": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "league_seasons_max_fields": { "created_at": [ - 4670 + 4954 ], "created_by_steam_id": [ - 264 + 269 ], "default_best_of": [ - 40 + 41 ], "direct_promote_count": [ - 40 + 41 ], "direct_relegate_count": [ - 40 + 41 ], "games_per_week": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "match_weeks_count": [ - 40 + 41 ], "max_roster_size": [ - 40 + 41 ], "min_roster_size": [ - 40 + 41 ], "name": [ - 80 + 84 ], "playoff_best_of": [ - 40 + 41 ], "playoff_seats": [ - 40 + 41 ], "promote_count": [ - 40 + 41 ], "relegate_count": [ - 40 + 41 ], "relegation_down_count": [ - 40 + 41 ], "relegation_up_count": [ - 40 + 41 ], "roster_lock_at": [ - 4670 + 4954 ], "season_number": [ - 40 + 41 ], "signup_closes_at": [ - 4670 + 4954 ], "signup_opens_at": [ - 4670 + 4954 ], "starts_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "league_seasons_min_fields": { "created_at": [ - 4670 + 4954 ], "created_by_steam_id": [ - 264 + 269 ], "default_best_of": [ - 40 + 41 ], "direct_promote_count": [ - 40 + 41 ], "direct_relegate_count": [ - 40 + 41 ], "games_per_week": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "match_weeks_count": [ - 40 + 41 ], "max_roster_size": [ - 40 + 41 ], "min_roster_size": [ - 40 + 41 ], "name": [ - 80 + 84 ], "playoff_best_of": [ - 40 + 41 ], "playoff_seats": [ - 40 + 41 ], "promote_count": [ - 40 + 41 ], "relegate_count": [ - 40 + 41 ], "relegation_down_count": [ - 40 + 41 ], "relegation_up_count": [ - 40 + 41 ], "roster_lock_at": [ - 4670 + 4954 ], "season_number": [ - 40 + 41 ], "signup_closes_at": [ - 4670 + 4954 ], "signup_opens_at": [ - 4670 + 4954 ], "starts_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "league_seasons_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2133 + 2390 ], "__typename": [ - 80 + 84 ] }, "league_seasons_obj_rel_insert_input": { "data": [ - 2144 + 2401 ], "on_conflict": [ - 2149 + 2406 ], "__typename": [ - 80 + 84 ] }, "league_seasons_on_conflict": { "constraint": [ - 2139 + 2396 ], "update_columns": [ - 2161 + 2418 ], "where": [ - 2138 + 2395 ], "__typename": [ - 80 + 84 ] }, "league_seasons_order_by": { "auto_regular_season_format": [ - 3094 + 3373 ], "awards_aggregate": [ - 200 + 205 ], "can_register": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "created_by_steam_id": [ - 3094 + 3373 ], "default_best_of": [ - 3094 + 3373 ], "direct_promote_count": [ - 3094 + 3373 ], "direct_relegate_count": [ - 3094 + 3373 ], "e_league_season_status": [ - 940 + 1005 ], "games_per_week": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "is_league_admin": [ - 3094 + 3373 ], "is_roster_locked": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "match_weeks_aggregate": [ - 1990 + 2247 ], "match_weeks_count": [ - 3094 + 3373 ], "max_roster_size": [ - 3094 + 3373 ], "min_roster_size": [ - 3094 + 3373 ], "movements_aggregate": [ - 2171 + 2428 ], "my_registration_aggregate": [ - 2253 + 2510 ], "name": [ - 3094 + 3373 ], "options": [ - 2771 + 3037 ], "player_stats_aggregate": [ - 5290 + 5574 ], "playoff_best_of": [ - 3094 + 3373 ], "playoff_round_best_of": [ - 3094 + 3373 ], "playoff_seats": [ - 3094 + 3373 ], "playoff_stage_type": [ - 3094 + 3373 ], "playoff_third_place_match": [ - 3094 + 3373 ], "promote_count": [ - 3094 + 3373 ], "regular_season_stage_type": [ - 3094 + 3373 ], "relegate_count": [ - 3094 + 3373 ], "relegation_down_count": [ - 3094 + 3373 ], "relegation_playoffs_aggregate": [ - 2031 + 2288 ], "relegation_up_count": [ - 3094 + 3373 ], "roster_lock_at": [ - 3094 + 3373 ], "season_divisions_aggregate": [ - 2113 + 2370 ], "season_number": [ - 3094 + 3373 ], "signup_closes_at": [ - 3094 + 3373 ], "signup_opens_at": [ - 3094 + 3373 ], "standings_aggregate": [ - 5247 + 5531 ], "starts_at": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "team_seasons_aggregate": [ - 2253 + 2510 ], "week_best_of": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_seasons_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 1930 + 2187 ], "week_best_of": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "league_seasons_select_column": {}, "league_seasons_set_input": { "auto_regular_season_format": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "created_by_steam_id": [ - 264 + 269 ], "default_best_of": [ - 40 + 41 ], "direct_promote_count": [ - 40 + 41 ], "direct_relegate_count": [ - 40 + 41 ], "games_per_week": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "match_weeks_count": [ - 40 + 41 ], "max_roster_size": [ - 40 + 41 ], "min_roster_size": [ - 40 + 41 ], "name": [ - 80 + 84 ], "playoff_best_of": [ - 40 + 41 ], "playoff_round_best_of": [ - 1930 + 2187 ], "playoff_seats": [ - 40 + 41 ], "playoff_stage_type": [ - 1421 + 1486 ], "playoff_third_place_match": [ - 5 + 6 ], "promote_count": [ - 40 + 41 ], "regular_season_stage_type": [ - 1421 + 1486 ], "relegate_count": [ - 40 + 41 ], "relegation_down_count": [ - 40 + 41 ], "relegation_up_count": [ - 40 + 41 ], "roster_lock_at": [ - 4670 + 4954 ], "season_number": [ - 40 + 41 ], "signup_closes_at": [ - 4670 + 4954 ], "signup_opens_at": [ - 4670 + 4954 ], "starts_at": [ - 4670 + 4954 ], "status": [ - 932 + 997 ], "week_best_of": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "league_seasons_stddev_fields": { "created_by_steam_id": [ - 31 + 32 ], "default_best_of": [ - 31 + 32 ], "direct_promote_count": [ - 31 + 32 ], "direct_relegate_count": [ - 31 + 32 ], "games_per_week": [ - 31 + 32 ], "match_weeks_count": [ - 31 + 32 ], "max_roster_size": [ - 31 + 32 ], "min_roster_size": [ - 31 + 32 ], "playoff_best_of": [ - 31 + 32 ], "playoff_seats": [ - 31 + 32 ], "promote_count": [ - 31 + 32 ], "relegate_count": [ - 31 + 32 ], "relegation_down_count": [ - 31 + 32 ], "relegation_up_count": [ - 31 + 32 ], "season_number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_seasons_stddev_pop_fields": { "created_by_steam_id": [ - 31 + 32 ], "default_best_of": [ - 31 + 32 ], "direct_promote_count": [ - 31 + 32 ], "direct_relegate_count": [ - 31 + 32 ], "games_per_week": [ - 31 + 32 ], "match_weeks_count": [ - 31 + 32 ], "max_roster_size": [ - 31 + 32 ], "min_roster_size": [ - 31 + 32 ], "playoff_best_of": [ - 31 + 32 ], "playoff_seats": [ - 31 + 32 ], "promote_count": [ - 31 + 32 ], "relegate_count": [ - 31 + 32 ], "relegation_down_count": [ - 31 + 32 ], "relegation_up_count": [ - 31 + 32 ], "season_number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_seasons_stddev_samp_fields": { "created_by_steam_id": [ - 31 + 32 ], "default_best_of": [ - 31 + 32 ], "direct_promote_count": [ - 31 + 32 ], "direct_relegate_count": [ - 31 + 32 ], "games_per_week": [ - 31 + 32 ], "match_weeks_count": [ - 31 + 32 ], "max_roster_size": [ - 31 + 32 ], "min_roster_size": [ - 31 + 32 ], "playoff_best_of": [ - 31 + 32 ], "playoff_seats": [ - 31 + 32 ], "promote_count": [ - 31 + 32 ], "relegate_count": [ - 31 + 32 ], "relegation_down_count": [ - 31 + 32 ], "relegation_up_count": [ - 31 + 32 ], "season_number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_seasons_stream_cursor_input": { "initial_value": [ - 2159 + 2416 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "league_seasons_stream_cursor_value_input": { "auto_regular_season_format": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "created_by_steam_id": [ - 264 + 269 ], "default_best_of": [ - 40 + 41 ], "direct_promote_count": [ - 40 + 41 ], "direct_relegate_count": [ - 40 + 41 ], "games_per_week": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "match_weeks_count": [ - 40 + 41 ], "max_roster_size": [ - 40 + 41 ], "min_roster_size": [ - 40 + 41 ], "name": [ - 80 + 84 ], "playoff_best_of": [ - 40 + 41 ], "playoff_round_best_of": [ - 1930 + 2187 ], "playoff_seats": [ - 40 + 41 ], "playoff_stage_type": [ - 1421 + 1486 ], "playoff_third_place_match": [ - 5 + 6 ], "promote_count": [ - 40 + 41 ], "regular_season_stage_type": [ - 1421 + 1486 ], "relegate_count": [ - 40 + 41 ], "relegation_down_count": [ - 40 + 41 ], "relegation_up_count": [ - 40 + 41 ], "roster_lock_at": [ - 4670 + 4954 ], "season_number": [ - 40 + 41 ], "signup_closes_at": [ - 4670 + 4954 ], "signup_opens_at": [ - 4670 + 4954 ], "starts_at": [ - 4670 + 4954 ], "status": [ - 932 + 997 ], "week_best_of": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "league_seasons_sum_fields": { "created_by_steam_id": [ - 264 + 269 ], "default_best_of": [ - 40 + 41 ], "direct_promote_count": [ - 40 + 41 ], "direct_relegate_count": [ - 40 + 41 ], "games_per_week": [ - 40 + 41 ], "match_weeks_count": [ - 40 + 41 ], "max_roster_size": [ - 40 + 41 ], "min_roster_size": [ - 40 + 41 ], "playoff_best_of": [ - 40 + 41 ], "playoff_seats": [ - 40 + 41 ], "promote_count": [ - 40 + 41 ], "relegate_count": [ - 40 + 41 ], "relegation_down_count": [ - 40 + 41 ], "relegation_up_count": [ - 40 + 41 ], "season_number": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 2136 + 2393 ], "_delete_at_path": [ - 2140 + 2397 ], "_delete_elem": [ - 2141 + 2398 ], "_delete_key": [ - 2142 + 2399 ], "_inc": [ - 2143 + 2400 ], "_prepend": [ - 2152 + 2409 ], "_set": [ - 2154 + 2411 ], "where": [ - 2138 + 2395 ], "__typename": [ - 80 + 84 ] }, "league_seasons_var_pop_fields": { "created_by_steam_id": [ - 31 + 32 ], "default_best_of": [ - 31 + 32 ], "direct_promote_count": [ - 31 + 32 ], "direct_relegate_count": [ - 31 + 32 ], "games_per_week": [ - 31 + 32 ], "match_weeks_count": [ - 31 + 32 ], "max_roster_size": [ - 31 + 32 ], "min_roster_size": [ - 31 + 32 ], "playoff_best_of": [ - 31 + 32 ], "playoff_seats": [ - 31 + 32 ], "promote_count": [ - 31 + 32 ], "relegate_count": [ - 31 + 32 ], "relegation_down_count": [ - 31 + 32 ], "relegation_up_count": [ - 31 + 32 ], "season_number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_seasons_var_samp_fields": { "created_by_steam_id": [ - 31 + 32 ], "default_best_of": [ - 31 + 32 ], "direct_promote_count": [ - 31 + 32 ], "direct_relegate_count": [ - 31 + 32 ], "games_per_week": [ - 31 + 32 ], "match_weeks_count": [ - 31 + 32 ], "max_roster_size": [ - 31 + 32 ], "min_roster_size": [ - 31 + 32 ], "playoff_best_of": [ - 31 + 32 ], "playoff_seats": [ - 31 + 32 ], "promote_count": [ - 31 + 32 ], "relegate_count": [ - 31 + 32 ], "relegation_down_count": [ - 31 + 32 ], "relegation_up_count": [ - 31 + 32 ], "season_number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_seasons_variance_fields": { "created_by_steam_id": [ - 31 + 32 ], "default_best_of": [ - 31 + 32 ], "direct_promote_count": [ - 31 + 32 ], "direct_relegate_count": [ - 31 + 32 ], "games_per_week": [ - 31 + 32 ], "match_weeks_count": [ - 31 + 32 ], "max_roster_size": [ - 31 + 32 ], "min_roster_size": [ - 31 + 32 ], "playoff_best_of": [ - 31 + 32 ], "playoff_seats": [ - 31 + 32 ], "promote_count": [ - 31 + 32 ], "relegate_count": [ - 31 + 32 ], "relegation_down_count": [ - 31 + 32 ], "relegation_up_count": [ - 31 + 32 ], "season_number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_movements": { "approved_at": [ - 4670 + 4954 ], "approved_by": [ - 4052 + 4331 ], "approved_by_steam_id": [ - 264 + 269 ], "computed_to_division": [ - 1957 + 2214 ], "computed_to_division_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "e_movement_type": [ - 864 + 929 ], "final_rank": [ - 40 + 41 ], "final_to_division": [ - 1957 + 2214 ], "final_to_division_id": [ - 5170 + 5454 ], "from_division": [ - 1957 + 2214 ], "from_division_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team": [ - 2290 + 2547 ], "league_team_id": [ - 5170 + 5454 ], "season": [ - 2133 + 2390 ], "type": [ - 869 + 934 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_aggregate": { "aggregate": [ - 2170 + 2427 ], "nodes": [ - 2166 + 2423 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_aggregate_bool_exp": { "count": [ - 2169 + 2426 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 2187 + 2444 ], "distinct": [ - 5 + 6 ], "filter": [ - 2175 + 2432 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_aggregate_fields": { "avg": [ - 2173 + 2430 ], "count": [ - 40, + 41, { "columns": [ - 2187, + 2444, "[league_team_movements_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2179 + 2436 ], "min": [ - 2181 + 2438 ], "stddev": [ - 2189 + 2446 ], "stddev_pop": [ - 2191 + 2448 ], "stddev_samp": [ - 2193 + 2450 ], "sum": [ - 2197 + 2454 ], "var_pop": [ - 2201 + 2458 ], "var_samp": [ - 2203 + 2460 ], "variance": [ - 2205 + 2462 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_aggregate_order_by": { "avg": [ - 2174 + 2431 ], "count": [ - 3094 + 3373 ], "max": [ - 2180 + 2437 ], "min": [ - 2182 + 2439 ], "stddev": [ - 2190 + 2447 ], "stddev_pop": [ - 2192 + 2449 ], "stddev_samp": [ - 2194 + 2451 ], "sum": [ - 2198 + 2455 ], "var_pop": [ - 2202 + 2459 ], "var_samp": [ - 2204 + 2461 ], "variance": [ - 2206 + 2463 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_arr_rel_insert_input": { "data": [ - 2178 + 2435 ], "on_conflict": [ - 2184 + 2441 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_avg_fields": { "approved_by_steam_id": [ - 31 + 32 ], "final_rank": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 3094 + 3373 ], "final_rank": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_bool_exp": { "_and": [ - 2175 + 2432 ], "_not": [ - 2175 + 2432 ], "_or": [ - 2175 + 2432 ], "approved_at": [ - 4671 + 4955 ], "approved_by": [ - 4056 + 4335 ], "approved_by_steam_id": [ - 266 + 271 ], "computed_to_division": [ - 1961 + 2218 ], "computed_to_division_id": [ - 5172 + 5456 ], "created_at": [ - 4671 + 4955 ], "e_movement_type": [ - 867 + 932 ], "final_rank": [ - 41 + 42 ], "final_to_division": [ - 1961 + 2218 ], "final_to_division_id": [ - 5172 + 5456 ], "from_division": [ - 1961 + 2218 ], "from_division_id": [ - 5172 + 5456 ], "id": [ - 5172 + 5456 ], "league_season_id": [ - 5172 + 5456 ], "league_team": [ - 2293 + 2550 ], "league_team_id": [ - 5172 + 5456 ], "season": [ - 2138 + 2395 ], "type": [ - 870 + 935 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_constraint": {}, "league_team_movements_inc_input": { "approved_by_steam_id": [ - 264 + 269 ], "final_rank": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_insert_input": { "approved_at": [ - 4670 + 4954 ], "approved_by": [ - 4063 + 4342 ], "approved_by_steam_id": [ - 264 + 269 ], "computed_to_division": [ - 1968 + 2225 ], "computed_to_division_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "e_movement_type": [ - 875 + 940 ], "final_rank": [ - 40 + 41 ], "final_to_division": [ - 1968 + 2225 ], "final_to_division_id": [ - 5170 + 5454 ], "from_division": [ - 1968 + 2225 ], "from_division_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team": [ - 2299 + 2556 ], "league_team_id": [ - 5170 + 5454 ], "season": [ - 2148 + 2405 ], "type": [ - 869 + 934 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_max_fields": { "approved_at": [ - 4670 + 4954 ], "approved_by_steam_id": [ - 264 + 269 ], "computed_to_division_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "final_rank": [ - 40 + 41 ], "final_to_division_id": [ - 5170 + 5454 ], "from_division_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_max_order_by": { "approved_at": [ - 3094 + 3373 ], "approved_by_steam_id": [ - 3094 + 3373 ], "computed_to_division_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "final_rank": [ - 3094 + 3373 ], "final_to_division_id": [ - 3094 + 3373 ], "from_division_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "league_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_min_fields": { "approved_at": [ - 4670 + 4954 ], "approved_by_steam_id": [ - 264 + 269 ], "computed_to_division_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "final_rank": [ - 40 + 41 ], "final_to_division_id": [ - 5170 + 5454 ], "from_division_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_min_order_by": { "approved_at": [ - 3094 + 3373 ], "approved_by_steam_id": [ - 3094 + 3373 ], "computed_to_division_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "final_rank": [ - 3094 + 3373 ], "final_to_division_id": [ - 3094 + 3373 ], "from_division_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "league_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2166 + 2423 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_on_conflict": { "constraint": [ - 2176 + 2433 ], "update_columns": [ - 2199 + 2456 ], "where": [ - 2175 + 2432 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_order_by": { "approved_at": [ - 3094 + 3373 ], "approved_by": [ - 4065 + 4344 ], "approved_by_steam_id": [ - 3094 + 3373 ], "computed_to_division": [ - 1970 + 2227 ], "computed_to_division_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "e_movement_type": [ - 877 + 942 ], "final_rank": [ - 3094 + 3373 ], "final_to_division": [ - 1970 + 2227 ], "final_to_division_id": [ - 3094 + 3373 ], "from_division": [ - 1970 + 2227 ], "from_division_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "league_team": [ - 2301 + 2558 ], "league_team_id": [ - 3094 + 3373 ], "season": [ - 2150 + 2407 ], "type": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4670 + 4954 ], "approved_by_steam_id": [ - 264 + 269 ], "computed_to_division_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "final_rank": [ - 40 + 41 ], "final_to_division_id": [ - 5170 + 5454 ], "from_division_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team_id": [ - 5170 + 5454 ], "type": [ - 869 + 934 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_stddev_fields": { "approved_by_steam_id": [ - 31 + 32 ], "final_rank": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 3094 + 3373 ], "final_rank": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_stddev_pop_fields": { "approved_by_steam_id": [ - 31 + 32 ], "final_rank": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 3094 + 3373 ], "final_rank": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_stddev_samp_fields": { "approved_by_steam_id": [ - 31 + 32 ], "final_rank": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 3094 + 3373 ], "final_rank": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 2196 + 2453 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4670 + 4954 ], "approved_by_steam_id": [ - 264 + 269 ], "computed_to_division_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "final_rank": [ - 40 + 41 ], "final_to_division_id": [ - 5170 + 5454 ], "from_division_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team_id": [ - 5170 + 5454 ], "type": [ - 869 + 934 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_sum_fields": { "approved_by_steam_id": [ - 264 + 269 ], "final_rank": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 3094 + 3373 ], "final_rank": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 2177 + 2434 ], "_set": [ - 2188 + 2445 ], "where": [ - 2175 + 2432 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_var_pop_fields": { "approved_by_steam_id": [ - 31 + 32 ], "final_rank": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 3094 + 3373 ], "final_rank": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_var_samp_fields": { "approved_by_steam_id": [ - 31 + 32 ], "final_rank": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 3094 + 3373 ], "final_rank": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_variance_fields": { "approved_by_steam_id": [ - 31 + 32 ], "final_rank": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 3094 + 3373 ], "final_rank": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters": { "added_at": [ - 4670 + 4954 ], "league_team_season_id": [ - 5170 + 5454 ], "player": [ - 4052 + 4331 ], "player_steam_id": [ - 264 + 269 ], "removed_at": [ - 4670 + 4954 ], "removed_reason": [ - 80 + 84 ], "status": [ - 1360 + 1425 ], "team_season": [ - 2248 + 2505 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_aggregate": { "aggregate": [ - 2211 + 2468 ], "nodes": [ - 2207 + 2464 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 2210 + 2467 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 2228 + 2485 ], "distinct": [ - 5 + 6 ], "filter": [ - 2216 + 2473 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_aggregate_fields": { "avg": [ - 2214 + 2471 ], "count": [ - 40, + 41, { "columns": [ - 2228, + 2485, "[league_team_rosters_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2220 + 2477 ], "min": [ - 2222 + 2479 ], "stddev": [ - 2230 + 2487 ], "stddev_pop": [ - 2232 + 2489 ], "stddev_samp": [ - 2234 + 2491 ], "sum": [ - 2238 + 2495 ], "var_pop": [ - 2242 + 2499 ], "var_samp": [ - 2244 + 2501 ], "variance": [ - 2246 + 2503 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_aggregate_order_by": { "avg": [ - 2215 + 2472 ], "count": [ - 3094 + 3373 ], "max": [ - 2221 + 2478 ], "min": [ - 2223 + 2480 ], "stddev": [ - 2231 + 2488 ], "stddev_pop": [ - 2233 + 2490 ], "stddev_samp": [ - 2235 + 2492 ], "sum": [ - 2239 + 2496 ], "var_pop": [ - 2243 + 2500 ], "var_samp": [ - 2245 + 2502 ], "variance": [ - 2247 + 2504 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 2219 + 2476 ], "on_conflict": [ - 2225 + 2482 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_avg_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_bool_exp": { "_and": [ - 2216 + 2473 ], "_not": [ - 2216 + 2473 ], "_or": [ - 2216 + 2473 ], "added_at": [ - 4671 + 4955 ], "league_team_season_id": [ - 5172 + 5456 ], "player": [ - 4056 + 4335 ], "player_steam_id": [ - 266 + 271 ], "removed_at": [ - 4671 + 4955 ], "removed_reason": [ - 82 + 86 ], "status": [ - 1361 + 1426 ], "team_season": [ - 2257 + 2514 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_constraint": {}, "league_team_rosters_inc_input": { "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_insert_input": { "added_at": [ - 4670 + 4954 ], "league_team_season_id": [ - 5170 + 5454 ], "player": [ - 4063 + 4342 ], "player_steam_id": [ - 264 + 269 ], "removed_at": [ - 4670 + 4954 ], "removed_reason": [ - 80 + 84 ], "status": [ - 1360 + 1425 ], "team_season": [ - 2266 + 2523 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_max_fields": { "added_at": [ - 4670 + 4954 ], "league_team_season_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "removed_at": [ - 4670 + 4954 ], "removed_reason": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_max_order_by": { "added_at": [ - 3094 + 3373 ], "league_team_season_id": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "removed_at": [ - 3094 + 3373 ], "removed_reason": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_min_fields": { "added_at": [ - 4670 + 4954 ], "league_team_season_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "removed_at": [ - 4670 + 4954 ], "removed_reason": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_min_order_by": { "added_at": [ - 3094 + 3373 ], "league_team_season_id": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "removed_at": [ - 3094 + 3373 ], "removed_reason": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2207 + 2464 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_on_conflict": { "constraint": [ - 2217 + 2474 ], "update_columns": [ - 2240 + 2497 ], "where": [ - 2216 + 2473 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_order_by": { "added_at": [ - 3094 + 3373 ], "league_team_season_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "player_steam_id": [ - 3094 + 3373 ], "removed_at": [ - 3094 + 3373 ], "removed_reason": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "team_season": [ - 2268 + 2525 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4670 + 4954 ], "league_team_season_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "removed_at": [ - 4670 + 4954 ], "removed_reason": [ - 80 + 84 ], "status": [ - 1360 + 1425 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_stddev_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_stddev_pop_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_stddev_samp_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 2237 + 2494 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4670 + 4954 ], "league_team_season_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "removed_at": [ - 4670 + 4954 ], "removed_reason": [ - 80 + 84 ], "status": [ - 1360 + 1425 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_sum_fields": { "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 2218 + 2475 ], "_set": [ - 2229 + 2486 ], "where": [ - 2216 + 2473 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_var_pop_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_var_samp_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_variance_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons": { "assigned_division": [ - 1957 + 2214 ], "assigned_division_id": [ - 5170 + 5454 ], "captain": [ - 4052 + 4331 ], "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "decline_reason": [ - 80 + 84 ], "e_registration_status": [ - 906 + 971 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team": [ - 2290 + 2547 ], "league_team_id": [ - 5170 + 5454 ], "registered_by": [ - 4052 + 4331 ], "registered_by_steam_id": [ - 264 + 269 ], "requested_division": [ - 1957 + 2214 ], "requested_division_id": [ - 5170 + 5454 ], "roster": [ - 2207, + 2464, { "distinct_on": [ - 2228, + 2485, "[league_team_rosters_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2226, + 2483, "[league_team_rosters_order_by!]" ], "where": [ - 2216 + 2473 ] } ], "roster_aggregate": [ - 2208, + 2465, { "distinct_on": [ - 2228, + 2485, "[league_team_rosters_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2226, + 2483, "[league_team_rosters_order_by!]" ], "where": [ - 2216 + 2473 ] } ], "season": [ - 2133 + 2390 ], "seed": [ - 40 + 41 ], "status": [ - 911 + 976 ], "tournament_team": [ - 5064 + 5348 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_aggregate": { "aggregate": [ - 2252 + 2509 ], "nodes": [ - 2248 + 2505 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 2251 + 2508 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 2270 + 2527 ], "distinct": [ - 5 + 6 ], "filter": [ - 2257 + 2514 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_aggregate_fields": { "avg": [ - 2255 + 2512 ], "count": [ - 40, + 41, { "columns": [ - 2270, + 2527, "[league_team_seasons_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2261 + 2518 ], "min": [ - 2263 + 2520 ], "stddev": [ - 2272 + 2529 ], "stddev_pop": [ - 2274 + 2531 ], "stddev_samp": [ - 2276 + 2533 ], "sum": [ - 2280 + 2537 ], "var_pop": [ - 2284 + 2541 ], "var_samp": [ - 2286 + 2543 ], "variance": [ - 2288 + 2545 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_aggregate_order_by": { "avg": [ - 2256 + 2513 ], "count": [ - 3094 + 3373 ], "max": [ - 2262 + 2519 ], "min": [ - 2264 + 2521 ], "stddev": [ - 2273 + 2530 ], "stddev_pop": [ - 2275 + 2532 ], "stddev_samp": [ - 2277 + 2534 ], "sum": [ - 2281 + 2538 ], "var_pop": [ - 2285 + 2542 ], "var_samp": [ - 2287 + 2544 ], "variance": [ - 2289 + 2546 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 2260 + 2517 ], "on_conflict": [ - 2267 + 2524 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_avg_fields": { "captain_steam_id": [ - 31 + 32 ], "registered_by_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "registered_by_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_bool_exp": { "_and": [ - 2257 + 2514 ], "_not": [ - 2257 + 2514 ], "_or": [ - 2257 + 2514 ], "assigned_division": [ - 1961 + 2218 ], "assigned_division_id": [ - 5172 + 5456 ], "captain": [ - 4056 + 4335 ], "captain_steam_id": [ - 266 + 271 ], "created_at": [ - 4671 + 4955 ], "decline_reason": [ - 82 + 86 ], "e_registration_status": [ - 909 + 974 ], "id": [ - 5172 + 5456 ], "league_season_id": [ - 5172 + 5456 ], "league_team": [ - 2293 + 2550 ], "league_team_id": [ - 5172 + 5456 ], "registered_by": [ - 4056 + 4335 ], "registered_by_steam_id": [ - 266 + 271 ], "requested_division": [ - 1961 + 2218 ], "requested_division_id": [ - 5172 + 5456 ], "roster": [ - 2216 + 2473 ], "roster_aggregate": [ - 2209 + 2466 ], "season": [ - 2138 + 2395 ], "seed": [ - 41 + 42 ], "status": [ - 912 + 977 ], "tournament_team": [ - 5073 + 5357 ], "tournament_team_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_constraint": {}, "league_team_seasons_inc_input": { "captain_steam_id": [ - 264 + 269 ], "registered_by_steam_id": [ - 264 + 269 ], "seed": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_insert_input": { "assigned_division": [ - 1968 + 2225 ], "assigned_division_id": [ - 5170 + 5454 ], "captain": [ - 4063 + 4342 ], "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "decline_reason": [ - 80 + 84 ], "e_registration_status": [ - 917 + 982 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team": [ - 2299 + 2556 ], "league_team_id": [ - 5170 + 5454 ], "registered_by": [ - 4063 + 4342 ], "registered_by_steam_id": [ - 264 + 269 ], "requested_division": [ - 1968 + 2225 ], "requested_division_id": [ - 5170 + 5454 ], "roster": [ - 2213 + 2470 ], "season": [ - 2148 + 2405 ], "seed": [ - 40 + 41 ], "status": [ - 911 + 976 ], "tournament_team": [ - 5082 + 5366 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 5170 + 5454 ], "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "decline_reason": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team_id": [ - 5170 + 5454 ], "registered_by_steam_id": [ - 264 + 269 ], "requested_division_id": [ - 5170 + 5454 ], "seed": [ - 40 + 41 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 3094 + 3373 ], "captain_steam_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "decline_reason": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "league_team_id": [ - 3094 + 3373 ], "registered_by_steam_id": [ - 3094 + 3373 ], "requested_division_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 5170 + 5454 ], "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "decline_reason": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team_id": [ - 5170 + 5454 ], "registered_by_steam_id": [ - 264 + 269 ], "requested_division_id": [ - 5170 + 5454 ], "seed": [ - 40 + 41 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 3094 + 3373 ], "captain_steam_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "decline_reason": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "league_team_id": [ - 3094 + 3373 ], "registered_by_steam_id": [ - 3094 + 3373 ], "requested_division_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2248 + 2505 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 2260 + 2517 ], "on_conflict": [ - 2267 + 2524 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_on_conflict": { "constraint": [ - 2258 + 2515 ], "update_columns": [ - 2282 + 2539 ], "where": [ - 2257 + 2514 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_order_by": { "assigned_division": [ - 1970 + 2227 ], "assigned_division_id": [ - 3094 + 3373 ], "captain": [ - 4065 + 4344 ], "captain_steam_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "decline_reason": [ - 3094 + 3373 ], "e_registration_status": [ - 919 + 984 ], "id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "league_team": [ - 2301 + 2558 ], "league_team_id": [ - 3094 + 3373 ], "registered_by": [ - 4065 + 4344 ], "registered_by_steam_id": [ - 3094 + 3373 ], "requested_division": [ - 1970 + 2227 ], "requested_division_id": [ - 3094 + 3373 ], "roster_aggregate": [ - 2212 + 2469 ], "season": [ - 2150 + 2407 ], "seed": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "tournament_team": [ - 5084 + 5368 ], "tournament_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 5170 + 5454 ], "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "decline_reason": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team_id": [ - 5170 + 5454 ], "registered_by_steam_id": [ - 264 + 269 ], "requested_division_id": [ - 5170 + 5454 ], "seed": [ - 40 + 41 ], "status": [ - 911 + 976 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_stddev_fields": { "captain_steam_id": [ - 31 + 32 ], "registered_by_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "registered_by_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_stddev_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "registered_by_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "registered_by_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_stddev_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "registered_by_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "registered_by_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 2279 + 2536 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 5170 + 5454 ], "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "decline_reason": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team_id": [ - 5170 + 5454 ], "registered_by_steam_id": [ - 264 + 269 ], "requested_division_id": [ - 5170 + 5454 ], "seed": [ - 40 + 41 ], "status": [ - 911 + 976 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_sum_fields": { "captain_steam_id": [ - 264 + 269 ], "registered_by_steam_id": [ - 264 + 269 ], "seed": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "registered_by_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 2259 + 2516 ], "_set": [ - 2271 + 2528 ], "where": [ - 2257 + 2514 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_var_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "registered_by_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "registered_by_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_var_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "registered_by_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "registered_by_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_variance_fields": { "captain_steam_id": [ - 31 + 32 ], "registered_by_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "registered_by_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "league_teams": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "movements": [ - 2166, + 2423, { "distinct_on": [ - 2187, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2185, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2432 ] } ], "movements_aggregate": [ - 2167, + 2424, { "distinct_on": [ - 2187, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2185, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2432 ] } ], "team": [ - 4621 + 4905 ], "team_id": [ - 5170 + 5454 ], "team_seasons": [ - 2248, + 2505, { "distinct_on": [ - 2270, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2268, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2514 ] } ], "team_seasons_aggregate": [ - 2249, + 2506, { "distinct_on": [ - 2270, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2268, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2514 ] } ], "__typename": [ - 80 + 84 ] }, "league_teams_aggregate": { "aggregate": [ - 2292 + 2549 ], "nodes": [ - 2290 + 2547 ], "__typename": [ - 80 + 84 ] }, "league_teams_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2303, + 2560, "[league_teams_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2296 + 2553 ], "min": [ - 2297 + 2554 ], "__typename": [ - 80 + 84 ] }, "league_teams_bool_exp": { "_and": [ - 2293 + 2550 ], "_not": [ - 2293 + 2550 ], "_or": [ - 2293 + 2550 ], "created_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "movements": [ - 2175 + 2432 ], "movements_aggregate": [ - 2168 + 2425 ], "team": [ - 4632 + 4916 ], "team_id": [ - 5172 + 5456 ], "team_seasons": [ - 2257 + 2514 ], "team_seasons_aggregate": [ - 2250 + 2507 ], "__typename": [ - 80 + 84 ] }, "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "movements": [ - 2172 + 2429 ], "team": [ - 4641 + 4925 ], "team_id": [ - 5170 + 5454 ], "team_seasons": [ - 2254 + 2511 ], "__typename": [ - 80 + 84 ] }, "league_teams_max_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_teams_min_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_teams_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2290 + 2547 ], "__typename": [ - 80 + 84 ] }, "league_teams_obj_rel_insert_input": { "data": [ - 2295 + 2552 ], "on_conflict": [ - 2300 + 2557 ], "__typename": [ - 80 + 84 ] }, "league_teams_on_conflict": { "constraint": [ - 2294 + 2551 ], "update_columns": [ - 2307 + 2564 ], "where": [ - 2293 + 2550 ], "__typename": [ - 80 + 84 ] }, "league_teams_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "movements_aggregate": [ - 2171 + 2428 ], "team": [ - 4643 + 4927 ], "team_id": [ - 3094 + 3373 ], "team_seasons_aggregate": [ - 2253 + 2510 ], "__typename": [ - 80 + 84 ] }, "league_teams_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_teams_stream_cursor_input": { "initial_value": [ - 2306 + 2563 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 2304 + 2561 ], "where": [ - 2293 + 2550 ], "__typename": [ - 80 + 84 ] }, "lobbies": { "access": [ - 953 + 1018 ], "created_at": [ - 4670 + 4954 ], "e_lobby_access": [ - 948 + 1013 ], "id": [ - 5170 + 5454 ], "players": [ - 2328, + 2585, { "distinct_on": [ - 2351, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2349, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2596 ] } ], "players_aggregate": [ - 2329, + 2586, { "distinct_on": [ - 2351, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2349, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2596 ] } ], "__typename": [ - 80 + 84 ] }, "lobbies_aggregate": { "aggregate": [ - 2311 + 2568 ], "nodes": [ - 2309 + 2566 ], "__typename": [ - 80 + 84 ] }, "lobbies_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2322, + 2579, "[lobbies_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2315 + 2572 ], "min": [ - 2316 + 2573 ], "__typename": [ - 80 + 84 ] }, "lobbies_bool_exp": { "_and": [ - 2312 + 2569 ], "_not": [ - 2312 + 2569 ], "_or": [ - 2312 + 2569 ], "access": [ - 954 + 1019 ], "created_at": [ - 4671 + 4955 ], "e_lobby_access": [ - 951 + 1016 ], "id": [ - 5172 + 5456 ], "players": [ - 2339 + 2596 ], "players_aggregate": [ - 2330 + 2587 ], "__typename": [ - 80 + 84 ] }, "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 953 + 1018 ], "created_at": [ - 4670 + 4954 ], "e_lobby_access": [ - 959 + 1024 ], "id": [ - 5170 + 5454 ], "players": [ - 2336 + 2593 ], "__typename": [ - 80 + 84 ] }, "lobbies_max_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "lobbies_min_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "lobbies_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2309 + 2566 ], "__typename": [ - 80 + 84 ] }, "lobbies_obj_rel_insert_input": { "data": [ - 2314 + 2571 ], "on_conflict": [ - 2319 + 2576 ], "__typename": [ - 80 + 84 ] }, "lobbies_on_conflict": { "constraint": [ - 2313 + 2570 ], "update_columns": [ - 2326 + 2583 ], "where": [ - 2312 + 2569 ], "__typename": [ - 80 + 84 ] }, "lobbies_order_by": { "access": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "e_lobby_access": [ - 961 + 1026 ], "id": [ - 3094 + 3373 ], "players_aggregate": [ - 2335 + 2592 ], "__typename": [ - 80 + 84 ] }, "lobbies_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 953 + 1018 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "lobbies_stream_cursor_input": { "initial_value": [ - 2325 + 2582 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "lobbies_stream_cursor_value_input": { "access": [ - 953 + 1018 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 2323 + 2580 ], "where": [ - 2312 + 2569 ], "__typename": [ - 80 + 84 ] }, "lobby_players": { "captain": [ - 5 + 6 ], "invited_by_steam_id": [ - 264 + 269 ], "lobby": [ - 2309 + 2566 ], "lobby_id": [ - 5170 + 5454 ], "player": [ - 4052 + 4331 ], "status": [ - 974 + 1039 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "lobby_players_aggregate": { "aggregate": [ - 2334 + 2591 ], "nodes": [ - 2328 + 2585 ], "__typename": [ - 80 + 84 ] }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 2331 + 2588 ], "bool_or": [ - 2332 + 2589 ], "count": [ - 2333 + 2590 ], "__typename": [ - 80 + 84 ] }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2352 + 2609 ], "distinct": [ - 5 + 6 ], "filter": [ - 2339 + 2596 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2353 + 2610 ], "distinct": [ - 5 + 6 ], "filter": [ - 2339 + 2596 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 2351 + 2608 ], "distinct": [ - 5 + 6 ], "filter": [ - 2339 + 2596 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "lobby_players_aggregate_fields": { "avg": [ - 2337 + 2594 ], "count": [ - 40, + 41, { "columns": [ - 2351, + 2608, "[lobby_players_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2343 + 2600 ], "min": [ - 2345 + 2602 ], "stddev": [ - 2355 + 2612 ], "stddev_pop": [ - 2357 + 2614 ], "stddev_samp": [ - 2359 + 2616 ], "sum": [ - 2363 + 2620 ], "var_pop": [ - 2367 + 2624 ], "var_samp": [ - 2369 + 2626 ], "variance": [ - 2371 + 2628 ], "__typename": [ - 80 + 84 ] }, "lobby_players_aggregate_order_by": { "avg": [ - 2338 + 2595 ], "count": [ - 3094 + 3373 ], "max": [ - 2344 + 2601 ], "min": [ - 2346 + 2603 ], "stddev": [ - 2356 + 2613 ], "stddev_pop": [ - 2358 + 2615 ], "stddev_samp": [ - 2360 + 2617 ], "sum": [ - 2364 + 2621 ], "var_pop": [ - 2368 + 2625 ], "var_samp": [ - 2370 + 2627 ], "variance": [ - 2372 + 2629 ], "__typename": [ - 80 + 84 ] }, "lobby_players_arr_rel_insert_input": { "data": [ - 2342 + 2599 ], "on_conflict": [ - 2348 + 2605 ], "__typename": [ - 80 + 84 ] }, "lobby_players_avg_fields": { "invited_by_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "lobby_players_bool_exp": { "_and": [ - 2339 + 2596 ], "_not": [ - 2339 + 2596 ], "_or": [ - 2339 + 2596 ], "captain": [ - 6 + 7 ], "invited_by_steam_id": [ - 266 + 271 ], "lobby": [ - 2312 + 2569 ], "lobby_id": [ - 5172 + 5456 ], "player": [ - 4056 + 4335 ], "status": [ - 975 + 1040 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "lobby_players_constraint": {}, "lobby_players_inc_input": { "invited_by_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "lobby_players_insert_input": { "captain": [ - 5 + 6 ], "invited_by_steam_id": [ - 264 + 269 ], "lobby": [ - 2318 + 2575 ], "lobby_id": [ - 5170 + 5454 ], "player": [ - 4063 + 4342 ], "status": [ - 974 + 1039 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "lobby_players_max_fields": { "invited_by_steam_id": [ - 264 + 269 ], "lobby_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 3094 + 3373 ], "lobby_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "lobby_players_min_fields": { "invited_by_steam_id": [ - 264 + 269 ], "lobby_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 3094 + 3373 ], "lobby_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "lobby_players_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2328 + 2585 ], "__typename": [ - 80 + 84 ] }, "lobby_players_on_conflict": { "constraint": [ - 2340 + 2597 ], "update_columns": [ - 2365 + 2622 ], "where": [ - 2339 + 2596 ], "__typename": [ - 80 + 84 ] }, "lobby_players_order_by": { "captain": [ - 3094 + 3373 ], "invited_by_steam_id": [ - 3094 + 3373 ], "lobby": [ - 2320 + 2577 ], "lobby_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "status": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "lobby_players_pk_columns_input": { "lobby_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "lobby_players_select_column": {}, @@ -40007,1042 +44761,1042 @@ export default { "lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_or_arguments_columns": {}, "lobby_players_set_input": { "captain": [ - 5 + 6 ], "invited_by_steam_id": [ - 264 + 269 ], "lobby_id": [ - 5170 + 5454 ], "status": [ - 974 + 1039 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "lobby_players_stddev_fields": { "invited_by_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "lobby_players_stddev_pop_fields": { "invited_by_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "lobby_players_stddev_samp_fields": { "invited_by_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "lobby_players_stream_cursor_input": { "initial_value": [ - 2362 + 2619 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "lobby_players_stream_cursor_value_input": { "captain": [ - 5 + 6 ], "invited_by_steam_id": [ - 264 + 269 ], "lobby_id": [ - 5170 + 5454 ], "status": [ - 974 + 1039 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "lobby_players_sum_fields": { "invited_by_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 2341 + 2598 ], "_set": [ - 2354 + 2611 ], "where": [ - 2339 + 2596 ], "__typename": [ - 80 + 84 ] }, "lobby_players_var_pop_fields": { "invited_by_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "lobby_players_var_samp_fields": { "invited_by_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "lobby_players_variance_fields": { "invited_by_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "map_pools": { "e_type": [ - 989 + 1054 ], "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "maps": [ - 5830, + 6114, { "distinct_on": [ - 5847, + 6131, "[v_pool_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5846, + 6130, "[v_pool_maps_order_by!]" ], "where": [ - 5839 + 6123 ] } ], "maps_aggregate": [ - 5831, + 6115, { "distinct_on": [ - 5847, + 6131, "[v_pool_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5846, + 6130, "[v_pool_maps_order_by!]" ], "where": [ - 5839 + 6123 ] } ], "seed": [ - 5 + 6 ], "type": [ - 994 + 1059 ], "__typename": [ - 80 + 84 ] }, "map_pools_aggregate": { "aggregate": [ - 2375 + 2632 ], "nodes": [ - 2373 + 2630 ], "__typename": [ - 80 + 84 ] }, "map_pools_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2386, + 2643, "[map_pools_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2379 + 2636 ], "min": [ - 2380 + 2637 ], "__typename": [ - 80 + 84 ] }, "map_pools_bool_exp": { "_and": [ - 2376 + 2633 ], "_not": [ - 2376 + 2633 ], "_or": [ - 2376 + 2633 ], "e_type": [ - 992 + 1057 ], "enabled": [ - 6 + 7 ], "id": [ - 5172 + 5456 ], "maps": [ - 5839 + 6123 ], "maps_aggregate": [ - 5832 + 6116 ], "seed": [ - 6 + 7 ], "type": [ - 995 + 1060 ], "__typename": [ - 80 + 84 ] }, "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 1000 + 1065 ], "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "maps": [ - 5838 + 6122 ], "seed": [ - 5 + 6 ], "type": [ - 994 + 1059 ], "__typename": [ - 80 + 84 ] }, "map_pools_max_fields": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "map_pools_min_fields": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "map_pools_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2373 + 2630 ], "__typename": [ - 80 + 84 ] }, "map_pools_obj_rel_insert_input": { "data": [ - 2378 + 2635 ], "on_conflict": [ - 2383 + 2640 ], "__typename": [ - 80 + 84 ] }, "map_pools_on_conflict": { "constraint": [ - 2377 + 2634 ], "update_columns": [ - 2390 + 2647 ], "where": [ - 2376 + 2633 ], "__typename": [ - 80 + 84 ] }, "map_pools_order_by": { "e_type": [ - 1002 + 1067 ], "enabled": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "maps_aggregate": [ - 5837 + 6121 ], "seed": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "map_pools_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "map_pools_select_column": {}, "map_pools_set_input": { "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "seed": [ - 5 + 6 ], "type": [ - 994 + 1059 ], "__typename": [ - 80 + 84 ] }, "map_pools_stream_cursor_input": { "initial_value": [ - 2389 + 2646 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "map_pools_stream_cursor_value_input": { "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "seed": [ - 5 + 6 ], "type": [ - 994 + 1059 ], "__typename": [ - 80 + 84 ] }, "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 2387 + 2644 ], "where": [ - 2376 + 2633 ], "__typename": [ - 80 + 84 ] }, "maps": { "active_pool": [ - 5 + 6 ], "e_match_type": [ - 1112 + 1177 ], "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "match_maps": [ - 2716, + 2973, { "distinct_on": [ - 2738, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2736, + 2993, "[match_maps_order_by!]" ], "where": [ - 2725 + 2982 ] } ], "match_maps_aggregate": [ - 2717, + 2974, { "distinct_on": [ - 2738, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2736, + 2993, "[match_maps_order_by!]" ], "where": [ - 2725 + 2982 ] } ], "match_veto_picks": [ - 2688, + 2945, { "distinct_on": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2706, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2954 ] } ], "match_veto_picks_aggregate": [ - 2689, + 2946, { "distinct_on": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2706, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2954 ] } ], "name": [ - 80 + 84 ], "patch": [ - 80 + 84 ], "poster": [ - 80 + 84 ], "type": [ - 1117 + 1182 ], "workshop_map_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "maps_aggregate": { "aggregate": [ - 2398 + 2655 ], "nodes": [ - 2392 + 2649 ], "__typename": [ - 80 + 84 ] }, "maps_aggregate_bool_exp": { "bool_and": [ - 2395 + 2652 ], "bool_or": [ - 2396 + 2653 ], "count": [ - 2397 + 2654 ], "__typename": [ - 80 + 84 ] }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 2414 + 2671 ], "distinct": [ - 5 + 6 ], "filter": [ - 2401 + 2658 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 2415 + 2672 ], "distinct": [ - 5 + 6 ], "filter": [ - 2401 + 2658 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "maps_aggregate_bool_exp_count": { "arguments": [ - 2413 + 2670 ], "distinct": [ - 5 + 6 ], "filter": [ - 2401 + 2658 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "maps_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2413, + 2670, "[maps_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2404 + 2661 ], "min": [ - 2406 + 2663 ], "__typename": [ - 80 + 84 ] }, "maps_aggregate_order_by": { "count": [ - 3094 + 3373 ], "max": [ - 2405 + 2662 ], "min": [ - 2407 + 2664 ], "__typename": [ - 80 + 84 ] }, "maps_arr_rel_insert_input": { "data": [ - 2403 + 2660 ], "on_conflict": [ - 2410 + 2667 ], "__typename": [ - 80 + 84 ] }, "maps_bool_exp": { "_and": [ - 2401 + 2658 ], "_not": [ - 2401 + 2658 ], "_or": [ - 2401 + 2658 ], "active_pool": [ - 6 + 7 ], "e_match_type": [ - 1115 + 1180 ], "enabled": [ - 6 + 7 ], "id": [ - 5172 + 5456 ], "label": [ - 82 + 86 ], "match_maps": [ - 2725 + 2982 ], "match_maps_aggregate": [ - 2718 + 2975 ], "match_veto_picks": [ - 2697 + 2954 ], "match_veto_picks_aggregate": [ - 2690 + 2947 ], "name": [ - 82 + 86 ], "patch": [ - 82 + 86 ], "poster": [ - 82 + 86 ], "type": [ - 1118 + 1183 ], "workshop_map_id": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "maps_constraint": {}, "maps_insert_input": { "active_pool": [ - 5 + 6 ], "e_match_type": [ - 1123 + 1188 ], "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "match_maps": [ - 2722 + 2979 ], "match_veto_picks": [ - 2696 + 2953 ], "name": [ - 80 + 84 ], "patch": [ - 80 + 84 ], "poster": [ - 80 + 84 ], "type": [ - 1117 + 1182 ], "workshop_map_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "maps_max_fields": { "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "name": [ - 80 + 84 ], "patch": [ - 80 + 84 ], "poster": [ - 80 + 84 ], "workshop_map_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "maps_max_order_by": { "id": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "patch": [ - 3094 + 3373 ], "poster": [ - 3094 + 3373 ], "workshop_map_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "maps_min_fields": { "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "name": [ - 80 + 84 ], "patch": [ - 80 + 84 ], "poster": [ - 80 + 84 ], "workshop_map_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "maps_min_order_by": { "id": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "patch": [ - 3094 + 3373 ], "poster": [ - 3094 + 3373 ], "workshop_map_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "maps_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2392 + 2649 ], "__typename": [ - 80 + 84 ] }, "maps_obj_rel_insert_input": { "data": [ - 2403 + 2660 ], "on_conflict": [ - 2410 + 2667 ], "__typename": [ - 80 + 84 ] }, "maps_on_conflict": { "constraint": [ - 2402 + 2659 ], "update_columns": [ - 2419 + 2676 ], "where": [ - 2401 + 2658 ], "__typename": [ - 80 + 84 ] }, "maps_order_by": { "active_pool": [ - 3094 + 3373 ], "e_match_type": [ - 1125 + 1190 ], "enabled": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "match_maps_aggregate": [ - 2721 + 2978 ], "match_veto_picks_aggregate": [ - 2695 + 2952 ], "name": [ - 3094 + 3373 ], "patch": [ - 3094 + 3373 ], "poster": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "workshop_map_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "maps_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "maps_select_column": {}, @@ -41050,2777 +45804,2777 @@ export default { "maps_select_column_maps_aggregate_bool_exp_bool_or_arguments_columns": {}, "maps_set_input": { "active_pool": [ - 5 + 6 ], "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "name": [ - 80 + 84 ], "patch": [ - 80 + 84 ], "poster": [ - 80 + 84 ], "type": [ - 1117 + 1182 ], "workshop_map_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "maps_stream_cursor_input": { "initial_value": [ - 2418 + 2675 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "maps_stream_cursor_value_input": { "active_pool": [ - 5 + 6 ], "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "name": [ - 80 + 84 ], "patch": [ - 80 + 84 ], "poster": [ - 80 + 84 ], "type": [ - 1117 + 1182 ], "workshop_map_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "maps_update_column": {}, "maps_updates": { "_set": [ - 2416 + 2673 ], "where": [ - 2401 + 2658 ], "__typename": [ - 80 + 84 ] }, "match_clips": { "created_at": [ - 4670 + 4954 ], "download_url": [ - 80 + 84 ], "duration_ms": [ - 40 + 41 ], "file": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "kills_count": [ - 40 + 41 ], "match_map": [ - 2716 + 2973 ], "match_map_demo": [ - 2596 + 2853 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "render_jobs": [ - 296, + 301, { "distinct_on": [ - 324, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 321, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 313 ] } ], "render_jobs_aggregate": [ - 297, + 302, { "distinct_on": [ - 324, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 321, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 313 ] } ], "round": [ - 40 + 41 ], "size": [ - 264 + 269 ], "target": [ - 4052 + 4331 ], "target_steam_id": [ - 264 + 269 ], "thumbnail_download_url": [ - 80 + 84 ], "thumbnail_url": [ - 80 + 84 ], "title": [ - 80 + 84 ], "user": [ - 4052 + 4331 ], "user_steam_id": [ - 264 + 269 ], "views_count": [ - 40 + 41 ], "visibility": [ - 1015 + 1080 ], "__typename": [ - 80 + 84 ] }, "match_clips_aggregate": { "aggregate": [ - 2425 + 2682 ], "nodes": [ - 2421 + 2678 ], "__typename": [ - 80 + 84 ] }, "match_clips_aggregate_bool_exp": { "count": [ - 2424 + 2681 ], "__typename": [ - 80 + 84 ] }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 2443 + 2700 ], "distinct": [ - 5 + 6 ], "filter": [ - 2430 + 2687 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "match_clips_aggregate_fields": { "avg": [ - 2428 + 2685 ], "count": [ - 40, + 41, { "columns": [ - 2443, + 2700, "[match_clips_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2434 + 2691 ], "min": [ - 2436 + 2693 ], "stddev": [ - 2445 + 2702 ], "stddev_pop": [ - 2447 + 2704 ], "stddev_samp": [ - 2449 + 2706 ], "sum": [ - 2453 + 2710 ], "var_pop": [ - 2457 + 2714 ], "var_samp": [ - 2459 + 2716 ], "variance": [ - 2461 + 2718 ], "__typename": [ - 80 + 84 ] }, "match_clips_aggregate_order_by": { "avg": [ - 2429 + 2686 ], "count": [ - 3094 + 3373 ], "max": [ - 2435 + 2692 ], "min": [ - 2437 + 2694 ], "stddev": [ - 2446 + 2703 ], "stddev_pop": [ - 2448 + 2705 ], "stddev_samp": [ - 2450 + 2707 ], "sum": [ - 2454 + 2711 ], "var_pop": [ - 2458 + 2715 ], "var_samp": [ - 2460 + 2717 ], "variance": [ - 2462 + 2719 ], "__typename": [ - 80 + 84 ] }, "match_clips_arr_rel_insert_input": { "data": [ - 2433 + 2690 ], "on_conflict": [ - 2440 + 2697 ], "__typename": [ - 80 + 84 ] }, "match_clips_avg_fields": { "duration_ms": [ - 31 + 32 ], "kills_count": [ - 31 + 32 ], "round": [ - 31 + 32 ], "size": [ - 31 + 32 ], "target_steam_id": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "views_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_clips_avg_order_by": { "duration_ms": [ - 3094 + 3373 ], "kills_count": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "target_steam_id": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "views_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_clips_bool_exp": { "_and": [ - 2430 + 2687 ], "_not": [ - 2430 + 2687 ], "_or": [ - 2430 + 2687 ], "created_at": [ - 4671 + 4955 ], "download_url": [ - 82 + 86 ], "duration_ms": [ - 41 + 42 ], "file": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "kills_count": [ - 41 + 42 ], "match_map": [ - 2725 + 2982 ], "match_map_demo": [ - 2608 + 2865 ], "match_map_demo_id": [ - 5172 + 5456 ], "match_map_id": [ - 5172 + 5456 ], "render_jobs": [ - 308 + 313 ], "render_jobs_aggregate": [ - 298 + 303 ], "round": [ - 41 + 42 ], "size": [ - 266 + 271 ], "target": [ - 4056 + 4335 ], "target_steam_id": [ - 266 + 271 ], "thumbnail_download_url": [ - 82 + 86 ], "thumbnail_url": [ - 82 + 86 ], "title": [ - 82 + 86 ], "user": [ - 4056 + 4335 ], "user_steam_id": [ - 266 + 271 ], "views_count": [ - 41 + 42 ], "visibility": [ - 1016 + 1081 ], "__typename": [ - 80 + 84 ] }, "match_clips_constraint": {}, "match_clips_inc_input": { "duration_ms": [ - 40 + 41 ], "kills_count": [ - 40 + 41 ], "round": [ - 40 + 41 ], "size": [ - 264 + 269 ], "target_steam_id": [ - 264 + 269 ], "user_steam_id": [ - 264 + 269 ], "views_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_clips_insert_input": { "created_at": [ - 4670 + 4954 ], "duration_ms": [ - 40 + 41 ], "file": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "kills_count": [ - 40 + 41 ], "match_map": [ - 2734 + 2991 ], "match_map_demo": [ - 2620 + 2877 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "render_jobs": [ - 305 + 310 ], "round": [ - 40 + 41 ], "size": [ - 264 + 269 ], "target": [ - 4063 + 4342 ], "target_steam_id": [ - 264 + 269 ], "thumbnail_url": [ - 80 + 84 ], "title": [ - 80 + 84 ], "user": [ - 4063 + 4342 ], "user_steam_id": [ - 264 + 269 ], "views_count": [ - 40 + 41 ], "visibility": [ - 1015 + 1080 ], "__typename": [ - 80 + 84 ] }, "match_clips_max_fields": { "created_at": [ - 4670 + 4954 ], "download_url": [ - 80 + 84 ], "duration_ms": [ - 40 + 41 ], "file": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "kills_count": [ - 40 + 41 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "size": [ - 264 + 269 ], "target_steam_id": [ - 264 + 269 ], "thumbnail_download_url": [ - 80 + 84 ], "thumbnail_url": [ - 80 + 84 ], "title": [ - 80 + 84 ], "user_steam_id": [ - 264 + 269 ], "views_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_clips_max_order_by": { "created_at": [ - 3094 + 3373 ], "duration_ms": [ - 3094 + 3373 ], "file": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "kills_count": [ - 3094 + 3373 ], "match_map_demo_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "target_steam_id": [ - 3094 + 3373 ], "thumbnail_url": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "views_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_clips_min_fields": { "created_at": [ - 4670 + 4954 ], "download_url": [ - 80 + 84 ], "duration_ms": [ - 40 + 41 ], "file": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "kills_count": [ - 40 + 41 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "size": [ - 264 + 269 ], "target_steam_id": [ - 264 + 269 ], "thumbnail_download_url": [ - 80 + 84 ], "thumbnail_url": [ - 80 + 84 ], "title": [ - 80 + 84 ], "user_steam_id": [ - 264 + 269 ], "views_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_clips_min_order_by": { "created_at": [ - 3094 + 3373 ], "duration_ms": [ - 3094 + 3373 ], "file": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "kills_count": [ - 3094 + 3373 ], "match_map_demo_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "target_steam_id": [ - 3094 + 3373 ], "thumbnail_url": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "views_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_clips_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2421 + 2678 ], "__typename": [ - 80 + 84 ] }, "match_clips_obj_rel_insert_input": { "data": [ - 2433 + 2690 ], "on_conflict": [ - 2440 + 2697 ], "__typename": [ - 80 + 84 ] }, "match_clips_on_conflict": { "constraint": [ - 2431 + 2688 ], "update_columns": [ - 2455 + 2712 ], "where": [ - 2430 + 2687 ], "__typename": [ - 80 + 84 ] }, "match_clips_order_by": { "created_at": [ - 3094 + 3373 ], "download_url": [ - 3094 + 3373 ], "duration_ms": [ - 3094 + 3373 ], "file": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "kills_count": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_demo": [ - 2622 + 2879 ], "match_map_demo_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "render_jobs_aggregate": [ - 303 + 308 ], "round": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "target": [ - 4065 + 4344 ], "target_steam_id": [ - 3094 + 3373 ], "thumbnail_download_url": [ - 3094 + 3373 ], "thumbnail_url": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "user": [ - 4065 + 4344 ], "user_steam_id": [ - 3094 + 3373 ], "views_count": [ - 3094 + 3373 ], "visibility": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_clips_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4670 + 4954 ], "duration_ms": [ - 40 + 41 ], "file": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "kills_count": [ - 40 + 41 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "size": [ - 264 + 269 ], "target_steam_id": [ - 264 + 269 ], "thumbnail_url": [ - 80 + 84 ], "title": [ - 80 + 84 ], "user_steam_id": [ - 264 + 269 ], "views_count": [ - 40 + 41 ], "visibility": [ - 1015 + 1080 ], "__typename": [ - 80 + 84 ] }, "match_clips_stddev_fields": { "duration_ms": [ - 31 + 32 ], "kills_count": [ - 31 + 32 ], "round": [ - 31 + 32 ], "size": [ - 31 + 32 ], "target_steam_id": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "views_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_clips_stddev_order_by": { "duration_ms": [ - 3094 + 3373 ], "kills_count": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "target_steam_id": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "views_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_clips_stddev_pop_fields": { "duration_ms": [ - 31 + 32 ], "kills_count": [ - 31 + 32 ], "round": [ - 31 + 32 ], "size": [ - 31 + 32 ], "target_steam_id": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "views_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 3094 + 3373 ], "kills_count": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "target_steam_id": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "views_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_clips_stddev_samp_fields": { "duration_ms": [ - 31 + 32 ], "kills_count": [ - 31 + 32 ], "round": [ - 31 + 32 ], "size": [ - 31 + 32 ], "target_steam_id": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "views_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 3094 + 3373 ], "kills_count": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "target_steam_id": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "views_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_clips_stream_cursor_input": { "initial_value": [ - 2452 + 2709 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "duration_ms": [ - 40 + 41 ], "file": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "kills_count": [ - 40 + 41 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "size": [ - 264 + 269 ], "target_steam_id": [ - 264 + 269 ], "thumbnail_url": [ - 80 + 84 ], "title": [ - 80 + 84 ], "user_steam_id": [ - 264 + 269 ], "views_count": [ - 40 + 41 ], "visibility": [ - 1015 + 1080 ], "__typename": [ - 80 + 84 ] }, "match_clips_sum_fields": { "duration_ms": [ - 40 + 41 ], "kills_count": [ - 40 + 41 ], "round": [ - 40 + 41 ], "size": [ - 264 + 269 ], "target_steam_id": [ - 264 + 269 ], "user_steam_id": [ - 264 + 269 ], "views_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_clips_sum_order_by": { "duration_ms": [ - 3094 + 3373 ], "kills_count": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "target_steam_id": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "views_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 2432 + 2689 ], "_set": [ - 2444 + 2701 ], "where": [ - 2430 + 2687 ], "__typename": [ - 80 + 84 ] }, "match_clips_var_pop_fields": { "duration_ms": [ - 31 + 32 ], "kills_count": [ - 31 + 32 ], "round": [ - 31 + 32 ], "size": [ - 31 + 32 ], "target_steam_id": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "views_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_clips_var_pop_order_by": { "duration_ms": [ - 3094 + 3373 ], "kills_count": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "target_steam_id": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "views_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_clips_var_samp_fields": { "duration_ms": [ - 31 + 32 ], "kills_count": [ - 31 + 32 ], "round": [ - 31 + 32 ], "size": [ - 31 + 32 ], "target_steam_id": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "views_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_clips_var_samp_order_by": { "duration_ms": [ - 3094 + 3373 ], "kills_count": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "target_steam_id": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "views_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_clips_variance_fields": { "duration_ms": [ - 31 + 32 ], "kills_count": [ - 31 + 32 ], "round": [ - 31 + 32 ], "size": [ - 31 + 32 ], "target_steam_id": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "views_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_clips_variance_order_by": { "duration_ms": [ - 3094 + 3373 ], "kills_count": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "target_steam_id": [ - 3094 + 3373 ], "user_steam_id": [ - 3094 + 3373 ], "views_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions": { "created_at": [ - 4670 + 4954 ], "error_message": [ - 80 + 84 ], "game_server_node": [ - 1806 + 2063 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "last_activity_at": [ - 4670 + 4954 ], "last_status_at": [ - 4670 + 4954 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_demo": [ - 2596 + 2853 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "status": [ - 80 + 84 ], "status_history": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "stream_url": [ - 80 + 84 ], "watcher": [ - 4052 + 4331 ], "watcher_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_aggregate": { "aggregate": [ - 2467 + 2724 ], "nodes": [ - 2463 + 2720 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 2466 + 2723 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 2489 + 2746 ], "distinct": [ - 5 + 6 ], "filter": [ - 2473 + 2730 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_aggregate_fields": { "avg": [ - 2471 + 2728 ], "count": [ - 40, + 41, { "columns": [ - 2489, + 2746, "[match_demo_sessions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2480 + 2737 ], "min": [ - 2482 + 2739 ], "stddev": [ - 2491 + 2748 ], "stddev_pop": [ - 2493 + 2750 ], "stddev_samp": [ - 2495 + 2752 ], "sum": [ - 2499 + 2756 ], "var_pop": [ - 2503 + 2760 ], "var_samp": [ - 2505 + 2762 ], "variance": [ - 2507 + 2764 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 2472 + 2729 ], "count": [ - 3094 + 3373 ], "max": [ - 2481 + 2738 ], "min": [ - 2483 + 2740 ], "stddev": [ - 2492 + 2749 ], "stddev_pop": [ - 2494 + 2751 ], "stddev_samp": [ - 2496 + 2753 ], "sum": [ - 2500 + 2757 ], "var_pop": [ - 2504 + 2761 ], "var_samp": [ - 2506 + 2763 ], "variance": [ - 2508 + 2765 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_append_input": { "status_history": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 2479 + 2736 ], "on_conflict": [ - 2485 + 2742 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_avg_fields": { "watcher_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_bool_exp": { "_and": [ - 2473 + 2730 ], "_not": [ - 2473 + 2730 ], "_or": [ - 2473 + 2730 ], "created_at": [ - 4671 + 4955 ], "error_message": [ - 82 + 86 ], "game_server_node": [ - 1818 + 2075 ], "game_server_node_id": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "k8s_job_name": [ - 82 + 86 ], "last_activity_at": [ - 4671 + 4955 ], "last_status_at": [ - 4671 + 4955 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_demo": [ - 2608 + 2865 ], "match_map_demo_id": [ - 5172 + 5456 ], "match_map_id": [ - 5172 + 5456 ], "status": [ - 82 + 86 ], "status_history": [ - 1932 + 2189 ], "stream_url": [ - 82 + 86 ], "watcher": [ - 4056 + 4335 ], "watcher_steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_constraint": {}, "match_demo_sessions_delete_at_path_input": { "status_history": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_delete_elem_input": { "status_history": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_delete_key_input": { "status_history": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_inc_input": { "watcher_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_insert_input": { "created_at": [ - 4670 + 4954 ], "error_message": [ - 80 + 84 ], "game_server_node": [ - 1830 + 2087 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "last_activity_at": [ - 4670 + 4954 ], "last_status_at": [ - 4670 + 4954 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_demo": [ - 2620 + 2877 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "status": [ - 80 + 84 ], "status_history": [ - 1930 + 2187 ], "stream_url": [ - 80 + 84 ], "watcher": [ - 4063 + 4342 ], "watcher_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_max_fields": { "created_at": [ - 4670 + 4954 ], "error_message": [ - 80 + 84 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "last_activity_at": [ - 4670 + 4954 ], "last_status_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "status": [ - 80 + 84 ], "stream_url": [ - 80 + 84 ], "watcher_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_max_order_by": { "created_at": [ - 3094 + 3373 ], "error_message": [ - 3094 + 3373 ], "game_server_node_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "k8s_job_name": [ - 3094 + 3373 ], "last_activity_at": [ - 3094 + 3373 ], "last_status_at": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_demo_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "stream_url": [ - 3094 + 3373 ], "watcher_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_min_fields": { "created_at": [ - 4670 + 4954 ], "error_message": [ - 80 + 84 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "last_activity_at": [ - 4670 + 4954 ], "last_status_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "status": [ - 80 + 84 ], "stream_url": [ - 80 + 84 ], "watcher_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_min_order_by": { "created_at": [ - 3094 + 3373 ], "error_message": [ - 3094 + 3373 ], "game_server_node_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "k8s_job_name": [ - 3094 + 3373 ], "last_activity_at": [ - 3094 + 3373 ], "last_status_at": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_demo_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "stream_url": [ - 3094 + 3373 ], "watcher_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2463 + 2720 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_on_conflict": { "constraint": [ - 2474 + 2731 ], "update_columns": [ - 2501 + 2758 ], "where": [ - 2473 + 2730 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_order_by": { "created_at": [ - 3094 + 3373 ], "error_message": [ - 3094 + 3373 ], "game_server_node": [ - 1832 + 2089 ], "game_server_node_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "k8s_job_name": [ - 3094 + 3373 ], "last_activity_at": [ - 3094 + 3373 ], "last_status_at": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_demo": [ - 2622 + 2879 ], "match_map_demo_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "status_history": [ - 3094 + 3373 ], "stream_url": [ - 3094 + 3373 ], "watcher": [ - 4065 + 4344 ], "watcher_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_prepend_input": { "status_history": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4670 + 4954 ], "error_message": [ - 80 + 84 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "last_activity_at": [ - 4670 + 4954 ], "last_status_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "status": [ - 80 + 84 ], "status_history": [ - 1930 + 2187 ], "stream_url": [ - 80 + 84 ], "watcher_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_stddev_fields": { "watcher_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_stddev_pop_fields": { "watcher_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_stddev_samp_fields": { "watcher_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 2498 + 2755 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "error_message": [ - 80 + 84 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "last_activity_at": [ - 4670 + 4954 ], "last_status_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "status": [ - 80 + 84 ], "status_history": [ - 1930 + 2187 ], "stream_url": [ - 80 + 84 ], "watcher_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_sum_fields": { "watcher_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 2469 + 2726 ], "_delete_at_path": [ - 2475 + 2732 ], "_delete_elem": [ - 2476 + 2733 ], "_delete_key": [ - 2477 + 2734 ], "_inc": [ - 2478 + 2735 ], "_prepend": [ - 2488 + 2745 ], "_set": [ - 2490 + 2747 ], "where": [ - 2473 + 2730 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_var_pop_fields": { "watcher_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_var_samp_fields": { "watcher_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_variance_fields": { "watcher_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players": { "captain": [ - 5 + 6 ], "checked_in": [ - 5 + 6 ], "discord_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_connected": [ - 5 + 6 ], "lineup": [ - 2554 + 2811 ], "match_lineup_id": [ - 5170 + 5454 ], "party_id": [ - 5170 + 5454 ], "party_source": [ - 1076 + 1141 ], "placeholder_name": [ - 80 + 84 ], "player": [ - 4052 + 4331 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_aggregate": { "aggregate": [ - 2515 + 2772 ], "nodes": [ - 2509 + 2766 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 2512 + 2769 ], "bool_or": [ - 2513 + 2770 ], "count": [ - 2514 + 2771 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2533 + 2790 ], "distinct": [ - 5 + 6 ], "filter": [ - 2520 + 2777 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2534 + 2791 ], "distinct": [ - 5 + 6 ], "filter": [ - 2520 + 2777 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 2532 + 2789 ], "distinct": [ - 5 + 6 ], "filter": [ - 2520 + 2777 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_aggregate_fields": { "avg": [ - 2518 + 2775 ], "count": [ - 40, + 41, { "columns": [ - 2532, + 2789, "[match_lineup_players_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2524 + 2781 ], "min": [ - 2526 + 2783 ], "stddev": [ - 2536 + 2793 ], "stddev_pop": [ - 2538 + 2795 ], "stddev_samp": [ - 2540 + 2797 ], "sum": [ - 2544 + 2801 ], "var_pop": [ - 2548 + 2805 ], "var_samp": [ - 2550 + 2807 ], "variance": [ - 2552 + 2809 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_aggregate_order_by": { "avg": [ - 2519 + 2776 ], "count": [ - 3094 + 3373 ], "max": [ - 2525 + 2782 ], "min": [ - 2527 + 2784 ], "stddev": [ - 2537 + 2794 ], "stddev_pop": [ - 2539 + 2796 ], "stddev_samp": [ - 2541 + 2798 ], "sum": [ - 2545 + 2802 ], "var_pop": [ - 2549 + 2806 ], "var_samp": [ - 2551 + 2808 ], "variance": [ - 2553 + 2810 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 2523 + 2780 ], "on_conflict": [ - 2529 + 2786 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_avg_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_bool_exp": { "_and": [ - 2520 + 2777 ], "_not": [ - 2520 + 2777 ], "_or": [ - 2520 + 2777 ], "captain": [ - 6 + 7 ], "checked_in": [ - 6 + 7 ], "discord_id": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "is_connected": [ - 6 + 7 ], "lineup": [ - 2563 + 2820 ], "match_lineup_id": [ - 5172 + 5456 ], "party_id": [ - 5172 + 5456 ], "party_source": [ - 1077 + 1142 ], "placeholder_name": [ - 82 + 86 ], "player": [ - 4056 + 4335 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_constraint": {}, "match_lineup_players_inc_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_insert_input": { "captain": [ - 5 + 6 ], "checked_in": [ - 5 + 6 ], "discord_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_connected": [ - 5 + 6 ], "lineup": [ - 2572 + 2829 ], "match_lineup_id": [ - 5170 + 5454 ], "party_id": [ - 5170 + 5454 ], "party_source": [ - 1076 + 1141 ], "placeholder_name": [ - 80 + 84 ], "player": [ - 4063 + 4342 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_max_fields": { "discord_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "party_id": [ - 5170 + 5454 ], "placeholder_name": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_max_order_by": { "discord_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_lineup_id": [ - 3094 + 3373 ], "party_id": [ - 3094 + 3373 ], "placeholder_name": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_min_fields": { "discord_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "party_id": [ - 5170 + 5454 ], "placeholder_name": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_min_order_by": { "discord_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_lineup_id": [ - 3094 + 3373 ], "party_id": [ - 3094 + 3373 ], "placeholder_name": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2509 + 2766 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_on_conflict": { "constraint": [ - 2521 + 2778 ], "update_columns": [ - 2546 + 2803 ], "where": [ - 2520 + 2777 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_order_by": { "captain": [ - 3094 + 3373 ], "checked_in": [ - 3094 + 3373 ], "discord_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "is_connected": [ - 3094 + 3373 ], "lineup": [ - 2574 + 2831 ], "match_lineup_id": [ - 3094 + 3373 ], "party_id": [ - 3094 + 3373 ], "party_source": [ - 3094 + 3373 ], "placeholder_name": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_select_column": {}, @@ -43828,2064 +48582,2064 @@ export default { "match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_lineup_players_set_input": { "captain": [ - 5 + 6 ], "checked_in": [ - 5 + 6 ], "discord_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_connected": [ - 5 + 6 ], "match_lineup_id": [ - 5170 + 5454 ], "party_id": [ - 5170 + 5454 ], "party_source": [ - 1076 + 1141 ], "placeholder_name": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 2543 + 2800 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_stream_cursor_value_input": { "captain": [ - 5 + 6 ], "checked_in": [ - 5 + 6 ], "discord_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_connected": [ - 5 + 6 ], "match_lineup_id": [ - 5170 + 5454 ], "party_id": [ - 5170 + 5454 ], "party_source": [ - 1076 + 1141 ], "placeholder_name": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_sum_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 2522 + 2779 ], "_set": [ - 2535 + 2792 ], "where": [ - 2520 + 2777 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_lineup_players_variance_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineups": { "can_pick_map_veto": [ - 5 + 6 ], "can_pick_region_veto": [ - 5 + 6 ], "can_update_lineup": [ - 5 + 6 ], "captain": [ - 5326 + 5610 ], "coach": [ - 4052 + 4331 ], "coach_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "is_on_lineup": [ - 5 + 6 ], "is_picking_map_veto": [ - 5 + 6 ], "is_picking_region_veto": [ - 5 + 6 ], "is_ready": [ - 5 + 6 ], "lineup_players": [ - 2509, + 2766, { "distinct_on": [ - 2532, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2530, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2777 ] } ], "lineup_players_aggregate": [ - 2510, + 2767, { "distinct_on": [ - 2532, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2530, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2777 ] } ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_veto_picks": [ - 2688, + 2945, { "distinct_on": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2706, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2954 ] } ], "match_veto_picks_aggregate": [ - 2689, + 2946, { "distinct_on": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2706, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2954 ] } ], "name": [ - 80 + 84 ], "team": [ - 4621 + 4905 ], "team_id": [ - 5170 + 5454 ], "team_name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_lineups_aggregate": { "aggregate": [ - 2558 + 2815 ], "nodes": [ - 2554 + 2811 ], "__typename": [ - 80 + 84 ] }, "match_lineups_aggregate_bool_exp": { "count": [ - 2557 + 2814 ], "__typename": [ - 80 + 84 ] }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 2576 + 2833 ], "distinct": [ - 5 + 6 ], "filter": [ - 2563 + 2820 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "match_lineups_aggregate_fields": { "avg": [ - 2561 + 2818 ], "count": [ - 40, + 41, { "columns": [ - 2576, + 2833, "[match_lineups_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2567 + 2824 ], "min": [ - 2569 + 2826 ], "stddev": [ - 2578 + 2835 ], "stddev_pop": [ - 2580 + 2837 ], "stddev_samp": [ - 2582 + 2839 ], "sum": [ - 2586 + 2843 ], "var_pop": [ - 2590 + 2847 ], "var_samp": [ - 2592 + 2849 ], "variance": [ - 2594 + 2851 ], "__typename": [ - 80 + 84 ] }, "match_lineups_aggregate_order_by": { "avg": [ - 2562 + 2819 ], "count": [ - 3094 + 3373 ], "max": [ - 2568 + 2825 ], "min": [ - 2570 + 2827 ], "stddev": [ - 2579 + 2836 ], "stddev_pop": [ - 2581 + 2838 ], "stddev_samp": [ - 2583 + 2840 ], "sum": [ - 2587 + 2844 ], "var_pop": [ - 2591 + 2848 ], "var_samp": [ - 2593 + 2850 ], "variance": [ - 2595 + 2852 ], "__typename": [ - 80 + 84 ] }, "match_lineups_arr_rel_insert_input": { "data": [ - 2566 + 2823 ], "on_conflict": [ - 2573 + 2830 ], "__typename": [ - 80 + 84 ] }, "match_lineups_avg_fields": { "coach_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineups_bool_exp": { "_and": [ - 2563 + 2820 ], "_not": [ - 2563 + 2820 ], "_or": [ - 2563 + 2820 ], "can_pick_map_veto": [ - 6 + 7 ], "can_pick_region_veto": [ - 6 + 7 ], "can_update_lineup": [ - 6 + 7 ], "captain": [ - 5330 + 5614 ], "coach": [ - 4056 + 4335 ], "coach_steam_id": [ - 266 + 271 ], "id": [ - 5172 + 5456 ], "is_on_lineup": [ - 6 + 7 ], "is_picking_map_veto": [ - 6 + 7 ], "is_picking_region_veto": [ - 6 + 7 ], "is_ready": [ - 6 + 7 ], "lineup_players": [ - 2520 + 2777 ], "lineup_players_aggregate": [ - 2511 + 2768 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_veto_picks": [ - 2697 + 2954 ], "match_veto_picks_aggregate": [ - 2690 + 2947 ], "name": [ - 82 + 86 ], "team": [ - 4632 + 4916 ], "team_id": [ - 5172 + 5456 ], "team_name": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "match_lineups_constraint": {}, "match_lineups_inc_input": { "coach_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_lineups_insert_input": { "captain": [ - 5336 + 5620 ], "coach": [ - 4063 + 4342 ], "coach_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "lineup_players": [ - 2517 + 2774 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_veto_picks": [ - 2696 + 2953 ], "team": [ - 4641 + 4925 ], "team_id": [ - 5170 + 5454 ], "team_name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_lineups_max_fields": { "coach_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "team_name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_lineups_max_order_by": { "coach_steam_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "team_name": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineups_min_fields": { "coach_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "team_name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_lineups_min_order_by": { "coach_steam_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "team_name": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineups_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2554 + 2811 ], "__typename": [ - 80 + 84 ] }, "match_lineups_obj_rel_insert_input": { "data": [ - 2566 + 2823 ], "on_conflict": [ - 2573 + 2830 ], "__typename": [ - 80 + 84 ] }, "match_lineups_on_conflict": { "constraint": [ - 2564 + 2821 ], "update_columns": [ - 2588 + 2845 ], "where": [ - 2563 + 2820 ], "__typename": [ - 80 + 84 ] }, "match_lineups_order_by": { "can_pick_map_veto": [ - 3094 + 3373 ], "can_pick_region_veto": [ - 3094 + 3373 ], "can_update_lineup": [ - 3094 + 3373 ], "captain": [ - 5337 + 5621 ], "coach": [ - 4065 + 4344 ], "coach_steam_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "is_on_lineup": [ - 3094 + 3373 ], "is_picking_map_veto": [ - 3094 + 3373 ], "is_picking_region_veto": [ - 3094 + 3373 ], "is_ready": [ - 3094 + 3373 ], "lineup_players_aggregate": [ - 2516 + 2773 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_veto_picks_aggregate": [ - 2695 + 2952 ], "name": [ - 3094 + 3373 ], "team": [ - 4643 + 4927 ], "team_id": [ - 3094 + 3373 ], "team_name": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineups_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_lineups_select_column": {}, "match_lineups_set_input": { "coach_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "team_id": [ - 5170 + 5454 ], "team_name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_lineups_stddev_fields": { "coach_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineups_stddev_pop_fields": { "coach_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineups_stddev_samp_fields": { "coach_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2585 + 2842 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "match_lineups_stream_cursor_value_input": { "coach_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "team_id": [ - 5170 + 5454 ], "team_name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_lineups_sum_fields": { "coach_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 2565 + 2822 ], "_set": [ - 2577 + 2834 ], "where": [ - 2563 + 2820 ], "__typename": [ - 80 + 84 ] }, "match_lineups_var_pop_fields": { "coach_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineups_var_samp_fields": { "coach_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_lineups_variance_fields": { "coach_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_demos": { "bombs": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "clip_render_jobs": [ - 296, + 301, { "distinct_on": [ - 324, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 321, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 313 ] } ], "clip_render_jobs_aggregate": [ - 297, + 302, { "distinct_on": [ - 324, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 321, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 313 ] } ], "created_at": [ - 4670 + 4954 ], "cs2_build": [ - 80 + 84 ], "demo_sessions": [ - 2463, + 2720, { "distinct_on": [ - 2489, + 2746, "[match_demo_sessions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2486, + 2743, "[match_demo_sessions_order_by!]" ], "where": [ - 2473 + 2730 ] } ], "demo_sessions_aggregate": [ - 2464, + 2721, { "distinct_on": [ - 2489, + 2746, "[match_demo_sessions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2486, + 2743, "[match_demo_sessions_order_by!]" ], "where": [ - 2473 + 2730 ] } ], "download_url": [ - 80 + 84 ], "duration_seconds": [ - 31 + 32 ], "file": [ - 80 + 84 ], "geometry_validated": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "kills": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "map_name": [ - 80 + 84 ], "match": [ - 2882 + 3157 ], "match_clips": [ - 2421, + 2678, { "distinct_on": [ - 2443, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2441, + 2698, "[match_clips_order_by!]" ], "where": [ - 2430 + 2687 ] } ], "match_clips_aggregate": [ - 2422, + 2679, { "distinct_on": [ - 2443, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2441, + 2698, "[match_clips_order_by!]" ], "where": [ - 2430 + 2687 ] } ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "metadata_parsed_at": [ - 4670 + 4954 ], "playback_file": [ - 80 + 84 ], "playback_size": [ - 40 + 41 ], "playback_url": [ - 80 + 84 ], "players": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "round_ticks": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "workshop_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_aggregate": { "aggregate": [ - 2602 + 2859 ], "nodes": [ - 2596 + 2853 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2599 + 2856 ], "bool_or": [ - 2600 + 2857 ], "count": [ - 2601 + 2858 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2626 + 2883 ], "distinct": [ - 5 + 6 ], "filter": [ - 2608 + 2865 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2627 + 2884 ], "distinct": [ - 5 + 6 ], "filter": [ - 2608 + 2865 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2625 + 2882 ], "distinct": [ - 5 + 6 ], "filter": [ - 2608 + 2865 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_aggregate_fields": { "avg": [ - 2606 + 2863 ], "count": [ - 40, + 41, { "columns": [ - 2625, + 2882, "[match_map_demos_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2615 + 2872 ], "min": [ - 2617 + 2874 ], "stddev": [ - 2629 + 2886 ], "stddev_pop": [ - 2631 + 2888 ], "stddev_samp": [ - 2633 + 2890 ], "sum": [ - 2637 + 2894 ], "var_pop": [ - 2641 + 2898 ], "var_samp": [ - 2643 + 2900 ], "variance": [ - 2645 + 2902 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_aggregate_order_by": { "avg": [ - 2607 + 2864 ], "count": [ - 3094 + 3373 ], "max": [ - 2616 + 2873 ], "min": [ - 2618 + 2875 ], "stddev": [ - 2630 + 2887 ], "stddev_pop": [ - 2632 + 2889 ], "stddev_samp": [ - 2634 + 2891 ], "sum": [ - 2638 + 2895 ], "var_pop": [ - 2642 + 2899 ], "var_samp": [ - 2644 + 2901 ], "variance": [ - 2646 + 2903 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_append_input": { "bombs": [ - 1930 + 2187 ], "kills": [ - 1930 + 2187 ], "players": [ - 1930 + 2187 ], "round_ticks": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2614 + 2871 ], "on_conflict": [ - 2621 + 2878 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_avg_fields": { "duration_seconds": [ - 31 + 32 ], "playback_size": [ - 31 + 32 ], "size": [ - 31 + 32 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 3094 + 3373 ], "playback_size": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "tick_rate": [ - 3094 + 3373 ], "total_ticks": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_bool_exp": { "_and": [ - 2608 + 2865 ], "_not": [ - 2608 + 2865 ], "_or": [ - 2608 + 2865 ], "bombs": [ - 1932 + 2189 ], "clip_render_jobs": [ - 308 + 313 ], "clip_render_jobs_aggregate": [ - 298 + 303 ], "created_at": [ - 4671 + 4955 ], "cs2_build": [ - 82 + 86 ], "demo_sessions": [ - 2473 + 2730 ], "demo_sessions_aggregate": [ - 2465 + 2722 ], "download_url": [ - 82 + 86 ], "duration_seconds": [ - 32 + 33 ], "file": [ - 82 + 86 ], "geometry_validated": [ - 6 + 7 ], "id": [ - 5172 + 5456 ], "kills": [ - 1932 + 2189 ], "map_name": [ - 82 + 86 ], "match": [ - 2891 + 3168 ], "match_clips": [ - 2430 + 2687 ], "match_clips_aggregate": [ - 2423 + 2680 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "metadata_parsed_at": [ - 4671 + 4955 ], "playback_file": [ - 82 + 86 ], "playback_size": [ - 41 + 42 ], "playback_url": [ - 82 + 86 ], "players": [ - 1932 + 2189 ], "round_ticks": [ - 1932 + 2189 ], "size": [ - 41 + 42 ], "tick_rate": [ - 32 + 33 ], "total_ticks": [ - 41 + 42 ], "workshop_id": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_constraint": {}, "match_map_demos_delete_at_path_input": { "bombs": [ - 80 + 84 ], "kills": [ - 80 + 84 ], "players": [ - 80 + 84 ], "round_ticks": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_delete_elem_input": { "bombs": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "players": [ - 40 + 41 ], "round_ticks": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_delete_key_input": { "bombs": [ - 80 + 84 ], "kills": [ - 80 + 84 ], "players": [ - 80 + 84 ], "round_ticks": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_inc_input": { "playback_size": [ - 40 + 41 ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_insert_input": { "bombs": [ - 1930 + 2187 ], "clip_render_jobs": [ - 305 + 310 ], "created_at": [ - 4670 + 4954 ], "cs2_build": [ - 80 + 84 ], "demo_sessions": [ - 2470 + 2727 ], "file": [ - 80 + 84 ], "geometry_validated": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "kills": [ - 1930 + 2187 ], "map_name": [ - 80 + 84 ], "match": [ - 2900 + 3177 ], "match_clips": [ - 2427 + 2684 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "metadata_parsed_at": [ - 4670 + 4954 ], "playback_file": [ - 80 + 84 ], "playback_size": [ - 40 + 41 ], "players": [ - 1930 + 2187 ], "round_ticks": [ - 1930 + 2187 ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "workshop_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_max_fields": { "created_at": [ - 4670 + 4954 ], "cs2_build": [ - 80 + 84 ], "download_url": [ - 80 + 84 ], "duration_seconds": [ - 31 + 32 ], "file": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "map_name": [ - 80 + 84 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "metadata_parsed_at": [ - 4670 + 4954 ], "playback_file": [ - 80 + 84 ], "playback_size": [ - 40 + 41 ], "playback_url": [ - 80 + 84 ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "workshop_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_max_order_by": { "created_at": [ - 3094 + 3373 ], "cs2_build": [ - 3094 + 3373 ], "duration_seconds": [ - 3094 + 3373 ], "file": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "map_name": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "metadata_parsed_at": [ - 3094 + 3373 ], "playback_file": [ - 3094 + 3373 ], "playback_size": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "tick_rate": [ - 3094 + 3373 ], "total_ticks": [ - 3094 + 3373 ], "workshop_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_min_fields": { "created_at": [ - 4670 + 4954 ], "cs2_build": [ - 80 + 84 ], "download_url": [ - 80 + 84 ], "duration_seconds": [ - 31 + 32 ], "file": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "map_name": [ - 80 + 84 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "metadata_parsed_at": [ - 4670 + 4954 ], "playback_file": [ - 80 + 84 ], "playback_size": [ - 40 + 41 ], "playback_url": [ - 80 + 84 ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "workshop_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_min_order_by": { "created_at": [ - 3094 + 3373 ], "cs2_build": [ - 3094 + 3373 ], "duration_seconds": [ - 3094 + 3373 ], "file": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "map_name": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "metadata_parsed_at": [ - 3094 + 3373 ], "playback_file": [ - 3094 + 3373 ], "playback_size": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "tick_rate": [ - 3094 + 3373 ], "total_ticks": [ - 3094 + 3373 ], "workshop_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2596 + 2853 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2614 + 2871 ], "on_conflict": [ - 2621 + 2878 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_on_conflict": { "constraint": [ - 2609 + 2866 ], "update_columns": [ - 2639 + 2896 ], "where": [ - 2608 + 2865 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_order_by": { "bombs": [ - 3094 + 3373 ], "clip_render_jobs_aggregate": [ - 303 + 308 ], "created_at": [ - 3094 + 3373 ], "cs2_build": [ - 3094 + 3373 ], "demo_sessions_aggregate": [ - 2468 + 2725 ], "download_url": [ - 3094 + 3373 ], "duration_seconds": [ - 3094 + 3373 ], "file": [ - 3094 + 3373 ], "geometry_validated": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "map_name": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_clips_aggregate": [ - 2426 + 2683 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "metadata_parsed_at": [ - 3094 + 3373 ], "playback_file": [ - 3094 + 3373 ], "playback_size": [ - 3094 + 3373 ], "playback_url": [ - 3094 + 3373 ], "players": [ - 3094 + 3373 ], "round_ticks": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "tick_rate": [ - 3094 + 3373 ], "total_ticks": [ - 3094 + 3373 ], "workshop_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_prepend_input": { "bombs": [ - 1930 + 2187 ], "kills": [ - 1930 + 2187 ], "players": [ - 1930 + 2187 ], "round_ticks": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_select_column": {}, @@ -45893,2162 +50647,2162 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 1930 + 2187 ], "created_at": [ - 4670 + 4954 ], "cs2_build": [ - 80 + 84 ], "file": [ - 80 + 84 ], "geometry_validated": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "kills": [ - 1930 + 2187 ], "map_name": [ - 80 + 84 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "metadata_parsed_at": [ - 4670 + 4954 ], "playback_file": [ - 80 + 84 ], "playback_size": [ - 40 + 41 ], "players": [ - 1930 + 2187 ], "round_ticks": [ - 1930 + 2187 ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "workshop_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_stddev_fields": { "duration_seconds": [ - 31 + 32 ], "playback_size": [ - 31 + 32 ], "size": [ - 31 + 32 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 3094 + 3373 ], "playback_size": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "tick_rate": [ - 3094 + 3373 ], "total_ticks": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_stddev_pop_fields": { "duration_seconds": [ - 31 + 32 ], "playback_size": [ - 31 + 32 ], "size": [ - 31 + 32 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 3094 + 3373 ], "playback_size": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "tick_rate": [ - 3094 + 3373 ], "total_ticks": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_stddev_samp_fields": { "duration_seconds": [ - 31 + 32 ], "playback_size": [ - 31 + 32 ], "size": [ - 31 + 32 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 3094 + 3373 ], "playback_size": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "tick_rate": [ - 3094 + 3373 ], "total_ticks": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2636 + 2893 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1930 + 2187 ], "created_at": [ - 4670 + 4954 ], "cs2_build": [ - 80 + 84 ], "duration_seconds": [ - 31 + 32 ], "file": [ - 80 + 84 ], "geometry_validated": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "kills": [ - 1930 + 2187 ], "map_name": [ - 80 + 84 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "metadata_parsed_at": [ - 4670 + 4954 ], "playback_file": [ - 80 + 84 ], "playback_size": [ - 40 + 41 ], "players": [ - 1930 + 2187 ], "round_ticks": [ - 1930 + 2187 ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "workshop_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_sum_fields": { "duration_seconds": [ - 31 + 32 ], "playback_size": [ - 40 + 41 ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 3094 + 3373 ], "playback_size": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "tick_rate": [ - 3094 + 3373 ], "total_ticks": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2604 + 2861 ], "_delete_at_path": [ - 2610 + 2867 ], "_delete_elem": [ - 2611 + 2868 ], "_delete_key": [ - 2612 + 2869 ], "_inc": [ - 2613 + 2870 ], "_prepend": [ - 2624 + 2881 ], "_set": [ - 2628 + 2885 ], "where": [ - 2608 + 2865 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_var_pop_fields": { "duration_seconds": [ - 31 + 32 ], "playback_size": [ - 31 + 32 ], "size": [ - 31 + 32 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 3094 + 3373 ], "playback_size": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "tick_rate": [ - 3094 + 3373 ], "total_ticks": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_var_samp_fields": { "duration_seconds": [ - 31 + 32 ], "playback_size": [ - 31 + 32 ], "size": [ - 31 + 32 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 3094 + 3373 ], "playback_size": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "tick_rate": [ - 3094 + 3373 ], "total_ticks": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_variance_fields": { "duration_seconds": [ - 31 + 32 ], "playback_size": [ - 31 + 32 ], "size": [ - 31 + 32 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 3094 + 3373 ], "playback_size": [ - 3094 + 3373 ], "size": [ - 3094 + 3373 ], "tick_rate": [ - 3094 + 3373 ], "total_ticks": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds": { "assists": [ - 3232, + 3511, { "distinct_on": [ - 3255, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3253, + 3532, "[player_assists_order_by!]" ], "where": [ - 3243 + 3522 ] } ], "assists_aggregate": [ - 3233, + 3512, { "distinct_on": [ - 3255, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3253, + 3532, "[player_assists_order_by!]" ], "where": [ - 3243 + 3522 ] } ], "backup_file": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "deleted_at": [ - 4670 + 4954 ], "has_backup_file": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "kills": [ - 3449, + 3728, { "distinct_on": [ - 3513, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3511, + 3790, "[player_kills_order_by!]" ], "where": [ - 3460 + 3739 ] } ], "kills_aggregate": [ - 3450, + 3729, { "distinct_on": [ - 3513, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3511, + 3790, "[player_kills_order_by!]" ], "where": [ - 3460 + 3739 ] } ], "lineup_1_money": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_side": [ - 1299 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_money": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_side": [ - 1299 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "winning_reason": [ - 1503 + 1568 ], "winning_side": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_aggregate": { "aggregate": [ - 2651 + 2908 ], "nodes": [ - 2647 + 2904 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2650 + 2907 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2668 + 2925 ], "distinct": [ - 5 + 6 ], "filter": [ - 2656 + 2913 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_aggregate_fields": { "avg": [ - 2654 + 2911 ], "count": [ - 40, + 41, { "columns": [ - 2668, + 2925, "[match_map_rounds_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2660 + 2917 ], "min": [ - 2662 + 2919 ], "stddev": [ - 2670 + 2927 ], "stddev_pop": [ - 2672 + 2929 ], "stddev_samp": [ - 2674 + 2931 ], "sum": [ - 2678 + 2935 ], "var_pop": [ - 2682 + 2939 ], "var_samp": [ - 2684 + 2941 ], "variance": [ - 2686 + 2943 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2655 + 2912 ], "count": [ - 3094 + 3373 ], "max": [ - 2661 + 2918 ], "min": [ - 2663 + 2920 ], "stddev": [ - 2671 + 2928 ], "stddev_pop": [ - 2673 + 2930 ], "stddev_samp": [ - 2675 + 2932 ], "sum": [ - 2679 + 2936 ], "var_pop": [ - 2683 + 2940 ], "var_samp": [ - 2685 + 2942 ], "variance": [ - 2687 + 2944 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2659 + 2916 ], "on_conflict": [ - 2665 + 2922 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_avg_fields": { "lineup_1_money": [ - 31 + 32 ], "lineup_1_score": [ - 31 + 32 ], "lineup_1_timeouts_available": [ - 31 + 32 ], "lineup_2_money": [ - 31 + 32 ], "lineup_2_score": [ - 31 + 32 ], "lineup_2_timeouts_available": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 3094 + 3373 ], "lineup_1_score": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_money": [ - 3094 + 3373 ], "lineup_2_score": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_bool_exp": { "_and": [ - 2656 + 2913 ], "_not": [ - 2656 + 2913 ], "_or": [ - 2656 + 2913 ], "assists": [ - 3243 + 3522 ], "assists_aggregate": [ - 3234 + 3513 ], "backup_file": [ - 82 + 86 ], "created_at": [ - 4671 + 4955 ], "deleted_at": [ - 4671 + 4955 ], "has_backup_file": [ - 6 + 7 ], "id": [ - 5172 + 5456 ], "kills": [ - 3460 + 3739 ], "kills_aggregate": [ - 3451 + 3730 ], "lineup_1_money": [ - 41 + 42 ], "lineup_1_score": [ - 41 + 42 ], "lineup_1_side": [ - 1300 + 1365 ], "lineup_1_timeouts_available": [ - 41 + 42 ], "lineup_2_money": [ - 41 + 42 ], "lineup_2_score": [ - 41 + 42 ], "lineup_2_side": [ - 1300 + 1365 ], "lineup_2_timeouts_available": [ - 41 + 42 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "round": [ - 41 + 42 ], "time": [ - 4671 + 4955 ], "winning_reason": [ - 1504 + 1569 ], "winning_side": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_constraint": {}, "match_map_rounds_inc_input": { "lineup_1_money": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_money": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_insert_input": { "assists": [ - 3240 + 3519 ], "backup_file": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "deleted_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "kills": [ - 3457 + 3736 ], "lineup_1_money": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_side": [ - 1299 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_money": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_side": [ - 1299 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "winning_reason": [ - 1503 + 1568 ], "winning_side": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_max_fields": { "backup_file": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "deleted_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "lineup_1_money": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_money": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "winning_side": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_max_order_by": { "backup_file": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "lineup_1_money": [ - 3094 + 3373 ], "lineup_1_score": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_money": [ - 3094 + 3373 ], "lineup_2_score": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "winning_side": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_min_fields": { "backup_file": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "deleted_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "lineup_1_money": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_money": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "winning_side": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_min_order_by": { "backup_file": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "lineup_1_money": [ - 3094 + 3373 ], "lineup_1_score": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_money": [ - 3094 + 3373 ], "lineup_2_score": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "winning_side": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2647 + 2904 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_on_conflict": { "constraint": [ - 2657 + 2914 ], "update_columns": [ - 2680 + 2937 ], "where": [ - 2656 + 2913 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_order_by": { "assists_aggregate": [ - 3239 + 3518 ], "backup_file": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "has_backup_file": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "kills_aggregate": [ - 3456 + 3735 ], "lineup_1_money": [ - 3094 + 3373 ], "lineup_1_score": [ - 3094 + 3373 ], "lineup_1_side": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_money": [ - 3094 + 3373 ], "lineup_2_score": [ - 3094 + 3373 ], "lineup_2_side": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "winning_reason": [ - 3094 + 3373 ], "winning_side": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_select_column": {}, "match_map_rounds_set_input": { "backup_file": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "deleted_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "lineup_1_money": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_side": [ - 1299 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_money": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_side": [ - 1299 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "winning_reason": [ - 1503 + 1568 ], "winning_side": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_stddev_fields": { "lineup_1_money": [ - 31 + 32 ], "lineup_1_score": [ - 31 + 32 ], "lineup_1_timeouts_available": [ - 31 + 32 ], "lineup_2_money": [ - 31 + 32 ], "lineup_2_score": [ - 31 + 32 ], "lineup_2_timeouts_available": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 3094 + 3373 ], "lineup_1_score": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_money": [ - 3094 + 3373 ], "lineup_2_score": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_stddev_pop_fields": { "lineup_1_money": [ - 31 + 32 ], "lineup_1_score": [ - 31 + 32 ], "lineup_1_timeouts_available": [ - 31 + 32 ], "lineup_2_money": [ - 31 + 32 ], "lineup_2_score": [ - 31 + 32 ], "lineup_2_timeouts_available": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 3094 + 3373 ], "lineup_1_score": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_money": [ - 3094 + 3373 ], "lineup_2_score": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_stddev_samp_fields": { "lineup_1_money": [ - 31 + 32 ], "lineup_1_score": [ - 31 + 32 ], "lineup_1_timeouts_available": [ - 31 + 32 ], "lineup_2_money": [ - 31 + 32 ], "lineup_2_score": [ - 31 + 32 ], "lineup_2_timeouts_available": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 3094 + 3373 ], "lineup_1_score": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_money": [ - 3094 + 3373 ], "lineup_2_score": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2677 + 2934 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_stream_cursor_value_input": { "backup_file": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "deleted_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "lineup_1_money": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_side": [ - 1299 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_money": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_side": [ - 1299 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "winning_reason": [ - 1503 + 1568 ], "winning_side": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_sum_fields": { "lineup_1_money": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_money": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 3094 + 3373 ], "lineup_1_score": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_money": [ - 3094 + 3373 ], "lineup_2_score": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2658 + 2915 ], "_set": [ - 2669 + 2926 ], "where": [ - 2656 + 2913 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_var_pop_fields": { "lineup_1_money": [ - 31 + 32 ], "lineup_1_score": [ - 31 + 32 ], "lineup_1_timeouts_available": [ - 31 + 32 ], "lineup_2_money": [ - 31 + 32 ], "lineup_2_score": [ - 31 + 32 ], "lineup_2_timeouts_available": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 3094 + 3373 ], "lineup_1_score": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_money": [ - 3094 + 3373 ], "lineup_2_score": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_var_samp_fields": { "lineup_1_money": [ - 31 + 32 ], "lineup_1_score": [ - 31 + 32 ], "lineup_1_timeouts_available": [ - 31 + 32 ], "lineup_2_money": [ - 31 + 32 ], "lineup_2_score": [ - 31 + 32 ], "lineup_2_timeouts_available": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 3094 + 3373 ], "lineup_1_score": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_money": [ - 3094 + 3373 ], "lineup_2_score": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_variance_fields": { "lineup_1_money": [ - 31 + 32 ], "lineup_1_score": [ - 31 + 32 ], "lineup_1_timeouts_available": [ - 31 + 32 ], "lineup_2_money": [ - 31 + 32 ], "lineup_2_score": [ - 31 + 32 ], "lineup_2_timeouts_available": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 3094 + 3373 ], "lineup_1_score": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_money": [ - 3094 + 3373 ], "lineup_2_score": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks": { "auto_picked": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "map": [ - 2392 + 2649 ], "map_id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_lineup": [ - 2554 + 2811 ], "match_lineup_id": [ - 5170 + 5454 ], "side": [ - 80 + 84 ], "type": [ - 1483 + 1548 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2694 + 2951 ], "nodes": [ - 2688 + 2945 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_aggregate_bool_exp": { "bool_and": [ - 2691 + 2948 ], "bool_or": [ - 2692 + 2949 ], "count": [ - 2693 + 2950 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 2709 + 2966 ], "distinct": [ - 5 + 6 ], "filter": [ - 2697 + 2954 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 2710 + 2967 ], "distinct": [ - 5 + 6 ], "filter": [ - 2697 + 2954 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2708 + 2965 ], "distinct": [ - 5 + 6 ], "filter": [ - 2697 + 2954 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2700 + 2957 ], "min": [ - 2702 + 2959 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 3094 + 3373 ], "max": [ - 2701 + 2958 ], "min": [ - 2703 + 2960 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2699 + 2956 ], "on_conflict": [ - 2705 + 2962 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_bool_exp": { "_and": [ - 2697 + 2954 ], "_not": [ - 2697 + 2954 ], "_or": [ - 2697 + 2954 ], "auto_picked": [ - 6 + 7 ], "created_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "map": [ - 2401 + 2658 ], "map_id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_lineup": [ - 2563 + 2820 ], "match_lineup_id": [ - 5172 + 5456 ], "side": [ - 82 + 86 ], "type": [ - 1484 + 1549 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "auto_picked": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "map": [ - 2409 + 2666 ], "map_id": [ - 5170 + 5454 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_lineup": [ - 2572 + 2829 ], "match_lineup_id": [ - 5170 + 5454 ], "side": [ - 80 + 84 ], "type": [ - 1483 + 1548 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_max_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "side": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_max_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "map_id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_lineup_id": [ - 3094 + 3373 ], "side": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_min_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "side": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_min_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "map_id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_lineup_id": [ - 3094 + 3373 ], "side": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2688 + 2945 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2698 + 2955 ], "update_columns": [ - 2714 + 2971 ], "where": [ - 2697 + 2954 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_order_by": { "auto_picked": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "map": [ - 2411 + 2668 ], "map_id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_lineup": [ - 2574 + 2831 ], "match_lineup_id": [ - 3094 + 3373 ], "side": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_select_column": {}, @@ -48056,3505 +52810,3977 @@ export default { "match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_veto_picks_set_input": { "auto_picked": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "side": [ - 80 + 84 ], "type": [ - 1483 + 1548 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2713 + 2970 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_stream_cursor_value_input": { "auto_picked": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "side": [ - 80 + 84 ], "type": [ - 1483 + 1548 ], "__typename": [ - 80 + 84 ] }, "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2711 + 2968 ], "where": [ - 2697 + 2954 ], "__typename": [ - 80 + 84 ] }, "match_maps": { "clips_count": [ - 40 + 41 ], "created_at": [ - 4670 + 4954 ], "demo_processing_started_at": [ - 4670 + 4954 ], "demos": [ - 2596, + 2853, { "distinct_on": [ - 2625, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2622, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2865 ] } ], "demos_aggregate": [ - 2597, + 2854, { "distinct_on": [ - 2625, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2622, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2865 ] } ], "demos_download_url": [ - 80 + 84 ], "demos_total_size": [ - 40 + 41 ], "e_match_map_status": [ - 1030 + 1095 ], "ended_at": [ - 4670 + 4954 ], "flashes": [ - 3404, + 3683, { "distinct_on": [ - 3427, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3425, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3694 ] } ], "flashes_aggregate": [ - 3405, + 3684, { "distinct_on": [ - 3427, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3425, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3694 ] } ], "id": [ - 5170 + 5454 ], "is_current_map": [ - 5 + 6 ], "latest_clip_at": [ - 4670 + 4954 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_side": [ - 1299 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_side": [ - 1299 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "map": [ - 2392 + 2649 ], "map_id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_clips": [ - 2421, + 2678, { "distinct_on": [ - 2443, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2441, + 2698, "[match_clips_order_by!]" ], "where": [ - 2430 + 2687 ] } ], "match_clips_aggregate": [ - 2422, + 2679, { "distinct_on": [ - 2443, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2441, + 2698, "[match_clips_order_by!]" ], "where": [ - 2430 + 2687 ] } ], "match_id": [ - 5170 + 5454 ], "objectives": [ - 3650, + 3929, { "distinct_on": [ - 3671, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3669, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3938 ] } ], "objectives_aggregate": [ - 3651, + 3930, { "distinct_on": [ - 3671, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3669, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3938 ] } ], "order": [ - 40 + 41 ], "player_assists": [ - 3232, + 3511, { "distinct_on": [ - 3255, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3253, + 3532, "[player_assists_order_by!]" ], "where": [ - 3243 + 3522 ] } ], "player_assists_aggregate": [ - 3233, + 3512, { "distinct_on": [ - 3255, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3253, + 3532, "[player_assists_order_by!]" ], "where": [ - 3243 + 3522 ] } ], "player_damages": [ - 3295, + 3574, { "distinct_on": [ - 3316, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3314, + 3593, "[player_damages_order_by!]" ], "where": [ - 3304 + 3583 ] } ], "player_damages_aggregate": [ - 3296, + 3575, { "distinct_on": [ - 3316, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3314, + 3593, "[player_damages_order_by!]" ], "where": [ - 3304 + 3583 ] } ], "player_kills": [ - 3449, + 3728, { "distinct_on": [ - 3513, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3511, + 3790, "[player_kills_order_by!]" ], "where": [ - 3460 + 3739 ] } ], "player_kills_aggregate": [ - 3450, + 3729, { "distinct_on": [ - 3513, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3511, + 3790, "[player_kills_order_by!]" ], "where": [ - 3460 + 3739 ] } ], "player_unused_utilities": [ - 3937, + 4216, { "distinct_on": [ - 3958, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3956, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4225 ] } ], "player_unused_utilities_aggregate": [ - 3938, + 4217, { "distinct_on": [ - 3958, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3956, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4225 ] } ], "public_clips_count": [ - 40 + 41 ], "public_latest_clip_at": [ - 4670 + 4954 ], "rounds": [ - 2647, + 2904, { "distinct_on": [ - 2668, + 2925, "[match_map_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2666, + 2923, "[match_map_rounds_order_by!]" ], "where": [ - 2656 + 2913 ] } ], "rounds_aggregate": [ - 2648, + 2905, { "distinct_on": [ - 2668, + 2925, "[match_map_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2666, + 2923, "[match_map_rounds_order_by!]" ], "where": [ - 2656 + 2913 ] } ], "started_at": [ - 4670 + 4954 ], "status": [ - 1035 + 1100 ], "utility": [ - 3978, + 4257, { "distinct_on": [ - 3999, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3997, + 4276, "[player_utility_order_by!]" ], "where": [ - 3987 + 4266 ] } ], "utility_aggregate": [ - 3979, + 4258, { "distinct_on": [ - 3999, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3997, + 4276, "[player_utility_order_by!]" ], "where": [ - 3987 + 4266 ] } ], "vetos": [ - 2688, + 2945, { "distinct_on": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2706, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2954 ] } ], "vetos_aggregate": [ - 2689, + 2946, { "distinct_on": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2706, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2954 ] } ], "winning_lineup_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_maps_aggregate": { "aggregate": [ - 2720 + 2977 ], "nodes": [ - 2716 + 2973 ], "__typename": [ - 80 + 84 ] }, "match_maps_aggregate_bool_exp": { "count": [ - 2719 + 2976 ], "__typename": [ - 80 + 84 ] }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2738 + 2995 ], "distinct": [ - 5 + 6 ], "filter": [ - 2725 + 2982 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "match_maps_aggregate_fields": { "avg": [ - 2723 + 2980 ], "count": [ - 40, + 41, { "columns": [ - 2738, + 2995, "[match_maps_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2729 + 2986 ], "min": [ - 2731 + 2988 ], "stddev": [ - 2740 + 2997 ], "stddev_pop": [ - 2742 + 2999 ], "stddev_samp": [ - 2744 + 3001 ], "sum": [ - 2748 + 3005 ], "var_pop": [ - 2752 + 3009 ], "var_samp": [ - 2754 + 3011 ], "variance": [ - 2756 + 3013 ], "__typename": [ - 80 + 84 ] }, "match_maps_aggregate_order_by": { "avg": [ - 2724 + 2981 ], "count": [ - 3094 + 3373 ], "max": [ - 2730 + 2987 ], "min": [ - 2732 + 2989 ], "stddev": [ - 2741 + 2998 ], "stddev_pop": [ - 2743 + 3000 ], "stddev_samp": [ - 2745 + 3002 ], "sum": [ - 2749 + 3006 ], "var_pop": [ - 2753 + 3010 ], "var_samp": [ - 2755 + 3012 ], "variance": [ - 2757 + 3014 ], "__typename": [ - 80 + 84 ] }, "match_maps_arr_rel_insert_input": { "data": [ - 2728 + 2985 ], "on_conflict": [ - 2735 + 2992 ], "__typename": [ - 80 + 84 ] }, "match_maps_avg_fields": { "clips_count": [ - 31 + 32 ], "demos_total_size": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 31 + 32 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 31 + 32 ], "order": [ - 31 + 32 ], "public_clips_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_maps_avg_order_by": { "clips_count": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "public_clips_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_maps_bool_exp": { "_and": [ - 2725 + 2982 ], "_not": [ - 2725 + 2982 ], "_or": [ - 2725 + 2982 ], "clips_count": [ - 41 + 42 ], "created_at": [ - 4671 + 4955 ], "demo_processing_started_at": [ - 4671 + 4955 ], "demos": [ - 2608 + 2865 ], "demos_aggregate": [ - 2598 + 2855 ], "demos_download_url": [ - 82 + 86 ], "demos_total_size": [ - 41 + 42 ], "e_match_map_status": [ - 1033 + 1098 ], "ended_at": [ - 4671 + 4955 ], "flashes": [ - 3415 + 3694 ], "flashes_aggregate": [ - 3406 + 3685 ], "id": [ - 5172 + 5456 ], "is_current_map": [ - 6 + 7 ], "latest_clip_at": [ - 4671 + 4955 ], "lineup_1_score": [ - 41 + 42 ], "lineup_1_side": [ - 1300 + 1365 ], "lineup_1_timeouts_available": [ - 41 + 42 ], "lineup_2_score": [ - 41 + 42 ], "lineup_2_side": [ - 1300 + 1365 ], "lineup_2_timeouts_available": [ - 41 + 42 ], "map": [ - 2401 + 2658 ], "map_id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_clips": [ - 2430 + 2687 ], "match_clips_aggregate": [ - 2423 + 2680 ], "match_id": [ - 5172 + 5456 ], "objectives": [ - 3659 + 3938 ], "objectives_aggregate": [ - 3652 + 3931 ], "order": [ - 41 + 42 ], "player_assists": [ - 3243 + 3522 ], "player_assists_aggregate": [ - 3234 + 3513 ], "player_damages": [ - 3304 + 3583 ], "player_damages_aggregate": [ - 3297 + 3576 ], "player_kills": [ - 3460 + 3739 ], "player_kills_aggregate": [ - 3451 + 3730 ], "player_unused_utilities": [ - 3946 + 4225 ], "player_unused_utilities_aggregate": [ - 3939 + 4218 ], "public_clips_count": [ - 41 + 42 ], "public_latest_clip_at": [ - 4671 + 4955 ], "rounds": [ - 2656 + 2913 ], "rounds_aggregate": [ - 2649 + 2906 ], "started_at": [ - 4671 + 4955 ], "status": [ - 1036 + 1101 ], "utility": [ - 3987 + 4266 ], "utility_aggregate": [ - 3980 + 4259 ], "vetos": [ - 2697 + 2954 ], "vetos_aggregate": [ - 2690 + 2947 ], "winning_lineup_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "match_maps_constraint": {}, "match_maps_inc_input": { "clips_count": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "order": [ - 40 + 41 ], "public_clips_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_maps_insert_input": { "clips_count": [ - 40 + 41 ], "created_at": [ - 4670 + 4954 ], "demo_processing_started_at": [ - 4670 + 4954 ], "demos": [ - 2605 + 2862 ], "e_match_map_status": [ - 1041 + 1106 ], "ended_at": [ - 4670 + 4954 ], "flashes": [ - 3412 + 3691 ], "id": [ - 5170 + 5454 ], "latest_clip_at": [ - 4670 + 4954 ], "lineup_1_side": [ - 1299 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_side": [ - 1299 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "map": [ - 2409 + 2666 ], "map_id": [ - 5170 + 5454 ], "match": [ - 2900 + 3177 ], "match_clips": [ - 2427 + 2684 ], "match_id": [ - 5170 + 5454 ], "objectives": [ - 3656 + 3935 ], "order": [ - 40 + 41 ], "player_assists": [ - 3240 + 3519 ], "player_damages": [ - 3301 + 3580 ], "player_kills": [ - 3457 + 3736 ], "player_unused_utilities": [ - 3943 + 4222 ], "public_clips_count": [ - 40 + 41 ], "public_latest_clip_at": [ - 4670 + 4954 ], "rounds": [ - 2653 + 2910 ], "started_at": [ - 4670 + 4954 ], "status": [ - 1035 + 1100 ], "utility": [ - 3984 + 4263 ], "vetos": [ - 2696 + 2953 ], "winning_lineup_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_maps_max_fields": { "clips_count": [ - 40 + 41 ], "created_at": [ - 4670 + 4954 ], "demo_processing_started_at": [ - 4670 + 4954 ], "demos_download_url": [ - 80 + 84 ], "demos_total_size": [ - 40 + 41 ], "ended_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "latest_clip_at": [ - 4670 + 4954 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "order": [ - 40 + 41 ], "public_clips_count": [ - 40 + 41 ], "public_latest_clip_at": [ - 4670 + 4954 ], "started_at": [ - 4670 + 4954 ], "winning_lineup_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_maps_max_order_by": { "clips_count": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "demo_processing_started_at": [ - 3094 + 3373 ], "ended_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "latest_clip_at": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "map_id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "public_clips_count": [ - 3094 + 3373 ], "public_latest_clip_at": [ - 3094 + 3373 ], "started_at": [ - 3094 + 3373 ], "winning_lineup_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_maps_min_fields": { "clips_count": [ - 40 + 41 ], "created_at": [ - 4670 + 4954 ], "demo_processing_started_at": [ - 4670 + 4954 ], "demos_download_url": [ - 80 + 84 ], "demos_total_size": [ - 40 + 41 ], "ended_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "latest_clip_at": [ - 4670 + 4954 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "order": [ - 40 + 41 ], "public_clips_count": [ - 40 + 41 ], "public_latest_clip_at": [ - 4670 + 4954 ], "started_at": [ - 4670 + 4954 ], "winning_lineup_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_maps_min_order_by": { "clips_count": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "demo_processing_started_at": [ - 3094 + 3373 ], "ended_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "latest_clip_at": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "map_id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "public_clips_count": [ - 3094 + 3373 ], "public_latest_clip_at": [ - 3094 + 3373 ], "started_at": [ - 3094 + 3373 ], "winning_lineup_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_maps_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2716 + 2973 ], "__typename": [ - 80 + 84 ] }, "match_maps_obj_rel_insert_input": { "data": [ - 2728 + 2985 ], "on_conflict": [ - 2735 + 2992 ], "__typename": [ - 80 + 84 ] }, "match_maps_on_conflict": { "constraint": [ - 2726 + 2983 ], "update_columns": [ - 2750 + 3007 ], "where": [ - 2725 + 2982 ], "__typename": [ - 80 + 84 ] }, "match_maps_order_by": { "clips_count": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "demo_processing_started_at": [ - 3094 + 3373 ], "demos_aggregate": [ - 2603 + 2860 ], "demos_download_url": [ - 3094 + 3373 ], "demos_total_size": [ - 3094 + 3373 ], "e_match_map_status": [ - 1043 + 1108 ], "ended_at": [ - 3094 + 3373 ], "flashes_aggregate": [ - 3411 + 3690 ], "id": [ - 3094 + 3373 ], "is_current_map": [ - 3094 + 3373 ], "latest_clip_at": [ - 3094 + 3373 ], "lineup_1_score": [ - 3094 + 3373 ], "lineup_1_side": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_score": [ - 3094 + 3373 ], "lineup_2_side": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "map": [ - 2411 + 2668 ], "map_id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_clips_aggregate": [ - 2426 + 2683 ], "match_id": [ - 3094 + 3373 ], "objectives_aggregate": [ - 3655 + 3934 ], "order": [ - 3094 + 3373 ], "player_assists_aggregate": [ - 3239 + 3518 ], "player_damages_aggregate": [ - 3300 + 3579 ], "player_kills_aggregate": [ - 3456 + 3735 ], "player_unused_utilities_aggregate": [ - 3942 + 4221 ], "public_clips_count": [ - 3094 + 3373 ], "public_latest_clip_at": [ - 3094 + 3373 ], "rounds_aggregate": [ - 2652 + 2909 ], "started_at": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "utility_aggregate": [ - 3983 + 4262 ], "vetos_aggregate": [ - 2695 + 2952 ], "winning_lineup_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_maps_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_maps_select_column": {}, "match_maps_set_input": { "clips_count": [ - 40 + 41 ], "created_at": [ - 4670 + 4954 ], "demo_processing_started_at": [ - 4670 + 4954 ], "ended_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "latest_clip_at": [ - 4670 + 4954 ], "lineup_1_side": [ - 1299 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_side": [ - 1299 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "order": [ - 40 + 41 ], "public_clips_count": [ - 40 + 41 ], "public_latest_clip_at": [ - 4670 + 4954 ], "started_at": [ - 4670 + 4954 ], "status": [ - 1035 + 1100 ], "winning_lineup_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_maps_stddev_fields": { "clips_count": [ - 31 + 32 ], "demos_total_size": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 31 + 32 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 31 + 32 ], "order": [ - 31 + 32 ], "public_clips_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_maps_stddev_order_by": { "clips_count": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "public_clips_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_maps_stddev_pop_fields": { "clips_count": [ - 31 + 32 ], "demos_total_size": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 31 + 32 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 31 + 32 ], "order": [ - 31 + 32 ], "public_clips_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "public_clips_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_maps_stddev_samp_fields": { "clips_count": [ - 31 + 32 ], "demos_total_size": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 31 + 32 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 31 + 32 ], "order": [ - 31 + 32 ], "public_clips_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "public_clips_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_maps_stream_cursor_input": { "initial_value": [ - 2747 + 3004 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "match_maps_stream_cursor_value_input": { "clips_count": [ - 40 + 41 ], "created_at": [ - 4670 + 4954 ], "demo_processing_started_at": [ - 4670 + 4954 ], "ended_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "latest_clip_at": [ - 4670 + 4954 ], "lineup_1_side": [ - 1299 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_side": [ - 1299 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "order": [ - 40 + 41 ], "public_clips_count": [ - 40 + 41 ], "public_latest_clip_at": [ - 4670 + 4954 ], "started_at": [ - 4670 + 4954 ], "status": [ - 1035 + 1100 ], "winning_lineup_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_maps_sum_fields": { "clips_count": [ - 40 + 41 ], "demos_total_size": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "order": [ - 40 + 41 ], "public_clips_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_maps_sum_order_by": { "clips_count": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "public_clips_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2727 + 2984 ], "_set": [ - 2739 + 2996 ], "where": [ - 2725 + 2982 ], "__typename": [ - 80 + 84 ] }, "match_maps_var_pop_fields": { "clips_count": [ - 31 + 32 ], "demos_total_size": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 31 + 32 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 31 + 32 ], "order": [ - 31 + 32 ], "public_clips_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_maps_var_pop_order_by": { "clips_count": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "public_clips_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_maps_var_samp_fields": { "clips_count": [ - 31 + 32 ], "demos_total_size": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 31 + 32 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 31 + 32 ], "order": [ - 31 + 32 ], "public_clips_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_maps_var_samp_order_by": { "clips_count": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "public_clips_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_maps_variance_fields": { "clips_count": [ - 31 + 32 ], "demos_total_size": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_timeouts_available": [ - 31 + 32 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_timeouts_available": [ - 31 + 32 ], "order": [ - 31 + 32 ], "public_clips_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_maps_variance_order_by": { "clips_count": [ - 3094 + 3373 ], "lineup_1_timeouts_available": [ - 3094 + 3373 ], "lineup_2_timeouts_available": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "public_clips_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_options": { "auto_cancel_duration": [ - 40 + 41 ], "auto_cancellation": [ - 5 + 6 ], "best_of": [ - 40 + 41 ], "camera_allow_teammates": [ - 5 + 6 ], "camera_required": [ - 5 + 6 ], "check_in_setting": [ - 642 + 647 ], "coaches": [ - 5 + 6 ], "default_models": [ - 5 + 6 + ], + "game_mode": [ + 1921 + ], + "game_mode_id": [ + 5454 ], "halftime_pausematch": [ - 5 + 6 ], "has_active_matches": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "invite_code": [ - 80 + 84 ], "knife_round": [ - 5 + 6 ], "live_match_timeout": [ - 40 + 41 ], "map_pool": [ - 2373 + 2630 ], "map_pool_id": [ - 5170 + 5454 ], "map_veto": [ - 5 + 6 ], "match_mode": [ - 1056 + 1121 ], "matches": [ - 2882, + 3157, { "distinct_on": [ - 2904, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2902, + 3179, "[matches_order_by!]" ], "where": [ - 2891 + 3168 ] } ], "matches_aggregate": [ - 2883, + 3158, { "distinct_on": [ - 2904, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2902, + 3179, "[matches_order_by!]" ], "where": [ - 2891 + 3168 ] } ], "mr": [ - 40 + 41 ], "number_of_substitutes": [ - 40 + 41 ], "overtime": [ - 5 + 6 ], "prefer_dedicated_server": [ - 5 + 6 ], "ready_setting": [ - 1218 + 1283 ], "region_veto": [ - 5 + 6 ], "regions": [ - 80 + 84 ], "round_restart_delay": [ - 40 + 41 ], "tech_timeout_setting": [ - 1380 + 1445 ], "timeout_setting": [ - 1380 + 1445 ], "tournament": [ - 5106 + 5390 ], "tournament_bracket": [ - 4714 + 4998 ], "tournament_stage": [ - 4931 + 5215 ], "tv_delay": [ - 40 + 41 ], "type": [ - 1117 + 1182 ], "veto_pick_timeout": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_options_aggregate": { "aggregate": [ - 2760 + 3021 ], "nodes": [ - 2758 + 3015 ], "__typename": [ - 80 + 84 + ] + }, + "match_options_aggregate_bool_exp": { + "bool_and": [ + 3018 + ], + "bool_or": [ + 3019 + ], + "count": [ + 3020 + ], + "__typename": [ + 84 + ] + }, + "match_options_aggregate_bool_exp_bool_and": { + "arguments": [ + 3040 + ], + "distinct": [ + 6 + ], + "filter": [ + 3026 + ], + "predicate": [ + 7 + ], + "__typename": [ + 84 + ] + }, + "match_options_aggregate_bool_exp_bool_or": { + "arguments": [ + 3041 + ], + "distinct": [ + 6 + ], + "filter": [ + 3026 + ], + "predicate": [ + 7 + ], + "__typename": [ + 84 + ] + }, + "match_options_aggregate_bool_exp_count": { + "arguments": [ + 3039 + ], + "distinct": [ + 6 + ], + "filter": [ + 3026 + ], + "predicate": [ + 42 + ], + "__typename": [ + 84 ] }, "match_options_aggregate_fields": { "avg": [ - 2761 + 3024 ], "count": [ - 40, + 41, { "columns": [ - 2773, + 3039, "[match_options_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2766 + 3030 ], "min": [ - 2767 + 3032 ], "stddev": [ - 2775 + 3043 ], "stddev_pop": [ - 2776 + 3045 ], "stddev_samp": [ - 2777 + 3047 ], "sum": [ - 2780 + 3051 ], "var_pop": [ - 2783 + 3055 ], "var_samp": [ - 2784 + 3057 ], "variance": [ - 2785 + 3059 ], "__typename": [ - 80 + 84 + ] + }, + "match_options_aggregate_order_by": { + "avg": [ + 3025 + ], + "count": [ + 3373 + ], + "max": [ + 3031 + ], + "min": [ + 3033 + ], + "stddev": [ + 3044 + ], + "stddev_pop": [ + 3046 + ], + "stddev_samp": [ + 3048 + ], + "sum": [ + 3052 + ], + "var_pop": [ + 3056 + ], + "var_samp": [ + 3058 + ], + "variance": [ + 3060 + ], + "__typename": [ + 84 + ] + }, + "match_options_arr_rel_insert_input": { + "data": [ + 3029 + ], + "on_conflict": [ + 3036 + ], + "__typename": [ + 84 ] }, "match_options_avg_fields": { "auto_cancel_duration": [ - 31 + 32 ], "best_of": [ - 31 + 32 ], "live_match_timeout": [ - 31 + 32 ], "mr": [ - 31 + 32 ], "number_of_substitutes": [ - 31 + 32 ], "round_restart_delay": [ - 31 + 32 ], "tv_delay": [ - 31 + 32 ], "veto_pick_timeout": [ - 31 + 32 ], "__typename": [ - 80 + 84 + ] + }, + "match_options_avg_order_by": { + "auto_cancel_duration": [ + 3373 + ], + "best_of": [ + 3373 + ], + "live_match_timeout": [ + 3373 + ], + "mr": [ + 3373 + ], + "number_of_substitutes": [ + 3373 + ], + "round_restart_delay": [ + 3373 + ], + "tv_delay": [ + 3373 + ], + "veto_pick_timeout": [ + 3373 + ], + "__typename": [ + 84 ] }, "match_options_bool_exp": { "_and": [ - 2762 + 3026 ], "_not": [ - 2762 + 3026 ], "_or": [ - 2762 + 3026 ], "auto_cancel_duration": [ - 41 + 42 ], "auto_cancellation": [ - 6 + 7 ], "best_of": [ - 41 + 42 ], "camera_allow_teammates": [ - 6 + 7 ], "camera_required": [ - 6 + 7 ], "check_in_setting": [ - 643 + 648 ], "coaches": [ - 6 + 7 ], "default_models": [ - 6 + 7 + ], + "game_mode": [ + 1924 + ], + "game_mode_id": [ + 5456 ], "halftime_pausematch": [ - 6 + 7 ], "has_active_matches": [ - 6 + 7 ], "id": [ - 5172 + 5456 ], "invite_code": [ - 82 + 86 ], "knife_round": [ - 6 + 7 ], "live_match_timeout": [ - 41 + 42 ], "map_pool": [ - 2376 + 2633 ], "map_pool_id": [ - 5172 + 5456 ], "map_veto": [ - 6 + 7 ], "match_mode": [ - 1057 + 1122 ], "matches": [ - 2891 + 3168 ], "matches_aggregate": [ - 2884 + 3159 ], "mr": [ - 41 + 42 ], "number_of_substitutes": [ - 41 + 42 ], "overtime": [ - 6 + 7 ], "prefer_dedicated_server": [ - 6 + 7 ], "ready_setting": [ - 1219 + 1284 ], "region_veto": [ - 6 + 7 ], "regions": [ - 81 + 85 ], "round_restart_delay": [ - 41 + 42 ], "tech_timeout_setting": [ - 1381 + 1446 ], "timeout_setting": [ - 1381 + 1446 ], "tournament": [ - 5127 + 5411 ], "tournament_bracket": [ - 4725 + 5009 ], "tournament_stage": [ - 4943 + 5227 ], "tv_delay": [ - 41 + 42 ], "type": [ - 1118 + 1183 ], "veto_pick_timeout": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "match_options_constraint": {}, "match_options_inc_input": { "auto_cancel_duration": [ - 40 + 41 ], "best_of": [ - 40 + 41 ], "live_match_timeout": [ - 40 + 41 ], "mr": [ - 40 + 41 ], "number_of_substitutes": [ - 40 + 41 ], "round_restart_delay": [ - 40 + 41 ], "tv_delay": [ - 40 + 41 ], "veto_pick_timeout": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_options_insert_input": { "auto_cancel_duration": [ - 40 + 41 ], "auto_cancellation": [ - 5 + 6 ], "best_of": [ - 40 + 41 ], "camera_allow_teammates": [ - 5 + 6 ], "camera_required": [ - 5 + 6 ], "check_in_setting": [ - 642 + 647 ], "coaches": [ - 5 + 6 ], "default_models": [ - 5 + 6 + ], + "game_mode": [ + 1930 + ], + "game_mode_id": [ + 5454 ], "halftime_pausematch": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "invite_code": [ - 80 + 84 ], "knife_round": [ - 5 + 6 ], "live_match_timeout": [ - 40 + 41 ], "map_pool": [ - 2382 + 2639 ], "map_pool_id": [ - 5170 + 5454 ], "map_veto": [ - 5 + 6 ], "match_mode": [ - 1056 + 1121 ], "matches": [ - 2888 + 3165 ], "mr": [ - 40 + 41 ], "number_of_substitutes": [ - 40 + 41 ], "overtime": [ - 5 + 6 ], "prefer_dedicated_server": [ - 5 + 6 ], "ready_setting": [ - 1218 + 1283 ], "region_veto": [ - 5 + 6 ], "regions": [ - 80 + 84 ], "round_restart_delay": [ - 40 + 41 ], "tech_timeout_setting": [ - 1380 + 1445 ], "timeout_setting": [ - 1380 + 1445 ], "tournament": [ - 5136 + 5420 ], "tournament_bracket": [ - 4734 + 5018 ], "tournament_stage": [ - 4955 + 5239 ], "tv_delay": [ - 40 + 41 ], "type": [ - 1117 + 1182 ], "veto_pick_timeout": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_options_max_fields": { "auto_cancel_duration": [ - 40 + 41 ], "best_of": [ - 40 + 41 + ], + "game_mode_id": [ + 5454 ], "id": [ - 5170 + 5454 ], "invite_code": [ - 80 + 84 ], "live_match_timeout": [ - 40 + 41 ], "map_pool_id": [ - 5170 + 5454 ], "mr": [ - 40 + 41 ], "number_of_substitutes": [ - 40 + 41 ], "regions": [ - 80 + 84 ], "round_restart_delay": [ - 40 + 41 ], "tv_delay": [ - 40 + 41 ], "veto_pick_timeout": [ - 40 + 41 ], "__typename": [ - 80 + 84 + ] + }, + "match_options_max_order_by": { + "auto_cancel_duration": [ + 3373 + ], + "best_of": [ + 3373 + ], + "game_mode_id": [ + 3373 + ], + "id": [ + 3373 + ], + "invite_code": [ + 3373 + ], + "live_match_timeout": [ + 3373 + ], + "map_pool_id": [ + 3373 + ], + "mr": [ + 3373 + ], + "number_of_substitutes": [ + 3373 + ], + "regions": [ + 3373 + ], + "round_restart_delay": [ + 3373 + ], + "tv_delay": [ + 3373 + ], + "veto_pick_timeout": [ + 3373 + ], + "__typename": [ + 84 ] }, "match_options_min_fields": { "auto_cancel_duration": [ - 40 + 41 ], "best_of": [ - 40 + 41 + ], + "game_mode_id": [ + 5454 ], "id": [ - 5170 + 5454 ], "invite_code": [ - 80 + 84 ], "live_match_timeout": [ - 40 + 41 ], "map_pool_id": [ - 5170 + 5454 ], "mr": [ - 40 + 41 ], "number_of_substitutes": [ - 40 + 41 ], "regions": [ - 80 + 84 ], "round_restart_delay": [ - 40 + 41 ], "tv_delay": [ - 40 + 41 ], "veto_pick_timeout": [ - 40 + 41 ], "__typename": [ - 80 + 84 + ] + }, + "match_options_min_order_by": { + "auto_cancel_duration": [ + 3373 + ], + "best_of": [ + 3373 + ], + "game_mode_id": [ + 3373 + ], + "id": [ + 3373 + ], + "invite_code": [ + 3373 + ], + "live_match_timeout": [ + 3373 + ], + "map_pool_id": [ + 3373 + ], + "mr": [ + 3373 + ], + "number_of_substitutes": [ + 3373 + ], + "regions": [ + 3373 + ], + "round_restart_delay": [ + 3373 + ], + "tv_delay": [ + 3373 + ], + "veto_pick_timeout": [ + 3373 + ], + "__typename": [ + 84 ] }, "match_options_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2758 + 3015 ], "__typename": [ - 80 + 84 ] }, "match_options_obj_rel_insert_input": { "data": [ - 2765 + 3029 ], "on_conflict": [ - 2770 + 3036 ], "__typename": [ - 80 + 84 ] }, "match_options_on_conflict": { "constraint": [ - 2763 + 3027 ], "update_columns": [ - 2781 + 3053 ], "where": [ - 2762 + 3026 ], "__typename": [ - 80 + 84 ] }, "match_options_order_by": { "auto_cancel_duration": [ - 3094 + 3373 ], "auto_cancellation": [ - 3094 + 3373 ], "best_of": [ - 3094 + 3373 ], "camera_allow_teammates": [ - 3094 + 3373 ], "camera_required": [ - 3094 + 3373 ], "check_in_setting": [ - 3094 + 3373 ], "coaches": [ - 3094 + 3373 ], "default_models": [ - 3094 + 3373 + ], + "game_mode": [ + 1932 + ], + "game_mode_id": [ + 3373 ], "halftime_pausematch": [ - 3094 + 3373 ], "has_active_matches": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "invite_code": [ - 3094 + 3373 ], "knife_round": [ - 3094 + 3373 ], "live_match_timeout": [ - 3094 + 3373 ], "map_pool": [ - 2384 + 2641 ], "map_pool_id": [ - 3094 + 3373 ], "map_veto": [ - 3094 + 3373 ], "match_mode": [ - 3094 + 3373 ], "matches_aggregate": [ - 2887 + 3164 ], "mr": [ - 3094 + 3373 ], "number_of_substitutes": [ - 3094 + 3373 ], "overtime": [ - 3094 + 3373 ], "prefer_dedicated_server": [ - 3094 + 3373 ], "ready_setting": [ - 3094 + 3373 ], "region_veto": [ - 3094 + 3373 ], "regions": [ - 3094 + 3373 ], "round_restart_delay": [ - 3094 + 3373 ], "tech_timeout_setting": [ - 3094 + 3373 ], "timeout_setting": [ - 3094 + 3373 ], "tournament": [ - 5138 + 5422 ], "tournament_bracket": [ - 4736 + 5020 ], "tournament_stage": [ - 4957 + 5241 ], "tv_delay": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "veto_pick_timeout": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_options_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_options_select_column": {}, + "match_options_select_column_match_options_aggregate_bool_exp_bool_and_arguments_columns": {}, + "match_options_select_column_match_options_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_options_set_input": { "auto_cancel_duration": [ - 40 + 41 ], "auto_cancellation": [ - 5 + 6 ], "best_of": [ - 40 + 41 ], "camera_allow_teammates": [ - 5 + 6 ], "camera_required": [ - 5 + 6 ], "check_in_setting": [ - 642 + 647 ], "coaches": [ - 5 + 6 ], "default_models": [ - 5 + 6 + ], + "game_mode_id": [ + 5454 ], "halftime_pausematch": [ - 5 + 6 + ], + "id": [ + 5454 + ], + "invite_code": [ + 84 + ], + "knife_round": [ + 6 + ], + "live_match_timeout": [ + 41 + ], + "map_pool_id": [ + 5454 + ], + "map_veto": [ + 6 + ], + "match_mode": [ + 1121 + ], + "mr": [ + 41 + ], + "number_of_substitutes": [ + 41 + ], + "overtime": [ + 6 + ], + "prefer_dedicated_server": [ + 6 + ], + "ready_setting": [ + 1283 + ], + "region_veto": [ + 6 + ], + "regions": [ + 84 + ], + "round_restart_delay": [ + 41 + ], + "tech_timeout_setting": [ + 1445 + ], + "timeout_setting": [ + 1445 + ], + "tv_delay": [ + 41 + ], + "type": [ + 1182 + ], + "veto_pick_timeout": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "match_options_stddev_fields": { + "auto_cancel_duration": [ + 32 + ], + "best_of": [ + 32 + ], + "live_match_timeout": [ + 32 + ], + "mr": [ + 32 ], - "id": [ - 5170 + "number_of_substitutes": [ + 32 ], - "invite_code": [ - 80 + "round_restart_delay": [ + 32 ], - "knife_round": [ - 5 + "tv_delay": [ + 32 ], - "live_match_timeout": [ - 40 + "veto_pick_timeout": [ + 32 ], - "map_pool_id": [ - 5170 + "__typename": [ + 84 + ] + }, + "match_options_stddev_order_by": { + "auto_cancel_duration": [ + 3373 ], - "map_veto": [ - 5 + "best_of": [ + 3373 ], - "match_mode": [ - 1056 + "live_match_timeout": [ + 3373 ], "mr": [ - 40 + 3373 ], "number_of_substitutes": [ - 40 + 3373 ], - "overtime": [ - 5 + "round_restart_delay": [ + 3373 ], - "prefer_dedicated_server": [ - 5 + "tv_delay": [ + 3373 ], - "ready_setting": [ - 1218 + "veto_pick_timeout": [ + 3373 ], - "region_veto": [ - 5 + "__typename": [ + 84 + ] + }, + "match_options_stddev_pop_fields": { + "auto_cancel_duration": [ + 32 ], - "regions": [ - 80 + "best_of": [ + 32 ], - "round_restart_delay": [ - 40 + "live_match_timeout": [ + 32 ], - "tech_timeout_setting": [ - 1380 + "mr": [ + 32 ], - "timeout_setting": [ - 1380 + "number_of_substitutes": [ + 32 ], - "tv_delay": [ - 40 + "round_restart_delay": [ + 32 ], - "type": [ - 1117 + "tv_delay": [ + 32 ], "veto_pick_timeout": [ - 40 + 32 ], "__typename": [ - 80 + 84 ] }, - "match_options_stddev_fields": { + "match_options_stddev_pop_order_by": { "auto_cancel_duration": [ - 31 + 3373 ], "best_of": [ - 31 + 3373 ], "live_match_timeout": [ - 31 + 3373 ], "mr": [ - 31 + 3373 ], "number_of_substitutes": [ - 31 + 3373 ], "round_restart_delay": [ - 31 + 3373 ], "tv_delay": [ - 31 + 3373 ], "veto_pick_timeout": [ - 31 + 3373 ], "__typename": [ - 80 + 84 ] }, - "match_options_stddev_pop_fields": { + "match_options_stddev_samp_fields": { "auto_cancel_duration": [ - 31 + 32 ], "best_of": [ - 31 + 32 ], "live_match_timeout": [ - 31 + 32 ], "mr": [ - 31 + 32 ], "number_of_substitutes": [ - 31 + 32 ], "round_restart_delay": [ - 31 + 32 ], "tv_delay": [ - 31 + 32 ], "veto_pick_timeout": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, - "match_options_stddev_samp_fields": { + "match_options_stddev_samp_order_by": { "auto_cancel_duration": [ - 31 + 3373 ], "best_of": [ - 31 + 3373 ], "live_match_timeout": [ - 31 + 3373 ], "mr": [ - 31 + 3373 ], "number_of_substitutes": [ - 31 + 3373 ], "round_restart_delay": [ - 31 + 3373 ], "tv_delay": [ - 31 + 3373 ], "veto_pick_timeout": [ - 31 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_options_stream_cursor_input": { "initial_value": [ - 2779 + 3050 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "match_options_stream_cursor_value_input": { "auto_cancel_duration": [ - 40 + 41 ], "auto_cancellation": [ - 5 + 6 ], "best_of": [ - 40 + 41 ], "camera_allow_teammates": [ - 5 + 6 ], "camera_required": [ - 5 + 6 ], "check_in_setting": [ - 642 + 647 ], "coaches": [ - 5 + 6 ], "default_models": [ - 5 + 6 + ], + "game_mode_id": [ + 5454 ], "halftime_pausematch": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "invite_code": [ - 80 + 84 ], "knife_round": [ - 5 + 6 ], "live_match_timeout": [ - 40 + 41 ], "map_pool_id": [ - 5170 + 5454 ], "map_veto": [ - 5 + 6 ], "match_mode": [ - 1056 + 1121 ], "mr": [ - 40 + 41 ], "number_of_substitutes": [ - 40 + 41 ], "overtime": [ - 5 + 6 ], "prefer_dedicated_server": [ - 5 + 6 ], "ready_setting": [ - 1218 + 1283 ], "region_veto": [ - 5 + 6 ], "regions": [ - 80 + 84 ], "round_restart_delay": [ - 40 + 41 ], "tech_timeout_setting": [ - 1380 + 1445 ], "timeout_setting": [ - 1380 + 1445 ], "tv_delay": [ - 40 + 41 ], "type": [ - 1117 + 1182 ], "veto_pick_timeout": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_options_sum_fields": { "auto_cancel_duration": [ - 40 + 41 ], "best_of": [ - 40 + 41 ], "live_match_timeout": [ - 40 + 41 ], "mr": [ - 40 + 41 ], "number_of_substitutes": [ - 40 + 41 ], "round_restart_delay": [ - 40 + 41 ], "tv_delay": [ - 40 + 41 ], "veto_pick_timeout": [ - 40 + 41 ], "__typename": [ - 80 + 84 + ] + }, + "match_options_sum_order_by": { + "auto_cancel_duration": [ + 3373 + ], + "best_of": [ + 3373 + ], + "live_match_timeout": [ + 3373 + ], + "mr": [ + 3373 + ], + "number_of_substitutes": [ + 3373 + ], + "round_restart_delay": [ + 3373 + ], + "tv_delay": [ + 3373 + ], + "veto_pick_timeout": [ + 3373 + ], + "__typename": [ + 84 ] }, "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2764 + 3028 ], "_set": [ - 2774 + 3042 ], "where": [ - 2762 + 3026 ], "__typename": [ - 80 + 84 ] }, "match_options_var_pop_fields": { "auto_cancel_duration": [ - 31 + 32 ], "best_of": [ - 31 + 32 ], "live_match_timeout": [ - 31 + 32 ], "mr": [ - 31 + 32 ], "number_of_substitutes": [ - 31 + 32 ], "round_restart_delay": [ - 31 + 32 ], "tv_delay": [ - 31 + 32 ], "veto_pick_timeout": [ - 31 + 32 ], "__typename": [ - 80 + 84 + ] + }, + "match_options_var_pop_order_by": { + "auto_cancel_duration": [ + 3373 + ], + "best_of": [ + 3373 + ], + "live_match_timeout": [ + 3373 + ], + "mr": [ + 3373 + ], + "number_of_substitutes": [ + 3373 + ], + "round_restart_delay": [ + 3373 + ], + "tv_delay": [ + 3373 + ], + "veto_pick_timeout": [ + 3373 + ], + "__typename": [ + 84 ] }, "match_options_var_samp_fields": { "auto_cancel_duration": [ - 31 + 32 + ], + "best_of": [ + 32 + ], + "live_match_timeout": [ + 32 + ], + "mr": [ + 32 + ], + "number_of_substitutes": [ + 32 + ], + "round_restart_delay": [ + 32 + ], + "tv_delay": [ + 32 + ], + "veto_pick_timeout": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "match_options_var_samp_order_by": { + "auto_cancel_duration": [ + 3373 ], "best_of": [ - 31 + 3373 ], "live_match_timeout": [ - 31 + 3373 ], "mr": [ - 31 + 3373 ], "number_of_substitutes": [ - 31 + 3373 ], "round_restart_delay": [ - 31 + 3373 ], "tv_delay": [ - 31 + 3373 ], "veto_pick_timeout": [ - 31 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_options_variance_fields": { "auto_cancel_duration": [ - 31 + 32 + ], + "best_of": [ + 32 + ], + "live_match_timeout": [ + 32 + ], + "mr": [ + 32 + ], + "number_of_substitutes": [ + 32 + ], + "round_restart_delay": [ + 32 + ], + "tv_delay": [ + 32 + ], + "veto_pick_timeout": [ + 32 + ], + "__typename": [ + 84 + ] + }, + "match_options_variance_order_by": { + "auto_cancel_duration": [ + 3373 ], "best_of": [ - 31 + 3373 ], "live_match_timeout": [ - 31 + 3373 ], "mr": [ - 31 + 3373 ], "number_of_substitutes": [ - 31 + 3373 ], "round_restart_delay": [ - 31 + 3373 ], "tv_delay": [ - 31 + 3373 ], "veto_pick_timeout": [ - 31 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks": { "auto_picked": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_lineup": [ - 2554 + 2811 ], "match_lineup_id": [ - 5170 + 5454 ], "region": [ - 80 + 84 ], "type": [ - 1483 + 1548 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2792 + 3067 ], "nodes": [ - 2786 + 3061 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_aggregate_bool_exp": { "bool_and": [ - 2789 + 3064 ], "bool_or": [ - 2790 + 3065 ], "count": [ - 2791 + 3066 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 2807 + 3082 ], "distinct": [ - 5 + 6 ], "filter": [ - 2795 + 3070 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 2808 + 3083 ], "distinct": [ - 5 + 6 ], "filter": [ - 2795 + 3070 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2806 + 3081 ], "distinct": [ - 5 + 6 ], "filter": [ - 2795 + 3070 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2806, + 3081, "[match_region_veto_picks_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2798 + 3073 ], "min": [ - 2800 + 3075 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 3094 + 3373 ], "max": [ - 2799 + 3074 ], "min": [ - 2801 + 3076 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2797 + 3072 ], "on_conflict": [ - 2803 + 3078 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_bool_exp": { "_and": [ - 2795 + 3070 ], "_not": [ - 2795 + 3070 ], "_or": [ - 2795 + 3070 ], "auto_picked": [ - 6 + 7 ], "created_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_lineup": [ - 2563 + 2820 ], "match_lineup_id": [ - 5172 + 5456 ], "region": [ - 82 + 86 ], "type": [ - 1484 + 1549 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "auto_picked": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_lineup": [ - 2572 + 2829 ], "match_lineup_id": [ - 5170 + 5454 ], "region": [ - 80 + 84 ], "type": [ - 1483 + 1548 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_max_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "region": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_max_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_lineup_id": [ - 3094 + 3373 ], "region": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_min_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "region": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_min_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_lineup_id": [ - 3094 + 3373 ], "region": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2786 + 3061 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2796 + 3071 ], "update_columns": [ - 2812 + 3087 ], "where": [ - 2795 + 3070 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_order_by": { "auto_picked": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_lineup": [ - 2574 + 2831 ], "match_lineup_id": [ - 3094 + 3373 ], "region": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_select_column": {}, @@ -51562,761 +56788,761 @@ export default { "match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_region_veto_picks_set_input": { "auto_picked": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "region": [ - 80 + 84 ], "type": [ - 1483 + 1548 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2811 + 3086 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_stream_cursor_value_input": { "auto_picked": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "region": [ - 80 + 84 ], "type": [ - 1483 + 1548 ], "__typename": [ - 80 + 84 ] }, "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2809 + 3084 ], "where": [ - 2795 + 3070 ], "__typename": [ - 80 + 84 ] }, "match_streams": { "autodirector": [ - 5 + 6 ], "error_message": [ - 80 + 84 ], "game_server_node": [ - 1806 + 2063 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_game_streamer": [ - 5 + 6 ], "is_live": [ - 5 + 6 ], "k8s_service_name": [ - 80 + 84 ], "last_status_at": [ - 4670 + 4954 ], "link": [ - 80 + 84 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "mode": [ - 80 + 84 ], "priority": [ - 40 + 41 ], "status": [ - 80 + 84 ], "status_history": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "stream_url": [ - 80 + 84 ], "title": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_streams_aggregate": { "aggregate": [ - 2820 + 3095 ], "nodes": [ - 2814 + 3089 ], "__typename": [ - 80 + 84 ] }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2817 + 3092 ], "bool_or": [ - 2818 + 3093 ], "count": [ - 2819 + 3094 ], "__typename": [ - 80 + 84 ] }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2843 + 3118 ], "distinct": [ - 5 + 6 ], "filter": [ - 2826 + 3101 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2844 + 3119 ], "distinct": [ - 5 + 6 ], "filter": [ - 2826 + 3101 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2842 + 3117 ], "distinct": [ - 5 + 6 ], "filter": [ - 2826 + 3101 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "match_streams_aggregate_fields": { "avg": [ - 2824 + 3099 ], "count": [ - 40, + 41, { "columns": [ - 2842, + 3117, "[match_streams_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2833 + 3108 ], "min": [ - 2835 + 3110 ], "stddev": [ - 2846 + 3121 ], "stddev_pop": [ - 2848 + 3123 ], "stddev_samp": [ - 2850 + 3125 ], "sum": [ - 2854 + 3129 ], "var_pop": [ - 2858 + 3133 ], "var_samp": [ - 2860 + 3135 ], "variance": [ - 2862 + 3137 ], "__typename": [ - 80 + 84 ] }, "match_streams_aggregate_order_by": { "avg": [ - 2825 + 3100 ], "count": [ - 3094 + 3373 ], "max": [ - 2834 + 3109 ], "min": [ - 2836 + 3111 ], "stddev": [ - 2847 + 3122 ], "stddev_pop": [ - 2849 + 3124 ], "stddev_samp": [ - 2851 + 3126 ], "sum": [ - 2855 + 3130 ], "var_pop": [ - 2859 + 3134 ], "var_samp": [ - 2861 + 3136 ], "variance": [ - 2863 + 3138 ], "__typename": [ - 80 + 84 ] }, "match_streams_append_input": { "status_history": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "match_streams_arr_rel_insert_input": { "data": [ - 2832 + 3107 ], "on_conflict": [ - 2838 + 3113 ], "__typename": [ - 80 + 84 ] }, "match_streams_avg_fields": { "priority": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_streams_avg_order_by": { "priority": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_streams_bool_exp": { "_and": [ - 2826 + 3101 ], "_not": [ - 2826 + 3101 ], "_or": [ - 2826 + 3101 ], "autodirector": [ - 6 + 7 ], "error_message": [ - 82 + 86 ], "game_server_node": [ - 1818 + 2075 ], "game_server_node_id": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "is_game_streamer": [ - 6 + 7 ], "is_live": [ - 6 + 7 ], "k8s_service_name": [ - 82 + 86 ], "last_status_at": [ - 4671 + 4955 ], "link": [ - 82 + 86 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "mode": [ - 82 + 86 ], "priority": [ - 41 + 42 ], "status": [ - 82 + 86 ], "status_history": [ - 1932 + 2189 ], "stream_url": [ - 82 + 86 ], "title": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "match_streams_constraint": {}, "match_streams_delete_at_path_input": { "status_history": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_streams_delete_elem_input": { "status_history": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_streams_delete_key_input": { "status_history": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_streams_inc_input": { "priority": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_streams_insert_input": { "autodirector": [ - 5 + 6 ], "error_message": [ - 80 + 84 ], "game_server_node": [ - 1830 + 2087 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_game_streamer": [ - 5 + 6 ], "is_live": [ - 5 + 6 ], "k8s_service_name": [ - 80 + 84 ], "last_status_at": [ - 4670 + 4954 ], "link": [ - 80 + 84 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "mode": [ - 80 + 84 ], "priority": [ - 40 + 41 ], "status": [ - 80 + 84 ], "status_history": [ - 1930 + 2187 ], "stream_url": [ - 80 + 84 ], "title": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_streams_max_fields": { "error_message": [ - 80 + 84 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "k8s_service_name": [ - 80 + 84 ], "last_status_at": [ - 4670 + 4954 ], "link": [ - 80 + 84 ], "match_id": [ - 5170 + 5454 ], "mode": [ - 80 + 84 ], "priority": [ - 40 + 41 ], "status": [ - 80 + 84 ], "stream_url": [ - 80 + 84 ], "title": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_streams_max_order_by": { "error_message": [ - 3094 + 3373 ], "game_server_node_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "k8s_service_name": [ - 3094 + 3373 ], "last_status_at": [ - 3094 + 3373 ], "link": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "mode": [ - 3094 + 3373 ], "priority": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "stream_url": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_streams_min_fields": { "error_message": [ - 80 + 84 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "k8s_service_name": [ - 80 + 84 ], "last_status_at": [ - 4670 + 4954 ], "link": [ - 80 + 84 ], "match_id": [ - 5170 + 5454 ], "mode": [ - 80 + 84 ], "priority": [ - 40 + 41 ], "status": [ - 80 + 84 ], "stream_url": [ - 80 + 84 ], "title": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_streams_min_order_by": { "error_message": [ - 3094 + 3373 ], "game_server_node_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "k8s_service_name": [ - 3094 + 3373 ], "last_status_at": [ - 3094 + 3373 ], "link": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "mode": [ - 3094 + 3373 ], "priority": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "stream_url": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_streams_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2814 + 3089 ], "__typename": [ - 80 + 84 ] }, "match_streams_on_conflict": { "constraint": [ - 2827 + 3102 ], "update_columns": [ - 2856 + 3131 ], "where": [ - 2826 + 3101 ], "__typename": [ - 80 + 84 ] }, "match_streams_order_by": { "autodirector": [ - 3094 + 3373 ], "error_message": [ - 3094 + 3373 ], "game_server_node": [ - 1832 + 2089 ], "game_server_node_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "is_game_streamer": [ - 3094 + 3373 ], "is_live": [ - 3094 + 3373 ], "k8s_service_name": [ - 3094 + 3373 ], "last_status_at": [ - 3094 + 3373 ], "link": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "mode": [ - 3094 + 3373 ], "priority": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "status_history": [ - 3094 + 3373 ], "stream_url": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_streams_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "match_streams_prepend_input": { "status_history": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "match_streams_select_column": {}, @@ -52324,4318 +57550,4378 @@ export default { "match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_streams_set_input": { "autodirector": [ - 5 + 6 ], "error_message": [ - 80 + 84 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_game_streamer": [ - 5 + 6 ], "is_live": [ - 5 + 6 ], "k8s_service_name": [ - 80 + 84 ], "last_status_at": [ - 4670 + 4954 ], "link": [ - 80 + 84 ], "match_id": [ - 5170 + 5454 ], "mode": [ - 80 + 84 ], "priority": [ - 40 + 41 ], "status": [ - 80 + 84 ], "status_history": [ - 1930 + 2187 ], "stream_url": [ - 80 + 84 ], "title": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_streams_stddev_fields": { "priority": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_streams_stddev_order_by": { "priority": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_streams_stddev_pop_fields": { "priority": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_streams_stddev_pop_order_by": { "priority": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_streams_stddev_samp_fields": { "priority": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_streams_stddev_samp_order_by": { "priority": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_streams_stream_cursor_input": { "initial_value": [ - 2853 + 3128 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "match_streams_stream_cursor_value_input": { "autodirector": [ - 5 + 6 ], "error_message": [ - 80 + 84 ], "game_server_node_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_game_streamer": [ - 5 + 6 ], "is_live": [ - 5 + 6 ], "k8s_service_name": [ - 80 + 84 ], "last_status_at": [ - 4670 + 4954 ], "link": [ - 80 + 84 ], "match_id": [ - 5170 + 5454 ], "mode": [ - 80 + 84 ], "priority": [ - 40 + 41 ], "status": [ - 80 + 84 ], "status_history": [ - 1930 + 2187 ], "stream_url": [ - 80 + 84 ], "title": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_streams_sum_fields": { "priority": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "match_streams_sum_order_by": { "priority": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2822 + 3097 ], "_delete_at_path": [ - 2828 + 3103 ], "_delete_elem": [ - 2829 + 3104 ], "_delete_key": [ - 2830 + 3105 ], "_inc": [ - 2831 + 3106 ], "_prepend": [ - 2841 + 3116 ], "_set": [ - 2845 + 3120 ], "where": [ - 2826 + 3101 ], "__typename": [ - 80 + 84 ] }, "match_streams_var_pop_fields": { "priority": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_streams_var_pop_order_by": { "priority": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_streams_var_samp_fields": { "priority": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_streams_var_samp_order_by": { "priority": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_streams_variance_fields": { "priority": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "match_streams_variance_order_by": { "priority": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs": { "cfg": [ - 80 + 84 ], "type": [ - 828 + 833 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs_aggregate": { "aggregate": [ - 2866 + 3141 ], "nodes": [ - 2864 + 3139 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2876, + 3151, "[match_type_cfgs_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2870 + 3145 ], "min": [ - 2871 + 3146 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs_bool_exp": { "_and": [ - 2867 + 3142 ], "_not": [ - 2867 + 3142 ], "_or": [ - 2867 + 3142 ], "cfg": [ - 82 + 86 ], "type": [ - 829 + 834 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs_constraint": {}, "match_type_cfgs_insert_input": { "cfg": [ - 80 + 84 ], "type": [ - 828 + 833 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs_max_fields": { "cfg": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs_min_fields": { "cfg": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2864 + 3139 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs_on_conflict": { "constraint": [ - 2868 + 3143 ], "update_columns": [ - 2880 + 3155 ], "where": [ - 2867 + 3142 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs_order_by": { "cfg": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs_pk_columns_input": { "type": [ - 828 + 833 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs_select_column": {}, "match_type_cfgs_set_input": { "cfg": [ - 80 + 84 ], "type": [ - 828 + 833 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2879 + 3154 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs_stream_cursor_value_input": { "cfg": [ - 80 + 84 ], "type": [ - 828 + 833 ], "__typename": [ - 80 + 84 ] }, "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2877 + 3152 ], "where": [ - 2867 + 3142 ], "__typename": [ - 80 + 84 ] }, "matches": { "can_assign_server": [ - 5 + 6 ], "can_cancel": [ - 5 + 6 ], "can_check_in": [ - 5 + 6 ], "can_reassign_winner": [ - 5 + 6 ], "can_schedule": [ - 5 + 6 ], "can_start": [ - 5 + 6 ], "can_stream_live": [ - 5 + 6 ], "can_stream_tv": [ - 5 + 6 ], "cancels_at": [ - 4670 + 4954 ], "clutches": [ - 5350, + 5634, { "distinct_on": [ - 5366, + 5650, "[v_match_clutches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5365, + 5649, "[v_match_clutches_order_by!]" ], "where": [ - 5359 + 5643 ] } ], "clutches_aggregate": [ - 5351, + 5635, { "distinct_on": [ - 5366, + 5650, "[v_match_clutches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5365, + 5649, "[v_match_clutches_order_by!]" ], "where": [ - 5359 + 5643 ] } ], "connection_link": [ - 80 + 84 ], "connection_string": [ - 80 + 84 + ], + "counts_toward_ranking": [ + 6 ], "created_at": [ - 4670 + 4954 ], "current_match_map_id": [ - 5170 + 5454 ], "demos": [ - 2596, + 2853, { "distinct_on": [ - 2625, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2622, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2865 ] } ], "demos_aggregate": [ - 2597, + 2854, { "distinct_on": [ - 2625, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2622, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2865 ] } ], "draft_games": [ - 551, + 556, { "distinct_on": [ - 575, + 580, "[draft_games_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 573, + 578, "[draft_games_order_by!]" ], "where": [ - 562 + 567 ] } ], "draft_games_aggregate": [ - 552, + 557, { "distinct_on": [ - 575, + 580, "[draft_games_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 573, + 578, "[draft_games_order_by!]" ], "where": [ - 562 + 567 ] } ], "e_match_status": [ - 1091 + 1156 ], "e_region": [ - 4166 + 4445 ], "effective_at": [ - 4670 + 4954 ], "elo_changes": [ - 5547, + 5831, { "distinct_on": [ - 5573, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5572, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5850 ] } ], "elo_changes_aggregate": [ - 5548, + 5832, { "distinct_on": [ - 5573, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5572, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5850 ] } ], "ended_at": [ - 4670 + 4954 ], "external_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "invite_code": [ - 80 + 84 ], "is_captain": [ - 5 + 6 ], "is_coach": [ - 5 + 6 ], "is_friend_in_match_lineup": [ - 5 + 6 ], "is_in_lineup": [ - 5 + 6 ], "is_match_server_available": [ - 5 + 6 ], "is_organizer": [ - 5 + 6 ], "is_server_online": [ - 5 + 6 ], "is_tournament_match": [ - 5 + 6 ], "label": [ - 80 + 84 ], "lineup_1": [ - 2554 + 2811 ], "lineup_1_id": [ - 5170 + 5454 ], "lineup_2": [ - 2554 + 2811 ], "lineup_2_id": [ - 5170 + 5454 ], "lineup_counts": [ - 1928, + 2185, { "path": [ - 80 + 84 ] } ], "map_veto_picking_lineup_id": [ - 5170 + 5454 ], "map_veto_picks": [ - 2688, + 2945, { "distinct_on": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2706, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2954 ] } ], "map_veto_picks_aggregate": [ - 2689, + 2946, { "distinct_on": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2706, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2954 ] } ], "map_veto_type": [ - 80 + 84 ], "match_maps": [ - 2716, + 2973, { "distinct_on": [ - 2738, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2736, + 2993, "[match_maps_order_by!]" ], "where": [ - 2725 + 2982 ] } ], "match_maps_aggregate": [ - 2717, + 2974, { "distinct_on": [ - 2738, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2736, + 2993, "[match_maps_order_by!]" ], "where": [ - 2725 + 2982 ] } ], "match_options_id": [ - 5170 + 5454 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "opening_duels": [ - 5478, + 5762, { "distinct_on": [ - 5494, + 5778, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5493, + 5777, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5487 + 5771 ] } ], "opening_duels_aggregate": [ - 5479, + 5763, { "distinct_on": [ - 5494, + 5778, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5493, + 5777, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5487 + 5771 ] } ], "options": [ - 2758 + 3015 ], "organizer": [ - 4052 + 4331 ], "organizer_steam_id": [ - 264 + 269 ], "password": [ - 80 + 84 ], "player_assists": [ - 3232, + 3511, { "distinct_on": [ - 3255, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3253, + 3532, "[player_assists_order_by!]" ], "where": [ - 3243 + 3522 ] } ], "player_assists_aggregate": [ - 3233, + 3512, { "distinct_on": [ - 3255, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3253, + 3532, "[player_assists_order_by!]" ], "where": [ - 3243 + 3522 ] } ], "player_damages": [ - 3295, + 3574, { "distinct_on": [ - 3316, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3314, + 3593, "[player_damages_order_by!]" ], "where": [ - 3304 + 3583 ] } ], "player_damages_aggregate": [ - 3296, + 3575, { "distinct_on": [ - 3316, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3314, + 3593, "[player_damages_order_by!]" ], "where": [ - 3304 + 3583 ] } ], "player_flashes": [ - 3404, + 3683, { "distinct_on": [ - 3427, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3425, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3694 ] } ], "player_flashes_aggregate": [ - 3405, + 3684, { "distinct_on": [ - 3427, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3425, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3694 ] } ], "player_kills": [ - 3449, + 3728, { "distinct_on": [ - 3513, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3511, + 3790, "[player_kills_order_by!]" ], "where": [ - 3460 + 3739 ] } ], "player_kills_aggregate": [ - 3450, + 3729, { "distinct_on": [ - 3513, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3511, + 3790, "[player_kills_order_by!]" ], "where": [ - 3460 + 3739 ] } ], "player_objectives": [ - 3650, + 3929, { "distinct_on": [ - 3671, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3669, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3938 ] } ], "player_objectives_aggregate": [ - 3651, + 3930, { "distinct_on": [ - 3671, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3669, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3938 ] } ], "player_unused_utilities": [ - 3937, + 4216, { "distinct_on": [ - 3958, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3956, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4225 ] } ], "player_unused_utilities_aggregate": [ - 3938, + 4217, { "distinct_on": [ - 3958, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3956, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4225 ] } ], "player_utility": [ - 3978, + 4257, { "distinct_on": [ - 3999, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3997, + 4276, "[player_utility_order_by!]" ], "where": [ - 3987 + 4266 ] } ], "player_utility_aggregate": [ - 3979, + 4258, { "distinct_on": [ - 3999, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3997, + 4276, "[player_utility_order_by!]" ], "where": [ - 3987 + 4266 ] } ], "region": [ - 80 + 84 ], "region_veto_picking_lineup_id": [ - 5170 + 5454 ], "region_veto_picks": [ - 2786, + 3061, { "distinct_on": [ - 2806, + 3081, "[match_region_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2804, + 3079, "[match_region_veto_picks_order_by!]" ], "where": [ - 2795 + 3070 ] } ], "region_veto_picks_aggregate": [ - 2787, + 3062, { "distinct_on": [ - 2806, + 3081, "[match_region_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2804, + 3079, "[match_region_veto_picks_order_by!]" ], "where": [ - 2795 + 3070 ] } ], "requested_organizer": [ - 5 + 6 ], "scheduled_at": [ - 4670 + 4954 ], "server": [ - 4193 + 4472 ], "server_error": [ - 80 + 84 ], "server_id": [ - 5170 + 5454 ], "server_plugin_runtime": [ - 80 + 84 ], "server_region": [ - 80 + 84 ], "server_type": [ - 80 + 84 ], "share_code": [ - 80 + 84 ], "source": [ - 80 + 84 ], "started_at": [ - 4670 + 4954 ], "status": [ - 1096 + 1161 ], "streams": [ - 2814, + 3089, { "distinct_on": [ - 2842, + 3117, "[match_streams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2839, + 3114, "[match_streams_order_by!]" ], "where": [ - 2826 + 3101 ] } ], "streams_aggregate": [ - 2815, + 3090, { "distinct_on": [ - 2842, + 3117, "[match_streams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2839, + 3114, "[match_streams_order_by!]" ], "where": [ - 2826 + 3101 ] } ], "teams": [ - 4621, + 4905, { "distinct_on": [ - 4645, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4643, + 4927, "[teams_order_by!]" ], "where": [ - 4632 + 4916 ] } ], "tournament_brackets": [ - 4714, + 4998, { "distinct_on": [ - 4738, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4736, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5009 ] } ], "tournament_brackets_aggregate": [ - 4715, + 4999, { "distinct_on": [ - 4738, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4736, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5009 ] } ], "tv_connection_string": [ - 80 + 84 ], "veto_pick_expires_at": [ - 4670 + 4954 ], "winner": [ - 2554 + 2811 ], "winning_lineup_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "matches_aggregate": { "aggregate": [ - 2886 + 3163 ], "nodes": [ - 2882 + 3157 ], "__typename": [ - 80 + 84 ] }, "matches_aggregate_bool_exp": { + "bool_and": [ + 3160 + ], + "bool_or": [ + 3161 + ], "count": [ - 2885 + 3162 ], "__typename": [ - 80 + 84 + ] + }, + "matches_aggregate_bool_exp_bool_and": { + "arguments": [ + 3182 + ], + "distinct": [ + 6 + ], + "filter": [ + 3168 + ], + "predicate": [ + 7 + ], + "__typename": [ + 84 + ] + }, + "matches_aggregate_bool_exp_bool_or": { + "arguments": [ + 3183 + ], + "distinct": [ + 6 + ], + "filter": [ + 3168 + ], + "predicate": [ + 7 + ], + "__typename": [ + 84 ] }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2904 + 3181 ], "distinct": [ - 5 + 6 ], "filter": [ - 2891 + 3168 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "matches_aggregate_fields": { "avg": [ - 2889 + 3166 ], "count": [ - 40, + 41, { "columns": [ - 2904, + 3181, "[matches_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2895 + 3172 ], "min": [ - 2897 + 3174 ], "stddev": [ - 2906 + 3185 ], "stddev_pop": [ - 2908 + 3187 ], "stddev_samp": [ - 2910 + 3189 ], "sum": [ - 2914 + 3193 ], "var_pop": [ - 2918 + 3197 ], "var_samp": [ - 2920 + 3199 ], "variance": [ - 2922 + 3201 ], "__typename": [ - 80 + 84 ] }, "matches_aggregate_order_by": { "avg": [ - 2890 + 3167 ], "count": [ - 3094 + 3373 ], "max": [ - 2896 + 3173 ], "min": [ - 2898 + 3175 ], "stddev": [ - 2907 + 3186 ], "stddev_pop": [ - 2909 + 3188 ], "stddev_samp": [ - 2911 + 3190 ], "sum": [ - 2915 + 3194 ], "var_pop": [ - 2919 + 3198 ], "var_samp": [ - 2921 + 3200 ], "variance": [ - 2923 + 3202 ], "__typename": [ - 80 + 84 ] }, "matches_arr_rel_insert_input": { "data": [ - 2894 + 3171 ], "on_conflict": [ - 2901 + 3178 ], "__typename": [ - 80 + 84 ] }, "matches_avg_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "matches_avg_order_by": { "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "matches_bool_exp": { "_and": [ - 2891 + 3168 ], "_not": [ - 2891 + 3168 ], "_or": [ - 2891 + 3168 ], "can_assign_server": [ - 6 + 7 ], "can_cancel": [ - 6 + 7 ], "can_check_in": [ - 6 + 7 ], "can_reassign_winner": [ - 6 + 7 ], "can_schedule": [ - 6 + 7 ], "can_start": [ - 6 + 7 ], "can_stream_live": [ - 6 + 7 ], "can_stream_tv": [ - 6 + 7 ], "cancels_at": [ - 4671 + 4955 ], "clutches": [ - 5359 + 5643 ], "clutches_aggregate": [ - 5352 + 5636 ], "connection_link": [ - 82 + 86 ], "connection_string": [ - 82 + 86 + ], + "counts_toward_ranking": [ + 7 ], "created_at": [ - 4671 + 4955 ], "current_match_map_id": [ - 5172 + 5456 ], "demos": [ - 2608 + 2865 ], "demos_aggregate": [ - 2598 + 2855 ], "draft_games": [ - 562 + 567 ], "draft_games_aggregate": [ - 553 + 558 ], "e_match_status": [ - 1094 + 1159 ], "e_region": [ - 4170 + 4449 ], "effective_at": [ - 4671 + 4955 ], "elo_changes": [ - 5566 + 5850 ], "elo_changes_aggregate": [ - 5549 + 5833 ], "ended_at": [ - 4671 + 4955 ], "external_id": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "invite_code": [ - 82 + 86 ], "is_captain": [ - 6 + 7 ], "is_coach": [ - 6 + 7 ], "is_friend_in_match_lineup": [ - 6 + 7 ], "is_in_lineup": [ - 6 + 7 ], "is_match_server_available": [ - 6 + 7 ], "is_organizer": [ - 6 + 7 ], "is_server_online": [ - 6 + 7 ], "is_tournament_match": [ - 6 + 7 ], "label": [ - 82 + 86 ], "lineup_1": [ - 2563 + 2820 ], "lineup_1_id": [ - 5172 + 5456 ], "lineup_2": [ - 2563 + 2820 ], "lineup_2_id": [ - 5172 + 5456 ], "lineup_counts": [ - 1929 + 2186 ], "map_veto_picking_lineup_id": [ - 5172 + 5456 ], "map_veto_picks": [ - 2697 + 2954 ], "map_veto_picks_aggregate": [ - 2690 + 2947 ], "map_veto_type": [ - 82 + 86 ], "match_maps": [ - 2725 + 2982 ], "match_maps_aggregate": [ - 2718 + 2975 ], "match_options_id": [ - 5172 + 5456 ], "max_players_per_lineup": [ - 41 + 42 ], "min_players_per_lineup": [ - 41 + 42 ], "opening_duels": [ - 5487 + 5771 ], "opening_duels_aggregate": [ - 5480 + 5764 ], "options": [ - 2762 + 3026 ], "organizer": [ - 4056 + 4335 ], "organizer_steam_id": [ - 266 + 271 ], "password": [ - 82 + 86 ], "player_assists": [ - 3243 + 3522 ], "player_assists_aggregate": [ - 3234 + 3513 ], "player_damages": [ - 3304 + 3583 ], "player_damages_aggregate": [ - 3297 + 3576 ], "player_flashes": [ - 3415 + 3694 ], "player_flashes_aggregate": [ - 3406 + 3685 ], "player_kills": [ - 3460 + 3739 ], "player_kills_aggregate": [ - 3451 + 3730 ], "player_objectives": [ - 3659 + 3938 ], "player_objectives_aggregate": [ - 3652 + 3931 ], "player_unused_utilities": [ - 3946 + 4225 ], "player_unused_utilities_aggregate": [ - 3939 + 4218 ], "player_utility": [ - 3987 + 4266 ], "player_utility_aggregate": [ - 3980 + 4259 ], "region": [ - 82 + 86 ], "region_veto_picking_lineup_id": [ - 5172 + 5456 ], "region_veto_picks": [ - 2795 + 3070 ], "region_veto_picks_aggregate": [ - 2788 + 3063 ], "requested_organizer": [ - 6 + 7 ], "scheduled_at": [ - 4671 + 4955 ], "server": [ - 4204 + 4484 ], "server_error": [ - 82 + 86 ], "server_id": [ - 5172 + 5456 ], "server_plugin_runtime": [ - 82 + 86 ], "server_region": [ - 82 + 86 ], "server_type": [ - 82 + 86 ], "share_code": [ - 82 + 86 ], "source": [ - 82 + 86 ], "started_at": [ - 4671 + 4955 ], "status": [ - 1097 + 1162 ], "streams": [ - 2826 + 3101 ], "streams_aggregate": [ - 2816 + 3091 ], "teams": [ - 4632 + 4916 ], "tournament_brackets": [ - 4725 + 5009 ], "tournament_brackets_aggregate": [ - 4716 + 5000 ], "tv_connection_string": [ - 82 + 86 ], "veto_pick_expires_at": [ - 4671 + 4955 ], "winner": [ - 2563 + 2820 ], "winning_lineup_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "matches_constraint": {}, "matches_inc_input": { "organizer_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "matches_insert_input": { "cancels_at": [ - 4670 + 4954 ], "clutches": [ - 5356 + 5640 + ], + "counts_toward_ranking": [ + 6 ], "created_at": [ - 4670 + 4954 ], "demos": [ - 2605 + 2862 ], "draft_games": [ - 559 + 564 ], "e_match_status": [ - 1102 + 1167 ], "e_region": [ - 4176 + 4455 ], "elo_changes": [ - 5563 + 5847 ], "ended_at": [ - 4670 + 4954 ], "external_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "lineup_1": [ - 2572 + 2829 ], "lineup_1_id": [ - 5170 + 5454 ], "lineup_2": [ - 2572 + 2829 ], "lineup_2_id": [ - 5170 + 5454 ], "map_veto_picks": [ - 2696 + 2953 ], "match_maps": [ - 2722 + 2979 ], "match_options_id": [ - 5170 + 5454 ], "opening_duels": [ - 5484 + 5768 ], "options": [ - 2769 + 3035 ], "organizer": [ - 4063 + 4342 ], "organizer_steam_id": [ - 264 + 269 ], "password": [ - 80 + 84 ], "player_assists": [ - 3240 + 3519 ], "player_damages": [ - 3301 + 3580 ], "player_flashes": [ - 3412 + 3691 ], "player_kills": [ - 3457 + 3736 ], "player_objectives": [ - 3656 + 3935 ], "player_unused_utilities": [ - 3943 + 4222 ], "player_utility": [ - 3984 + 4263 ], "region": [ - 80 + 84 ], "region_veto_picks": [ - 2794 + 3069 ], "scheduled_at": [ - 4670 + 4954 ], "server": [ - 4213 + 4496 ], "server_error": [ - 80 + 84 ], "server_id": [ - 5170 + 5454 ], "share_code": [ - 80 + 84 ], "source": [ - 80 + 84 ], "started_at": [ - 4670 + 4954 ], "status": [ - 1096 + 1161 ], "streams": [ - 2823 + 3098 ], "tournament_brackets": [ - 4722 + 5006 ], "veto_pick_expires_at": [ - 4670 + 4954 ], "winner": [ - 2572 + 2829 ], "winning_lineup_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "matches_max_fields": { "cancels_at": [ - 4670 + 4954 ], "connection_link": [ - 80 + 84 ], "connection_string": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "current_match_map_id": [ - 5170 + 5454 ], "effective_at": [ - 4670 + 4954 ], "ended_at": [ - 4670 + 4954 ], "external_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "invite_code": [ - 80 + 84 ], "label": [ - 80 + 84 ], "lineup_1_id": [ - 5170 + 5454 ], "lineup_2_id": [ - 5170 + 5454 ], "map_veto_picking_lineup_id": [ - 5170 + 5454 ], "map_veto_type": [ - 80 + 84 ], "match_options_id": [ - 5170 + 5454 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 264 + 269 ], "password": [ - 80 + 84 ], "region": [ - 80 + 84 ], "region_veto_picking_lineup_id": [ - 5170 + 5454 ], "scheduled_at": [ - 4670 + 4954 ], "server_error": [ - 80 + 84 ], "server_id": [ - 5170 + 5454 ], "server_plugin_runtime": [ - 80 + 84 ], "server_region": [ - 80 + 84 ], "server_type": [ - 80 + 84 ], "share_code": [ - 80 + 84 ], "source": [ - 80 + 84 ], "started_at": [ - 4670 + 4954 ], "tv_connection_string": [ - 80 + 84 ], "veto_pick_expires_at": [ - 4670 + 4954 ], "winning_lineup_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "matches_max_order_by": { "cancels_at": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "effective_at": [ - 3094 + 3373 ], "ended_at": [ - 3094 + 3373 ], "external_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "lineup_1_id": [ - 3094 + 3373 ], "lineup_2_id": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "organizer_steam_id": [ - 3094 + 3373 ], "password": [ - 3094 + 3373 ], "region": [ - 3094 + 3373 ], "scheduled_at": [ - 3094 + 3373 ], "server_error": [ - 3094 + 3373 ], "server_id": [ - 3094 + 3373 ], "share_code": [ - 3094 + 3373 ], "source": [ - 3094 + 3373 ], "started_at": [ - 3094 + 3373 ], "veto_pick_expires_at": [ - 3094 + 3373 ], "winning_lineup_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "matches_min_fields": { "cancels_at": [ - 4670 + 4954 ], "connection_link": [ - 80 + 84 ], "connection_string": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "current_match_map_id": [ - 5170 + 5454 ], "effective_at": [ - 4670 + 4954 ], "ended_at": [ - 4670 + 4954 ], "external_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "invite_code": [ - 80 + 84 ], "label": [ - 80 + 84 ], "lineup_1_id": [ - 5170 + 5454 ], "lineup_2_id": [ - 5170 + 5454 ], "map_veto_picking_lineup_id": [ - 5170 + 5454 ], "map_veto_type": [ - 80 + 84 ], "match_options_id": [ - 5170 + 5454 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 264 + 269 ], "password": [ - 80 + 84 ], "region": [ - 80 + 84 ], "region_veto_picking_lineup_id": [ - 5170 + 5454 ], "scheduled_at": [ - 4670 + 4954 ], "server_error": [ - 80 + 84 ], "server_id": [ - 5170 + 5454 ], "server_plugin_runtime": [ - 80 + 84 ], "server_region": [ - 80 + 84 ], "server_type": [ - 80 + 84 ], "share_code": [ - 80 + 84 ], "source": [ - 80 + 84 ], "started_at": [ - 4670 + 4954 ], "tv_connection_string": [ - 80 + 84 ], "veto_pick_expires_at": [ - 4670 + 4954 ], "winning_lineup_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "matches_min_order_by": { "cancels_at": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "effective_at": [ - 3094 + 3373 ], "ended_at": [ - 3094 + 3373 ], "external_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "lineup_1_id": [ - 3094 + 3373 ], "lineup_2_id": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "organizer_steam_id": [ - 3094 + 3373 ], "password": [ - 3094 + 3373 ], "region": [ - 3094 + 3373 ], "scheduled_at": [ - 3094 + 3373 ], "server_error": [ - 3094 + 3373 ], "server_id": [ - 3094 + 3373 ], "share_code": [ - 3094 + 3373 ], "source": [ - 3094 + 3373 ], "started_at": [ - 3094 + 3373 ], "veto_pick_expires_at": [ - 3094 + 3373 ], "winning_lineup_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "matches_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2882 + 3157 ], "__typename": [ - 80 + 84 ] }, "matches_obj_rel_insert_input": { "data": [ - 2894 + 3171 ], "on_conflict": [ - 2901 + 3178 ], "__typename": [ - 80 + 84 ] }, "matches_on_conflict": { "constraint": [ - 2892 + 3169 ], "update_columns": [ - 2916 + 3195 ], "where": [ - 2891 + 3168 ], "__typename": [ - 80 + 84 ] }, "matches_order_by": { "can_assign_server": [ - 3094 + 3373 ], "can_cancel": [ - 3094 + 3373 ], "can_check_in": [ - 3094 + 3373 ], "can_reassign_winner": [ - 3094 + 3373 ], "can_schedule": [ - 3094 + 3373 ], "can_start": [ - 3094 + 3373 ], "can_stream_live": [ - 3094 + 3373 ], "can_stream_tv": [ - 3094 + 3373 ], "cancels_at": [ - 3094 + 3373 ], "clutches_aggregate": [ - 5355 + 5639 ], "connection_link": [ - 3094 + 3373 ], "connection_string": [ - 3094 + 3373 + ], + "counts_toward_ranking": [ + 3373 ], "created_at": [ - 3094 + 3373 ], "current_match_map_id": [ - 3094 + 3373 ], "demos_aggregate": [ - 2603 + 2860 ], "draft_games_aggregate": [ - 558 + 563 ], "e_match_status": [ - 1104 + 1169 ], "e_region": [ - 4178 + 4457 ], "effective_at": [ - 3094 + 3373 ], "elo_changes_aggregate": [ - 5562 + 5846 ], "ended_at": [ - 3094 + 3373 ], "external_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "invite_code": [ - 3094 + 3373 ], "is_captain": [ - 3094 + 3373 ], "is_coach": [ - 3094 + 3373 ], "is_friend_in_match_lineup": [ - 3094 + 3373 ], "is_in_lineup": [ - 3094 + 3373 ], "is_match_server_available": [ - 3094 + 3373 ], "is_organizer": [ - 3094 + 3373 ], "is_server_online": [ - 3094 + 3373 ], "is_tournament_match": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "lineup_1": [ - 2574 + 2831 ], "lineup_1_id": [ - 3094 + 3373 ], "lineup_2": [ - 2574 + 2831 ], "lineup_2_id": [ - 3094 + 3373 ], "lineup_counts": [ - 3094 + 3373 ], "map_veto_picking_lineup_id": [ - 3094 + 3373 ], "map_veto_picks_aggregate": [ - 2695 + 2952 ], "map_veto_type": [ - 3094 + 3373 ], "match_maps_aggregate": [ - 2721 + 2978 ], "match_options_id": [ - 3094 + 3373 ], "max_players_per_lineup": [ - 3094 + 3373 ], "min_players_per_lineup": [ - 3094 + 3373 ], "opening_duels_aggregate": [ - 5483 + 5767 ], "options": [ - 2771 + 3037 ], "organizer": [ - 4065 + 4344 ], "organizer_steam_id": [ - 3094 + 3373 ], "password": [ - 3094 + 3373 ], "player_assists_aggregate": [ - 3239 + 3518 ], "player_damages_aggregate": [ - 3300 + 3579 ], "player_flashes_aggregate": [ - 3411 + 3690 ], "player_kills_aggregate": [ - 3456 + 3735 ], "player_objectives_aggregate": [ - 3655 + 3934 ], "player_unused_utilities_aggregate": [ - 3942 + 4221 ], "player_utility_aggregate": [ - 3983 + 4262 ], "region": [ - 3094 + 3373 ], "region_veto_picking_lineup_id": [ - 3094 + 3373 ], "region_veto_picks_aggregate": [ - 2793 + 3068 ], "requested_organizer": [ - 3094 + 3373 ], "scheduled_at": [ - 3094 + 3373 ], "server": [ - 4215 + 4498 ], "server_error": [ - 3094 + 3373 ], "server_id": [ - 3094 + 3373 ], "server_plugin_runtime": [ - 3094 + 3373 ], "server_region": [ - 3094 + 3373 ], "server_type": [ - 3094 + 3373 ], "share_code": [ - 3094 + 3373 ], "source": [ - 3094 + 3373 ], "started_at": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "streams_aggregate": [ - 2821 + 3096 ], "teams_aggregate": [ - 4628 + 4912 ], "tournament_brackets_aggregate": [ - 4721 + 5005 ], "tv_connection_string": [ - 3094 + 3373 ], "veto_pick_expires_at": [ - 3094 + 3373 ], "winner": [ - 2574 + 2831 ], "winning_lineup_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "matches_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "matches_select_column": {}, + "matches_select_column_matches_aggregate_bool_exp_bool_and_arguments_columns": {}, + "matches_select_column_matches_aggregate_bool_exp_bool_or_arguments_columns": {}, "matches_set_input": { "cancels_at": [ - 4670 + 4954 + ], + "counts_toward_ranking": [ + 6 ], "created_at": [ - 4670 + 4954 ], "ended_at": [ - 4670 + 4954 ], "external_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "lineup_1_id": [ - 5170 + 5454 ], "lineup_2_id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "organizer_steam_id": [ - 264 + 269 ], "password": [ - 80 + 84 ], "region": [ - 80 + 84 ], "scheduled_at": [ - 4670 + 4954 ], "server_error": [ - 80 + 84 ], "server_id": [ - 5170 + 5454 ], "share_code": [ - 80 + 84 ], "source": [ - 80 + 84 ], "started_at": [ - 4670 + 4954 ], "status": [ - 1096 + 1161 ], "veto_pick_expires_at": [ - 4670 + 4954 ], "winning_lineup_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "matches_stddev_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "matches_stddev_order_by": { "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "matches_stddev_pop_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "matches_stddev_samp_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "matches_stream_cursor_input": { "initial_value": [ - 2913 + 3192 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4670 + 4954 + ], + "counts_toward_ranking": [ + 6 ], "created_at": [ - 4670 + 4954 ], "effective_at": [ - 4670 + 4954 ], "ended_at": [ - 4670 + 4954 ], "external_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "lineup_1_id": [ - 5170 + 5454 ], "lineup_2_id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "organizer_steam_id": [ - 264 + 269 ], "password": [ - 80 + 84 ], "region": [ - 80 + 84 ], "scheduled_at": [ - 4670 + 4954 ], "server_error": [ - 80 + 84 ], "server_id": [ - 5170 + 5454 ], "share_code": [ - 80 + 84 ], "source": [ - 80 + 84 ], "started_at": [ - 4670 + 4954 ], "status": [ - 1096 + 1161 ], "veto_pick_expires_at": [ - 4670 + 4954 ], "winning_lineup_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "matches_sum_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "matches_sum_order_by": { "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "matches_update_column": {}, "matches_updates": { "_inc": [ - 2893 + 3170 ], "_set": [ - 2905 + 3184 ], "where": [ - 2891 + 3168 ], "__typename": [ - 80 + 84 ] }, "matches_var_pop_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "matches_var_samp_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "matches_variance_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "matches_variance_order_by": { "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes": { "hash": [ - 80 + 84 ], "name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2926 + 3205 ], "nodes": [ - 2924 + 3203 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2936, + 3215, "[migration_hashes_hashes_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2930 + 3209 ], "min": [ - 2931 + 3210 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2927 + 3206 ], "_not": [ - 2927 + 3206 ], "_or": [ - 2927 + 3206 ], "hash": [ - 82 + 86 ], "name": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes_constraint": {}, "migration_hashes_hashes_insert_input": { "hash": [ - 80 + 84 ], "name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes_max_fields": { "hash": [ - 80 + 84 ], "name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes_min_fields": { "hash": [ - 80 + 84 ], "name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2924 + 3203 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2928 + 3207 ], "update_columns": [ - 2940 + 3219 ], "where": [ - 2927 + 3206 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes_order_by": { "hash": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes_pk_columns_input": { "name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes_select_column": {}, "migration_hashes_hashes_set_input": { "hash": [ - 80 + 84 ], "name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2939 + 3218 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes_stream_cursor_value_input": { "hash": [ - 80 + 84 ], "name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2937 + 3216 ], "where": [ - 2927 + 3206 ], "__typename": [ - 80 + 84 ] }, "my_friends": { "avatar_url": [ - 80 + 84 ], "country": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "custom_avatar_url": [ - 80 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 80 + 84 ], "elo": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 80 + 84 ], "faceit_player_id": [ - 80 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4670 + 4954 ], "faceit_url": [ - 80 + 84 ], "friend_steam_id": [ - 264 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 264 + 269 ], "language": [ - 80 + 84 ], "last_presence_state": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "last_read_news_at": [ - 4670 + 4954 ], "last_sign_in_at": [ - 4670 + 4954 ], "name": [ - 80 + 84 ], "name_registered": [ - 5 + 6 ], "player": [ - 4052 + 4331 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4670 + 4954 ], "presence_updated_at": [ - 4670 + 4954 ], "profile_url": [ - 80 + 84 ], "role": [ - 80 + 84 ], "roster_image_url": [ - 80 + 84 ], "show_match_ready_modal": [ - 5 + 6 ], "status": [ - 80 + 84 ], "steam_bans_checked_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "my_friends_aggregate": { "aggregate": [ - 2948 + 3227 ], "nodes": [ - 2942 + 3221 ], "__typename": [ - 80 + 84 ] }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2945 + 3224 ], "bool_or": [ - 2946 + 3225 ], "count": [ - 2947 + 3226 ], "__typename": [ - 80 + 84 ] }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2968 + 3247 ], "distinct": [ - 5 + 6 ], "filter": [ - 2954 + 3233 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2969 + 3248 ], "distinct": [ - 5 + 6 ], "filter": [ - 2954 + 3233 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2967 + 3246 ], "distinct": [ - 5 + 6 ], "filter": [ - 2954 + 3233 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "my_friends_aggregate_fields": { "avg": [ - 2952 + 3231 ], "count": [ - 40, + 41, { "columns": [ - 2967, + 3246, "[my_friends_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2960 + 3239 ], "min": [ - 2962 + 3241 ], "stddev": [ - 2971 + 3250 ], "stddev_pop": [ - 2973 + 3252 ], "stddev_samp": [ - 2975 + 3254 ], "sum": [ - 2979 + 3258 ], "var_pop": [ - 2982 + 3261 ], "var_samp": [ - 2984 + 3263 ], "variance": [ - 2986 + 3265 ], "__typename": [ - 80 + 84 ] }, "my_friends_aggregate_order_by": { "avg": [ - 2953 + 3232 ], "count": [ - 3094 + 3373 ], "max": [ - 2961 + 3240 ], "min": [ - 2963 + 3242 ], "stddev": [ - 2972 + 3251 ], "stddev_pop": [ - 2974 + 3253 ], "stddev_samp": [ - 2976 + 3255 ], "sum": [ - 2980 + 3259 ], "var_pop": [ - 2983 + 3262 ], "var_samp": [ - 2985 + 3264 ], "variance": [ - 2987 + 3266 ], "__typename": [ - 80 + 84 ] }, "my_friends_append_input": { "elo": [ - 1930 + 2187 ], "last_presence_state": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "my_friends_arr_rel_insert_input": { "data": [ - 2959 + 3238 ], "__typename": [ - 80 + 84 ] }, "my_friends_avg_fields": { "days_since_last_ban": [ - 31 + 32 ], "faceit_elo": [ - 31 + 32 ], "faceit_skill_level": [ - 31 + 32 ], "friend_steam_id": [ - 31 + 32 ], "game_ban_count": [ - 31 + 32 ], "invited_by_steam_id": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "vac_ban_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 3094 + 3373 ], "faceit_elo": [ - 3094 + 3373 ], "faceit_skill_level": [ - 3094 + 3373 ], "friend_steam_id": [ - 3094 + 3373 ], "game_ban_count": [ - 3094 + 3373 ], "invited_by_steam_id": [ - 3094 + 3373 ], "premier_rank": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "vac_ban_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "my_friends_bool_exp": { "_and": [ - 2954 + 3233 ], "_not": [ - 2954 + 3233 ], "_or": [ - 2954 + 3233 ], "avatar_url": [ - 82 + 86 ], "country": [ - 82 + 86 ], "created_at": [ - 4671 + 4955 ], "custom_avatar_url": [ - 82 + 86 ], "days_since_last_ban": [ - 41 + 42 ], "discord_id": [ - 82 + 86 ], "elo": [ - 1932 + 2189 ], "faceit_elo": [ - 41 + 42 ], "faceit_nickname": [ - 82 + 86 ], "faceit_player_id": [ - 82 + 86 ], "faceit_skill_level": [ - 41 + 42 ], "faceit_updated_at": [ - 4671 + 4955 ], "faceit_url": [ - 82 + 86 ], "friend_steam_id": [ - 266 + 271 ], "game_ban_count": [ - 41 + 42 ], "invited_by_steam_id": [ - 266 + 271 ], "language": [ - 82 + 86 ], "last_presence_state": [ - 1932 + 2189 ], "last_read_news_at": [ - 4671 + 4955 ], "last_sign_in_at": [ - 4671 + 4955 ], "name": [ - 82 + 86 ], "name_registered": [ - 6 + 7 ], "player": [ - 4056 + 4335 ], "premier_rank": [ - 41 + 42 ], "premier_rank_updated_at": [ - 4671 + 4955 ], "presence_updated_at": [ - 4671 + 4955 ], "profile_url": [ - 82 + 86 ], "role": [ - 82 + 86 ], "roster_image_url": [ - 82 + 86 ], "show_match_ready_modal": [ - 6 + 7 ], "status": [ - 82 + 86 ], "steam_bans_checked_at": [ - 4671 + 4955 ], "steam_id": [ - 266 + 271 ], "vac_ban_count": [ - 41 + 42 ], "vac_banned": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "my_friends_delete_at_path_input": { "elo": [ - 80 + 84 ], "last_presence_state": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "my_friends_delete_elem_input": { "elo": [ - 40 + 41 ], "last_presence_state": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "my_friends_delete_key_input": { "elo": [ - 80 + 84 ], "last_presence_state": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "my_friends_inc_input": { "days_since_last_ban": [ - 40 + 41 ], "faceit_elo": [ - 40 + 41 ], "faceit_skill_level": [ - 40 + 41 ], "friend_steam_id": [ - 264 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 264 + 269 ], "premier_rank": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "vac_ban_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "my_friends_insert_input": { "avatar_url": [ - 80 + 84 ], "country": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "custom_avatar_url": [ - 80 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 80 + 84 ], "elo": [ - 1930 + 2187 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 80 + 84 ], "faceit_player_id": [ - 80 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4670 + 4954 ], "faceit_url": [ - 80 + 84 ], "friend_steam_id": [ - 264 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 264 + 269 ], "language": [ - 80 + 84 ], "last_presence_state": [ - 1930 + 2187 ], "last_read_news_at": [ - 4670 + 4954 ], "last_sign_in_at": [ - 4670 + 4954 ], "name": [ - 80 + 84 ], "name_registered": [ - 5 + 6 ], "player": [ - 4063 + 4342 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4670 + 4954 ], "presence_updated_at": [ - 4670 + 4954 ], "profile_url": [ - 80 + 84 ], "role": [ - 80 + 84 ], "roster_image_url": [ - 80 + 84 ], "show_match_ready_modal": [ - 5 + 6 ], "status": [ - 80 + 84 ], "steam_bans_checked_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "my_friends_max_fields": { "avatar_url": [ - 80 + 84 ], "country": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "custom_avatar_url": [ - 80 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 80 + 84 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 80 + 84 ], "faceit_player_id": [ - 80 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4670 + 4954 ], "faceit_url": [ - 80 + 84 ], "friend_steam_id": [ - 264 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 264 + 269 ], "language": [ - 80 + 84 ], "last_read_news_at": [ - 4670 + 4954 ], "last_sign_in_at": [ - 4670 + 4954 ], "name": [ - 80 + 84 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4670 + 4954 ], "presence_updated_at": [ - 4670 + 4954 ], "profile_url": [ - 80 + 84 ], "role": [ - 80 + 84 ], "roster_image_url": [ - 80 + 84 ], "status": [ - 80 + 84 ], "steam_bans_checked_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "vac_ban_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "my_friends_max_order_by": { "avatar_url": [ - 3094 + 3373 ], "country": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "custom_avatar_url": [ - 3094 + 3373 ], "days_since_last_ban": [ - 3094 + 3373 ], "discord_id": [ - 3094 + 3373 ], "faceit_elo": [ - 3094 + 3373 ], "faceit_nickname": [ - 3094 + 3373 ], "faceit_player_id": [ - 3094 + 3373 ], "faceit_skill_level": [ - 3094 + 3373 ], "faceit_updated_at": [ - 3094 + 3373 ], "faceit_url": [ - 3094 + 3373 ], "friend_steam_id": [ - 3094 + 3373 ], "game_ban_count": [ - 3094 + 3373 ], "invited_by_steam_id": [ - 3094 + 3373 ], "language": [ - 3094 + 3373 ], "last_read_news_at": [ - 3094 + 3373 ], "last_sign_in_at": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "premier_rank": [ - 3094 + 3373 ], "premier_rank_updated_at": [ - 3094 + 3373 ], "presence_updated_at": [ - 3094 + 3373 ], "profile_url": [ - 3094 + 3373 ], "role": [ - 3094 + 3373 ], "roster_image_url": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "steam_bans_checked_at": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "vac_ban_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "my_friends_min_fields": { "avatar_url": [ - 80 + 84 ], "country": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "custom_avatar_url": [ - 80 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 80 + 84 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 80 + 84 ], "faceit_player_id": [ - 80 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4670 + 4954 ], "faceit_url": [ - 80 + 84 ], "friend_steam_id": [ - 264 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 264 + 269 ], "language": [ - 80 + 84 ], "last_read_news_at": [ - 4670 + 4954 ], "last_sign_in_at": [ - 4670 + 4954 ], "name": [ - 80 + 84 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4670 + 4954 ], "presence_updated_at": [ - 4670 + 4954 ], "profile_url": [ - 80 + 84 ], "role": [ - 80 + 84 ], "roster_image_url": [ - 80 + 84 ], "status": [ - 80 + 84 ], "steam_bans_checked_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "vac_ban_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "my_friends_min_order_by": { "avatar_url": [ - 3094 + 3373 ], "country": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "custom_avatar_url": [ - 3094 + 3373 ], "days_since_last_ban": [ - 3094 + 3373 ], "discord_id": [ - 3094 + 3373 ], "faceit_elo": [ - 3094 + 3373 ], "faceit_nickname": [ - 3094 + 3373 ], "faceit_player_id": [ - 3094 + 3373 ], "faceit_skill_level": [ - 3094 + 3373 ], "faceit_updated_at": [ - 3094 + 3373 ], "faceit_url": [ - 3094 + 3373 ], "friend_steam_id": [ - 3094 + 3373 ], "game_ban_count": [ - 3094 + 3373 ], "invited_by_steam_id": [ - 3094 + 3373 ], "language": [ - 3094 + 3373 ], "last_read_news_at": [ - 3094 + 3373 ], "last_sign_in_at": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "premier_rank": [ - 3094 + 3373 ], "premier_rank_updated_at": [ - 3094 + 3373 ], "presence_updated_at": [ - 3094 + 3373 ], "profile_url": [ - 3094 + 3373 ], "role": [ - 3094 + 3373 ], "roster_image_url": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "steam_bans_checked_at": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "vac_ban_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "my_friends_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2942 + 3221 ], "__typename": [ - 80 + 84 ] }, "my_friends_order_by": { "avatar_url": [ - 3094 + 3373 ], "country": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "custom_avatar_url": [ - 3094 + 3373 ], "days_since_last_ban": [ - 3094 + 3373 ], "discord_id": [ - 3094 + 3373 ], "elo": [ - 3094 + 3373 ], "faceit_elo": [ - 3094 + 3373 ], "faceit_nickname": [ - 3094 + 3373 ], "faceit_player_id": [ - 3094 + 3373 ], "faceit_skill_level": [ - 3094 + 3373 ], "faceit_updated_at": [ - 3094 + 3373 ], "faceit_url": [ - 3094 + 3373 ], "friend_steam_id": [ - 3094 + 3373 ], "game_ban_count": [ - 3094 + 3373 ], "invited_by_steam_id": [ - 3094 + 3373 ], "language": [ - 3094 + 3373 ], "last_presence_state": [ - 3094 + 3373 ], "last_read_news_at": [ - 3094 + 3373 ], "last_sign_in_at": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "name_registered": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "premier_rank": [ - 3094 + 3373 ], "premier_rank_updated_at": [ - 3094 + 3373 ], "presence_updated_at": [ - 3094 + 3373 ], "profile_url": [ - 3094 + 3373 ], "role": [ - 3094 + 3373 ], "roster_image_url": [ - 3094 + 3373 ], "show_match_ready_modal": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "steam_bans_checked_at": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "vac_ban_count": [ - 3094 + 3373 ], "vac_banned": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "my_friends_prepend_input": { "elo": [ - 1930 + 2187 ], "last_presence_state": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "my_friends_select_column": {}, @@ -56643,2239 +61929,2239 @@ export default { "my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns": {}, "my_friends_set_input": { "avatar_url": [ - 80 + 84 ], "country": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "custom_avatar_url": [ - 80 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 80 + 84 ], "elo": [ - 1930 + 2187 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 80 + 84 ], "faceit_player_id": [ - 80 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4670 + 4954 ], "faceit_url": [ - 80 + 84 ], "friend_steam_id": [ - 264 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 264 + 269 ], "language": [ - 80 + 84 ], "last_presence_state": [ - 1930 + 2187 ], "last_read_news_at": [ - 4670 + 4954 ], "last_sign_in_at": [ - 4670 + 4954 ], "name": [ - 80 + 84 ], "name_registered": [ - 5 + 6 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4670 + 4954 ], "presence_updated_at": [ - 4670 + 4954 ], "profile_url": [ - 80 + 84 ], "role": [ - 80 + 84 ], "roster_image_url": [ - 80 + 84 ], "show_match_ready_modal": [ - 5 + 6 ], "status": [ - 80 + 84 ], "steam_bans_checked_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "my_friends_stddev_fields": { "days_since_last_ban": [ - 31 + 32 ], "faceit_elo": [ - 31 + 32 ], "faceit_skill_level": [ - 31 + 32 ], "friend_steam_id": [ - 31 + 32 ], "game_ban_count": [ - 31 + 32 ], "invited_by_steam_id": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "vac_ban_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 3094 + 3373 ], "faceit_elo": [ - 3094 + 3373 ], "faceit_skill_level": [ - 3094 + 3373 ], "friend_steam_id": [ - 3094 + 3373 ], "game_ban_count": [ - 3094 + 3373 ], "invited_by_steam_id": [ - 3094 + 3373 ], "premier_rank": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "vac_ban_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "my_friends_stddev_pop_fields": { "days_since_last_ban": [ - 31 + 32 ], "faceit_elo": [ - 31 + 32 ], "faceit_skill_level": [ - 31 + 32 ], "friend_steam_id": [ - 31 + 32 ], "game_ban_count": [ - 31 + 32 ], "invited_by_steam_id": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "vac_ban_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 3094 + 3373 ], "faceit_elo": [ - 3094 + 3373 ], "faceit_skill_level": [ - 3094 + 3373 ], "friend_steam_id": [ - 3094 + 3373 ], "game_ban_count": [ - 3094 + 3373 ], "invited_by_steam_id": [ - 3094 + 3373 ], "premier_rank": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "vac_ban_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "my_friends_stddev_samp_fields": { "days_since_last_ban": [ - 31 + 32 ], "faceit_elo": [ - 31 + 32 ], "faceit_skill_level": [ - 31 + 32 ], "friend_steam_id": [ - 31 + 32 ], "game_ban_count": [ - 31 + 32 ], "invited_by_steam_id": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "vac_ban_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 3094 + 3373 ], "faceit_elo": [ - 3094 + 3373 ], "faceit_skill_level": [ - 3094 + 3373 ], "friend_steam_id": [ - 3094 + 3373 ], "game_ban_count": [ - 3094 + 3373 ], "invited_by_steam_id": [ - 3094 + 3373 ], "premier_rank": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "vac_ban_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "my_friends_stream_cursor_input": { "initial_value": [ - 2978 + 3257 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "my_friends_stream_cursor_value_input": { "avatar_url": [ - 80 + 84 ], "country": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "custom_avatar_url": [ - 80 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 80 + 84 ], "elo": [ - 1930 + 2187 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 80 + 84 ], "faceit_player_id": [ - 80 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4670 + 4954 ], "faceit_url": [ - 80 + 84 ], "friend_steam_id": [ - 264 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 264 + 269 ], "language": [ - 80 + 84 ], "last_presence_state": [ - 1930 + 2187 ], "last_read_news_at": [ - 4670 + 4954 ], "last_sign_in_at": [ - 4670 + 4954 ], "name": [ - 80 + 84 ], "name_registered": [ - 5 + 6 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4670 + 4954 ], "presence_updated_at": [ - 4670 + 4954 ], "profile_url": [ - 80 + 84 ], "role": [ - 80 + 84 ], "roster_image_url": [ - 80 + 84 ], "show_match_ready_modal": [ - 5 + 6 ], "status": [ - 80 + 84 ], "steam_bans_checked_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "my_friends_sum_fields": { "days_since_last_ban": [ - 40 + 41 ], "faceit_elo": [ - 40 + 41 ], "faceit_skill_level": [ - 40 + 41 ], "friend_steam_id": [ - 264 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 264 + 269 ], "premier_rank": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "vac_ban_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 3094 + 3373 ], "faceit_elo": [ - 3094 + 3373 ], "faceit_skill_level": [ - 3094 + 3373 ], "friend_steam_id": [ - 3094 + 3373 ], "game_ban_count": [ - 3094 + 3373 ], "invited_by_steam_id": [ - 3094 + 3373 ], "premier_rank": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "vac_ban_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "my_friends_updates": { "_append": [ - 2950 + 3229 ], "_delete_at_path": [ - 2955 + 3234 ], "_delete_elem": [ - 2956 + 3235 ], "_delete_key": [ - 2957 + 3236 ], "_inc": [ - 2958 + 3237 ], "_prepend": [ - 2966 + 3245 ], "_set": [ - 2970 + 3249 ], "where": [ - 2954 + 3233 ], "__typename": [ - 80 + 84 ] }, "my_friends_var_pop_fields": { "days_since_last_ban": [ - 31 + 32 ], "faceit_elo": [ - 31 + 32 ], "faceit_skill_level": [ - 31 + 32 ], "friend_steam_id": [ - 31 + 32 ], "game_ban_count": [ - 31 + 32 ], "invited_by_steam_id": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "vac_ban_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 3094 + 3373 ], "faceit_elo": [ - 3094 + 3373 ], "faceit_skill_level": [ - 3094 + 3373 ], "friend_steam_id": [ - 3094 + 3373 ], "game_ban_count": [ - 3094 + 3373 ], "invited_by_steam_id": [ - 3094 + 3373 ], "premier_rank": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "vac_ban_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "my_friends_var_samp_fields": { "days_since_last_ban": [ - 31 + 32 ], "faceit_elo": [ - 31 + 32 ], "faceit_skill_level": [ - 31 + 32 ], "friend_steam_id": [ - 31 + 32 ], "game_ban_count": [ - 31 + 32 ], "invited_by_steam_id": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "vac_ban_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 3094 + 3373 ], "faceit_elo": [ - 3094 + 3373 ], "faceit_skill_level": [ - 3094 + 3373 ], "friend_steam_id": [ - 3094 + 3373 ], "game_ban_count": [ - 3094 + 3373 ], "invited_by_steam_id": [ - 3094 + 3373 ], "premier_rank": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "vac_ban_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "my_friends_variance_fields": { "days_since_last_ban": [ - 31 + 32 ], "faceit_elo": [ - 31 + 32 ], "faceit_skill_level": [ - 31 + 32 ], "friend_steam_id": [ - 31 + 32 ], "game_ban_count": [ - 31 + 32 ], "invited_by_steam_id": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "vac_ban_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 3094 + 3373 ], "faceit_elo": [ - 3094 + 3373 ], "faceit_skill_level": [ - 3094 + 3373 ], "friend_steam_id": [ - 3094 + 3373 ], "game_ban_count": [ - 3094 + 3373 ], "invited_by_steam_id": [ - 3094 + 3373 ], "premier_rank": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "vac_ban_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "news_articles": { "author": [ - 4052 + 4331 ], "author_steam_id": [ - 264 + 269 ], "content_markdown": [ - 80 + 84 ], "cover_image_url": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "published_at": [ - 4670 + 4954 ], "slug": [ - 80 + 84 ], "status": [ - 80 + 84 ], "teaser": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "view_count": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "news_articles_aggregate": { "aggregate": [ - 2990 + 3269 ], "nodes": [ - 2988 + 3267 ], "__typename": [ - 80 + 84 ] }, "news_articles_aggregate_fields": { "avg": [ - 2991 + 3270 ], "count": [ - 40, + 41, { "columns": [ - 3002, + 3281, "[news_articles_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2996 + 3275 ], "min": [ - 2997 + 3276 ], "stddev": [ - 3004 + 3283 ], "stddev_pop": [ - 3005 + 3284 ], "stddev_samp": [ - 3006 + 3285 ], "sum": [ - 3009 + 3288 ], "var_pop": [ - 3012 + 3291 ], "var_samp": [ - 3013 + 3292 ], "variance": [ - 3014 + 3293 ], "__typename": [ - 80 + 84 ] }, "news_articles_avg_fields": { "author_steam_id": [ - 31 + 32 ], "view_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "news_articles_bool_exp": { "_and": [ - 2992 + 3271 ], "_not": [ - 2992 + 3271 ], "_or": [ - 2992 + 3271 ], "author": [ - 4056 + 4335 ], "author_steam_id": [ - 266 + 271 ], "content_markdown": [ - 82 + 86 ], "cover_image_url": [ - 82 + 86 ], "created_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "published_at": [ - 4671 + 4955 ], "slug": [ - 82 + 86 ], "status": [ - 82 + 86 ], "teaser": [ - 82 + 86 ], "title": [ - 82 + 86 ], "updated_at": [ - 4671 + 4955 ], "view_count": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "news_articles_constraint": {}, "news_articles_inc_input": { "author_steam_id": [ - 264 + 269 ], "view_count": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "news_articles_insert_input": { "author": [ - 4063 + 4342 ], "author_steam_id": [ - 264 + 269 ], "content_markdown": [ - 80 + 84 ], "cover_image_url": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "published_at": [ - 4670 + 4954 ], "slug": [ - 80 + 84 ], "status": [ - 80 + 84 ], "teaser": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "view_count": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "news_articles_max_fields": { "author_steam_id": [ - 264 + 269 ], "content_markdown": [ - 80 + 84 ], "cover_image_url": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "published_at": [ - 4670 + 4954 ], "slug": [ - 80 + 84 ], "status": [ - 80 + 84 ], "teaser": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "view_count": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "news_articles_min_fields": { "author_steam_id": [ - 264 + 269 ], "content_markdown": [ - 80 + 84 ], "cover_image_url": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "published_at": [ - 4670 + 4954 ], "slug": [ - 80 + 84 ], "status": [ - 80 + 84 ], "teaser": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "view_count": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "news_articles_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2988 + 3267 ], "__typename": [ - 80 + 84 ] }, "news_articles_on_conflict": { "constraint": [ - 2993 + 3272 ], "update_columns": [ - 3010 + 3289 ], "where": [ - 2992 + 3271 ], "__typename": [ - 80 + 84 ] }, "news_articles_order_by": { "author": [ - 4065 + 4344 ], "author_steam_id": [ - 3094 + 3373 ], "content_markdown": [ - 3094 + 3373 ], "cover_image_url": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "published_at": [ - 3094 + 3373 ], "slug": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "teaser": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "view_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "news_articles_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "news_articles_select_column": {}, "news_articles_set_input": { "author_steam_id": [ - 264 + 269 ], "content_markdown": [ - 80 + 84 ], "cover_image_url": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "published_at": [ - 4670 + 4954 ], "slug": [ - 80 + 84 ], "status": [ - 80 + 84 ], "teaser": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "view_count": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "news_articles_stddev_fields": { "author_steam_id": [ - 31 + 32 ], "view_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "news_articles_stddev_pop_fields": { "author_steam_id": [ - 31 + 32 ], "view_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "news_articles_stddev_samp_fields": { "author_steam_id": [ - 31 + 32 ], "view_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "news_articles_stream_cursor_input": { "initial_value": [ - 3008 + 3287 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "news_articles_stream_cursor_value_input": { "author_steam_id": [ - 264 + 269 ], "content_markdown": [ - 80 + 84 ], "cover_image_url": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "published_at": [ - 4670 + 4954 ], "slug": [ - 80 + 84 ], "status": [ - 80 + 84 ], "teaser": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "view_count": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "news_articles_sum_fields": { "author_steam_id": [ - 264 + 269 ], "view_count": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2994 + 3273 ], "_set": [ - 3003 + 3282 ], "where": [ - 2992 + 3271 ], "__typename": [ - 80 + 84 ] }, "news_articles_var_pop_fields": { "author_steam_id": [ - 31 + 32 ], "view_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "news_articles_var_samp_fields": { "author_steam_id": [ - 31 + 32 ], "view_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "news_articles_variance_fields": { "author_steam_id": [ - 31 + 32 ], "view_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notification_preferences": { "channel": [ - 80 + 84 ], "enabled": [ - 5 + 6 ], "key": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_aggregate": { "aggregate": [ - 3017 + 3296 ], "nodes": [ - 3015 + 3294 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_aggregate_fields": { "avg": [ - 3018 + 3297 ], "count": [ - 40, + 41, { "columns": [ - 3029, + 3308, "[notification_preferences_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3023 + 3302 ], "min": [ - 3024 + 3303 ], "stddev": [ - 3031 + 3310 ], "stddev_pop": [ - 3032 + 3311 ], "stddev_samp": [ - 3033 + 3312 ], "sum": [ - 3036 + 3315 ], "var_pop": [ - 3039 + 3318 ], "var_samp": [ - 3040 + 3319 ], "variance": [ - 3041 + 3320 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_bool_exp": { "_and": [ - 3019 + 3298 ], "_not": [ - 3019 + 3298 ], "_or": [ - 3019 + 3298 ], "channel": [ - 82 + 86 ], "enabled": [ - 6 + 7 ], "key": [ - 82 + 86 ], "steam_id": [ - 266 + 271 ], "updated_at": [ - 4671 + 4955 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_constraint": {}, "notification_preferences_inc_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_insert_input": { "channel": [ - 80 + 84 ], "enabled": [ - 5 + 6 ], "key": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_max_fields": { "channel": [ - 80 + 84 ], "key": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_min_fields": { "channel": [ - 80 + 84 ], "key": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3015 + 3294 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_on_conflict": { "constraint": [ - 3020 + 3299 ], "update_columns": [ - 3037 + 3316 ], "where": [ - 3019 + 3298 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_order_by": { "channel": [ - 3094 + 3373 ], "enabled": [ - 3094 + 3373 ], "key": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_pk_columns_input": { "channel": [ - 80 + 84 ], "key": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_select_column": {}, "notification_preferences_set_input": { "channel": [ - 80 + 84 ], "enabled": [ - 5 + 6 ], "key": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_stream_cursor_input": { "initial_value": [ - 3035 + 3314 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_stream_cursor_value_input": { "channel": [ - 80 + 84 ], "enabled": [ - 5 + 6 ], "key": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_update_column": {}, "notification_preferences_updates": { "_inc": [ - 3021 + 3300 ], "_set": [ - 3030 + 3309 ], "where": [ - 3019 + 3298 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notification_preferences_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notifications": { "actions": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "created_at": [ - 4670 + 4954 ], "data": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "deletable": [ - 5 + 6 ], "deleted_at": [ - 4670 + 4954 ], "entity_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "in_app": [ - 5 + 6 ], "is_read": [ - 5 + 6 ], "message": [ - 80 + 84 ], "player": [ - 4052 + 4331 ], "role": [ - 1178 + 1243 ], "steam_id": [ - 264 + 269 ], "title": [ - 80 + 84 ], "type": [ - 1138 + 1203 ], "__typename": [ - 80 + 84 ] }, "notifications_aggregate": { "aggregate": [ - 3048 + 3327 ], "nodes": [ - 3042 + 3321 ], "__typename": [ - 80 + 84 ] }, "notifications_aggregate_bool_exp": { "bool_and": [ - 3045 + 3324 ], "bool_or": [ - 3046 + 3325 ], "count": [ - 3047 + 3326 ], "__typename": [ - 80 + 84 ] }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 3071 + 3350 ], "distinct": [ - 5 + 6 ], "filter": [ - 3054 + 3333 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 3072 + 3351 ], "distinct": [ - 5 + 6 ], "filter": [ - 3054 + 3333 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 3070 + 3349 ], "distinct": [ - 5 + 6 ], "filter": [ - 3054 + 3333 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "notifications_aggregate_fields": { "avg": [ - 3052 + 3331 ], "count": [ - 40, + 41, { "columns": [ - 3070, + 3349, "[notifications_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3061 + 3340 ], "min": [ - 3063 + 3342 ], "stddev": [ - 3074 + 3353 ], "stddev_pop": [ - 3076 + 3355 ], "stddev_samp": [ - 3078 + 3357 ], "sum": [ - 3082 + 3361 ], "var_pop": [ - 3086 + 3365 ], "var_samp": [ - 3088 + 3367 ], "variance": [ - 3090 + 3369 ], "__typename": [ - 80 + 84 ] }, "notifications_aggregate_order_by": { "avg": [ - 3053 + 3332 ], "count": [ - 3094 + 3373 ], "max": [ - 3062 + 3341 ], "min": [ - 3064 + 3343 ], "stddev": [ - 3075 + 3354 ], "stddev_pop": [ - 3077 + 3356 ], "stddev_samp": [ - 3079 + 3358 ], "sum": [ - 3083 + 3362 ], "var_pop": [ - 3087 + 3366 ], "var_samp": [ - 3089 + 3368 ], "variance": [ - 3091 + 3370 ], "__typename": [ - 80 + 84 ] }, "notifications_append_input": { "actions": [ - 1930 + 2187 ], "data": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "notifications_arr_rel_insert_input": { "data": [ - 3060 + 3339 ], "on_conflict": [ - 3066 + 3345 ], "__typename": [ - 80 + 84 ] }, "notifications_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notifications_avg_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "notifications_bool_exp": { "_and": [ - 3054 + 3333 ], "_not": [ - 3054 + 3333 ], "_or": [ - 3054 + 3333 ], "actions": [ - 1932 + 2189 ], "created_at": [ - 4671 + 4955 ], "data": [ - 1932 + 2189 ], "deletable": [ - 6 + 7 ], "deleted_at": [ - 4671 + 4955 ], "entity_id": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "in_app": [ - 6 + 7 ], "is_read": [ - 6 + 7 ], "message": [ - 82 + 86 ], "player": [ - 4056 + 4335 ], "role": [ - 1179 + 1244 ], "steam_id": [ - 266 + 271 ], "title": [ - 82 + 86 ], "type": [ - 1139 + 1204 ], "__typename": [ - 80 + 84 ] }, "notifications_constraint": {}, "notifications_delete_at_path_input": { "actions": [ - 80 + 84 ], "data": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "notifications_delete_elem_input": { "actions": [ - 40 + 41 ], "data": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "notifications_delete_key_input": { "actions": [ - 80 + 84 ], "data": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "notifications_inc_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "notifications_insert_input": { "actions": [ - 1930 + 2187 ], "created_at": [ - 4670 + 4954 ], "data": [ - 1930 + 2187 ], "deletable": [ - 5 + 6 ], "deleted_at": [ - 4670 + 4954 ], "entity_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "in_app": [ - 5 + 6 ], "is_read": [ - 5 + 6 ], "message": [ - 80 + 84 ], "player": [ - 4063 + 4342 ], "role": [ - 1178 + 1243 ], "steam_id": [ - 264 + 269 ], "title": [ - 80 + 84 ], "type": [ - 1138 + 1203 ], "__typename": [ - 80 + 84 ] }, "notifications_max_fields": { "created_at": [ - 4670 + 4954 ], "deleted_at": [ - 4670 + 4954 ], "entity_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "title": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "notifications_max_order_by": { "created_at": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "entity_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "message": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "notifications_min_fields": { "created_at": [ - 4670 + 4954 ], "deleted_at": [ - 4670 + 4954 ], "entity_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "title": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "notifications_min_order_by": { "created_at": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "entity_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "message": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "notifications_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3042 + 3321 ], "__typename": [ - 80 + 84 ] }, "notifications_on_conflict": { "constraint": [ - 3055 + 3334 ], "update_columns": [ - 3084 + 3363 ], "where": [ - 3054 + 3333 ], "__typename": [ - 80 + 84 ] }, "notifications_order_by": { "actions": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "data": [ - 3094 + 3373 ], "deletable": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "entity_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "in_app": [ - 3094 + 3373 ], "is_read": [ - 3094 + 3373 ], "message": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "role": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "notifications_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "notifications_prepend_input": { "actions": [ - 1930 + 2187 ], "data": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "notifications_select_column": {}, @@ -58883,4207 +64169,4207 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1930 + 2187 ], "created_at": [ - 4670 + 4954 ], "data": [ - 1930 + 2187 ], "deletable": [ - 5 + 6 ], "deleted_at": [ - 4670 + 4954 ], "entity_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "in_app": [ - 5 + 6 ], "is_read": [ - 5 + 6 ], "message": [ - 80 + 84 ], "role": [ - 1178 + 1243 ], "steam_id": [ - 264 + 269 ], "title": [ - 80 + 84 ], "type": [ - 1138 + 1203 ], "__typename": [ - 80 + 84 ] }, "notifications_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notifications_stddev_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "notifications_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notifications_stddev_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "notifications_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notifications_stddev_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "notifications_stream_cursor_input": { "initial_value": [ - 3081 + 3360 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "notifications_stream_cursor_value_input": { "actions": [ - 1930 + 2187 ], "created_at": [ - 4670 + 4954 ], "data": [ - 1930 + 2187 ], "deletable": [ - 5 + 6 ], "deleted_at": [ - 4670 + 4954 ], "entity_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "in_app": [ - 5 + 6 ], "is_read": [ - 5 + 6 ], "message": [ - 80 + 84 ], "role": [ - 1178 + 1243 ], "steam_id": [ - 264 + 269 ], "title": [ - 80 + 84 ], "type": [ - 1138 + 1203 ], "__typename": [ - 80 + 84 ] }, "notifications_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "notifications_sum_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "notifications_update_column": {}, "notifications_updates": { "_append": [ - 3050 + 3329 ], "_delete_at_path": [ - 3056 + 3335 ], "_delete_elem": [ - 3057 + 3336 ], "_delete_key": [ - 3058 + 3337 ], "_inc": [ - 3059 + 3338 ], "_prepend": [ - 3069 + 3348 ], "_set": [ - 3073 + 3352 ], "where": [ - 3054 + 3333 ], "__typename": [ - 80 + 84 ] }, "notifications_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notifications_var_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "notifications_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notifications_var_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "notifications_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "notifications_variance_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 3092 + 3371 ], "_gt": [ - 3092 + 3371 ], "_gte": [ - 3092 + 3371 ], "_in": [ - 3092 + 3371 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 3092 + 3371 ], "_lte": [ - 3092 + 3371 ], "_neq": [ - 3092 + 3371 ], "_nin": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "order_by": {}, "pending_match_import_players": { "created_at": [ - 4670 + 4954 ], "pending_match_import": [ - 3136 + 3415 ], "player": [ - 4052 + 4331 ], "steam_id": [ - 264 + 269 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_aggregate": { "aggregate": [ - 3099 + 3378 ], "nodes": [ - 3095 + 3374 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 3098 + 3377 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 3116 + 3395 ], "distinct": [ - 5 + 6 ], "filter": [ - 3104 + 3383 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_aggregate_fields": { "avg": [ - 3102 + 3381 ], "count": [ - 40, + 41, { "columns": [ - 3116, + 3395, "[pending_match_import_players_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3108 + 3387 ], "min": [ - 3110 + 3389 ], "stddev": [ - 3118 + 3397 ], "stddev_pop": [ - 3120 + 3399 ], "stddev_samp": [ - 3122 + 3401 ], "sum": [ - 3126 + 3405 ], "var_pop": [ - 3130 + 3409 ], "var_samp": [ - 3132 + 3411 ], "variance": [ - 3134 + 3413 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 3103 + 3382 ], "count": [ - 3094 + 3373 ], "max": [ - 3109 + 3388 ], "min": [ - 3111 + 3390 ], "stddev": [ - 3119 + 3398 ], "stddev_pop": [ - 3121 + 3400 ], "stddev_samp": [ - 3123 + 3402 ], "sum": [ - 3127 + 3406 ], "var_pop": [ - 3131 + 3410 ], "var_samp": [ - 3133 + 3412 ], "variance": [ - 3135 + 3414 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 3107 + 3386 ], "on_conflict": [ - 3113 + 3392 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_avg_fields": { "steam_id": [ - 31 + 32 ], "valve_match_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 3094 + 3373 ], "valve_match_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_bool_exp": { "_and": [ - 3104 + 3383 ], "_not": [ - 3104 + 3383 ], "_or": [ - 3104 + 3383 ], "created_at": [ - 4671 + 4955 ], "pending_match_import": [ - 3140 + 3419 ], "player": [ - 4056 + 4335 ], "steam_id": [ - 266 + 271 ], "valve_match_id": [ - 3093 + 3372 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_constraint": {}, "pending_match_import_players_inc_input": { "steam_id": [ - 264 + 269 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_insert_input": { "created_at": [ - 4670 + 4954 ], "pending_match_import": [ - 3147 + 3426 ], "player": [ - 4063 + 4342 ], "steam_id": [ - 264 + 269 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_max_fields": { "created_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_max_order_by": { "created_at": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "valve_match_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_min_fields": { "created_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_min_order_by": { "created_at": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "valve_match_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3095 + 3374 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_on_conflict": { "constraint": [ - 3105 + 3384 ], "update_columns": [ - 3128 + 3407 ], "where": [ - 3104 + 3383 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_order_by": { "created_at": [ - 3094 + 3373 ], "pending_match_import": [ - 3149 + 3428 ], "player": [ - 4065 + 4344 ], "steam_id": [ - 3094 + 3373 ], "valve_match_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_pk_columns_input": { "steam_id": [ - 264 + 269 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_stddev_fields": { "steam_id": [ - 31 + 32 ], "valve_match_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 3094 + 3373 ], "valve_match_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "valve_match_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "valve_match_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "valve_match_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "valve_match_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 3125 + 3404 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_sum_fields": { "steam_id": [ - 264 + 269 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 3094 + 3373 ], "valve_match_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 3106 + 3385 ], "_set": [ - 3117 + 3396 ], "where": [ - 3104 + 3383 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_var_pop_fields": { "steam_id": [ - 31 + 32 ], "valve_match_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "valve_match_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_var_samp_fields": { "steam_id": [ - 31 + 32 ], "valve_match_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "valve_match_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_variance_fields": { "steam_id": [ - 31 + 32 ], "valve_match_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 3094 + 3373 ], "valve_match_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports": { "created_at": [ - 4670 + 4954 ], "demo_url": [ - 80 + 84 ], "error": [ - 80 + 84 ], "map_name": [ - 80 + 84 ], "match_start_time": [ - 4670 + 4954 ], "players": [ - 3095, + 3374, { "distinct_on": [ - 3116, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3114, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3383 ] } ], "players_aggregate": [ - 3096, + 3375, { "distinct_on": [ - 3116, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3114, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3383 ] } ], "share_code": [ - 80 + 84 ], "status": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_aggregate": { "aggregate": [ - 3138 + 3417 ], "nodes": [ - 3136 + 3415 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_aggregate_fields": { "avg": [ - 3139 + 3418 ], "count": [ - 40, + 41, { "columns": [ - 3151, + 3430, "[pending_match_imports_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3144 + 3423 ], "min": [ - 3145 + 3424 ], "stddev": [ - 3153 + 3432 ], "stddev_pop": [ - 3154 + 3433 ], "stddev_samp": [ - 3155 + 3434 ], "sum": [ - 3158 + 3437 ], "var_pop": [ - 3161 + 3440 ], "var_samp": [ - 3162 + 3441 ], "variance": [ - 3163 + 3442 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_avg_fields": { "valve_match_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_bool_exp": { "_and": [ - 3140 + 3419 ], "_not": [ - 3140 + 3419 ], "_or": [ - 3140 + 3419 ], "created_at": [ - 4671 + 4955 ], "demo_url": [ - 82 + 86 ], "error": [ - 82 + 86 ], "map_name": [ - 82 + 86 ], "match_start_time": [ - 4671 + 4955 ], "players": [ - 3104 + 3383 ], "players_aggregate": [ - 3097 + 3376 ], "share_code": [ - 82 + 86 ], "status": [ - 82 + 86 ], "updated_at": [ - 4671 + 4955 ], "valve_match_id": [ - 3093 + 3372 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_insert_input": { "created_at": [ - 4670 + 4954 ], "demo_url": [ - 80 + 84 ], "error": [ - 80 + 84 ], "map_name": [ - 80 + 84 ], "match_start_time": [ - 4670 + 4954 ], "players": [ - 3101 + 3380 ], "share_code": [ - 80 + 84 ], "status": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_max_fields": { "created_at": [ - 4670 + 4954 ], "demo_url": [ - 80 + 84 ], "error": [ - 80 + 84 ], "map_name": [ - 80 + 84 ], "match_start_time": [ - 4670 + 4954 ], "share_code": [ - 80 + 84 ], "status": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_min_fields": { "created_at": [ - 4670 + 4954 ], "demo_url": [ - 80 + 84 ], "error": [ - 80 + 84 ], "map_name": [ - 80 + 84 ], "match_start_time": [ - 4670 + 4954 ], "share_code": [ - 80 + 84 ], "status": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3136 + 3415 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 3143 + 3422 ], "on_conflict": [ - 3148 + 3427 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_on_conflict": { "constraint": [ - 3141 + 3420 ], "update_columns": [ - 3159 + 3438 ], "where": [ - 3140 + 3419 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_order_by": { "created_at": [ - 3094 + 3373 ], "demo_url": [ - 3094 + 3373 ], "error": [ - 3094 + 3373 ], "map_name": [ - 3094 + 3373 ], "match_start_time": [ - 3094 + 3373 ], "players_aggregate": [ - 3100 + 3379 ], "share_code": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "valve_match_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4670 + 4954 ], "demo_url": [ - 80 + 84 ], "error": [ - 80 + 84 ], "map_name": [ - 80 + 84 ], "match_start_time": [ - 4670 + 4954 ], "share_code": [ - 80 + 84 ], "status": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_stddev_fields": { "valve_match_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_stddev_pop_fields": { "valve_match_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_stddev_samp_fields": { "valve_match_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 3157 + 3436 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "demo_url": [ - 80 + 84 ], "error": [ - 80 + 84 ], "map_name": [ - 80 + 84 ], "match_start_time": [ - 4670 + 4954 ], "share_code": [ - 80 + 84 ], "status": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 3142 + 3421 ], "_set": [ - 3152 + 3431 ], "where": [ - 3140 + 3419 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_var_pop_fields": { "valve_match_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_var_samp_fields": { "valve_match_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "pending_match_imports_variance_fields": { "valve_match_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo": { "attacker": [ - 4052 + 4331 ], "attacker_steam_id": [ - 264 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 3166 + 3445 ], "nodes": [ - 3164 + 3443 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 3167 + 3446 ], "count": [ - 40, + 41, { "columns": [ - 3178, + 3457, "[player_aim_stats_demo_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3172 + 3451 ], "min": [ - 3173 + 3452 ], "stddev": [ - 3180 + 3459 ], "stddev_pop": [ - 3181 + 3460 ], "stddev_samp": [ - 3182 + 3461 ], "sum": [ - 3185 + 3464 ], "var_pop": [ - 3188 + 3467 ], "var_samp": [ - 3189 + 3468 ], "variance": [ - 3190 + 3469 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_avg_fields": { "attacker_steam_id": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "crosshair_angle_count": [ - 31 + 32 ], "crosshair_angle_sum_deg": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "time_to_damage_count": [ - 31 + 32 ], "time_to_damage_sum_s": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_bool_exp": { "_and": [ - 3168 + 3447 ], "_not": [ - 3168 + 3447 ], "_or": [ - 3168 + 3447 ], "attacker": [ - 4056 + 4335 ], "attacker_steam_id": [ - 266 + 271 ], "counter_strafe_eligible_shots": [ - 41 + 42 ], "counter_strafed_shots": [ - 41 + 42 ], "crosshair_angle_count": [ - 41 + 42 ], "crosshair_angle_sum_deg": [ - 3093 + 3372 ], "first_bullet_hits": [ - 41 + 42 ], "first_bullet_shots": [ - 41 + 42 ], "headshot_hits": [ - 41 + 42 ], "hits": [ - 41 + 42 ], "hits_at_spotted": [ - 41 + 42 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "non_awp_hits": [ - 41 + 42 ], "on_target_frames": [ - 41 + 42 ], "shots_at_spotted": [ - 41 + 42 ], "spray_hits": [ - 41 + 42 ], "spray_shots": [ - 41 + 42 ], "time_to_damage_count": [ - 41 + 42 ], "time_to_damage_sum_s": [ - 3093 + 3372 ], "total_engagement_frames": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_constraint": {}, "player_aim_stats_demo_inc_input": { "attacker_steam_id": [ - 264 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_insert_input": { "attacker": [ - 4063 + 4342 ], "attacker_steam_id": [ - 264 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_max_fields": { "attacker_steam_id": [ - 264 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_min_fields": { "attacker_steam_id": [ - 264 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3164 + 3443 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 3169 + 3448 ], "update_columns": [ - 3186 + 3465 ], "where": [ - 3168 + 3447 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_order_by": { "attacker": [ - 4065 + 4344 ], "attacker_steam_id": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "crosshair_angle_count": [ - 3094 + 3373 ], "crosshair_angle_sum_deg": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "time_to_damage_count": [ - 3094 + 3373 ], "time_to_damage_sum_s": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_pk_columns_input": { "attacker_steam_id": [ - 264 + 269 ], "match_map_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_select_column": {}, "player_aim_stats_demo_set_input": { "attacker_steam_id": [ - 264 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_stddev_fields": { "attacker_steam_id": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "crosshair_angle_count": [ - 31 + 32 ], "crosshair_angle_sum_deg": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "time_to_damage_count": [ - 31 + 32 ], "time_to_damage_sum_s": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_stddev_pop_fields": { "attacker_steam_id": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "crosshair_angle_count": [ - 31 + 32 ], "crosshair_angle_sum_deg": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "time_to_damage_count": [ - 31 + 32 ], "time_to_damage_sum_s": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_stddev_samp_fields": { "attacker_steam_id": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "crosshair_angle_count": [ - 31 + 32 ], "crosshair_angle_sum_deg": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "time_to_damage_count": [ - 31 + 32 ], "time_to_damage_sum_s": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 3184 + 3463 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_stream_cursor_value_input": { "attacker_steam_id": [ - 264 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_sum_fields": { "attacker_steam_id": [ - 264 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 3170 + 3449 ], "_set": [ - 3179 + 3458 ], "where": [ - 3168 + 3447 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_var_pop_fields": { "attacker_steam_id": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "crosshair_angle_count": [ - 31 + 32 ], "crosshair_angle_sum_deg": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "time_to_damage_count": [ - 31 + 32 ], "time_to_damage_sum_s": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_var_samp_fields": { "attacker_steam_id": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "crosshair_angle_count": [ - 31 + 32 ], "crosshair_angle_sum_deg": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "time_to_damage_count": [ - 31 + 32 ], "time_to_damage_sum_s": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_stats_demo_variance_fields": { "attacker_steam_id": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "crosshair_angle_count": [ - 31 + 32 ], "crosshair_angle_sum_deg": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "time_to_damage_count": [ - 31 + 32 ], "time_to_damage_sum_s": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4052 + 4331 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "weapon_class": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 3195 + 3474 ], "nodes": [ - 3191 + 3470 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 3194 + 3473 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 3212 + 3491 ], "distinct": [ - 5 + 6 ], "filter": [ - 3200 + 3479 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 3198 + 3477 ], "count": [ - 40, + 41, { "columns": [ - 3212, + 3491, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3204 + 3483 ], "min": [ - 3206 + 3485 ], "stddev": [ - 3214 + 3493 ], "stddev_pop": [ - 3216 + 3495 ], "stddev_samp": [ - 3218 + 3497 ], "sum": [ - 3222 + 3501 ], "var_pop": [ - 3226 + 3505 ], "var_samp": [ - 3228 + 3507 ], "variance": [ - 3230 + 3509 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 3199 + 3478 ], "count": [ - 3094 + 3373 ], "max": [ - 3205 + 3484 ], "min": [ - 3207 + 3486 ], "stddev": [ - 3215 + 3494 ], "stddev_pop": [ - 3217 + 3496 ], "stddev_samp": [ - 3219 + 3498 ], "sum": [ - 3223 + 3502 ], "var_pop": [ - 3227 + 3506 ], "var_samp": [ - 3229 + 3508 ], "variance": [ - 3231 + 3510 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 3203 + 3482 ], "on_conflict": [ - 3209 + 3488 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_avg_fields": { "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_spotted": [ - 31 + 32 ], "shots": [ - 31 + 32 ], "shots_spotted": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 3200 + 3479 ], "_not": [ - 3200 + 3479 ], "_or": [ - 3200 + 3479 ], "first_bullet_hits": [ - 41 + 42 ], "first_bullet_shots": [ - 41 + 42 ], "hits": [ - 41 + 42 ], "hits_spotted": [ - 41 + 42 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "player": [ - 4056 + 4335 ], "shots": [ - 41 + 42 ], "shots_spotted": [ - 41 + 42 ], "steam_id": [ - 266 + 271 ], "weapon_class": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_constraint": {}, "player_aim_weapon_stats_inc_input": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_insert_input": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4063 + 4342 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "weapon_class": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_max_fields": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "weapon_class": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "weapon_class": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_min_fields": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "weapon_class": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "weapon_class": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3191 + 3470 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 3201 + 3480 ], "update_columns": [ - 3224 + 3503 ], "where": [ - 3200 + 3479 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "weapon_class": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "weapon_class": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_select_column": {}, "player_aim_weapon_stats_set_input": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "weapon_class": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_stddev_fields": { "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_spotted": [ - 31 + 32 ], "shots": [ - 31 + 32 ], "shots_spotted": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_stddev_pop_fields": { "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_spotted": [ - 31 + 32 ], "shots": [ - 31 + 32 ], "shots_spotted": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_stddev_samp_fields": { "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_spotted": [ - 31 + 32 ], "shots": [ - 31 + 32 ], "shots_spotted": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 3221 + 3500 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_stream_cursor_value_input": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "weapon_class": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_sum_fields": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 3202 + 3481 ], "_set": [ - 3213 + 3492 ], "where": [ - 3200 + 3479 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_var_pop_fields": { "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_spotted": [ - 31 + 32 ], "shots": [ - 31 + 32 ], "shots_spotted": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_var_samp_fields": { "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_spotted": [ - 31 + 32 ], "shots": [ - 31 + 32 ], "shots_spotted": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_variance_fields": { "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_spotted": [ - 31 + 32 ], "shots": [ - 31 + 32 ], "shots_spotted": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_assists": { "attacked_player": [ - 4052 + 4331 ], "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "deleted_at": [ - 4670 + 4954 ], "flash": [ - 5 + 6 ], "is_team_assist": [ - 5 + 6 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4052 + 4331 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_assists_aggregate": { "aggregate": [ - 3238 + 3517 ], "nodes": [ - 3232 + 3511 ], "__typename": [ - 80 + 84 ] }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 3235 + 3514 ], "bool_or": [ - 3236 + 3515 ], "count": [ - 3237 + 3516 ], "__typename": [ - 80 + 84 ] }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 3256 + 3535 ], "distinct": [ - 5 + 6 ], "filter": [ - 3243 + 3522 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 3257 + 3536 ], "distinct": [ - 5 + 6 ], "filter": [ - 3243 + 3522 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 3255 + 3534 ], "distinct": [ - 5 + 6 ], "filter": [ - 3243 + 3522 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_assists_aggregate_fields": { "avg": [ - 3241 + 3520 ], "count": [ - 40, + 41, { "columns": [ - 3255, + 3534, "[player_assists_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3247 + 3526 ], "min": [ - 3249 + 3528 ], "stddev": [ - 3259 + 3538 ], "stddev_pop": [ - 3261 + 3540 ], "stddev_samp": [ - 3263 + 3542 ], "sum": [ - 3267 + 3546 ], "var_pop": [ - 3271 + 3550 ], "var_samp": [ - 3273 + 3552 ], "variance": [ - 3275 + 3554 ], "__typename": [ - 80 + 84 ] }, "player_assists_aggregate_order_by": { "avg": [ - 3242 + 3521 ], "count": [ - 3094 + 3373 ], "max": [ - 3248 + 3527 ], "min": [ - 3250 + 3529 ], "stddev": [ - 3260 + 3539 ], "stddev_pop": [ - 3262 + 3541 ], "stddev_samp": [ - 3264 + 3543 ], "sum": [ - 3268 + 3547 ], "var_pop": [ - 3272 + 3551 ], "var_samp": [ - 3274 + 3553 ], "variance": [ - 3276 + 3555 ], "__typename": [ - 80 + 84 ] }, "player_assists_arr_rel_insert_input": { "data": [ - 3246 + 3525 ], "on_conflict": [ - 3252 + 3531 ], "__typename": [ - 80 + 84 ] }, "player_assists_avg_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_assists_bool_exp": { "_and": [ - 3243 + 3522 ], "_not": [ - 3243 + 3522 ], "_or": [ - 3243 + 3522 ], "attacked_player": [ - 4056 + 4335 ], "attacked_steam_id": [ - 266 + 271 ], "attacked_team": [ - 82 + 86 ], "attacker_steam_id": [ - 266 + 271 ], "attacker_team": [ - 82 + 86 ], "deleted_at": [ - 4671 + 4955 ], "flash": [ - 6 + 7 ], "is_team_assist": [ - 6 + 7 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "player": [ - 4056 + 4335 ], "round": [ - 41 + 42 ], "time": [ - 4671 + 4955 ], "__typename": [ - 80 + 84 ] }, "player_assists_constraint": {}, "player_assists_inc_input": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_assists_insert_input": { "attacked_player": [ - 4063 + 4342 ], "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "deleted_at": [ - 4670 + 4954 ], "flash": [ - 5 + 6 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4063 + 4342 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_assists_max_fields": { "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "deleted_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_assists_max_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacked_team": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "attacker_team": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_assists_min_fields": { "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "deleted_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_assists_min_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacked_team": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "attacker_team": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_assists_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3232 + 3511 ], "__typename": [ - 80 + 84 ] }, "player_assists_on_conflict": { "constraint": [ - 3244 + 3523 ], "update_columns": [ - 3269 + 3548 ], "where": [ - 3243 + 3522 ], "__typename": [ - 80 + 84 ] }, "player_assists_order_by": { "attacked_player": [ - 4065 + 4344 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacked_team": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "attacker_team": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "flash": [ - 3094 + 3373 ], "is_team_assist": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_assists_pk_columns_input": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "match_map_id": [ - 5170 + 5454 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_assists_select_column": {}, @@ -63091,5230 +68377,5230 @@ export default { "player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_assists_set_input": { "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "deleted_at": [ - 4670 + 4954 ], "flash": [ - 5 + 6 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_assists_stddev_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_assists_stddev_pop_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_assists_stddev_samp_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_assists_stream_cursor_input": { "initial_value": [ - 3266 + 3545 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_assists_stream_cursor_value_input": { "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "deleted_at": [ - 4670 + 4954 ], "flash": [ - 5 + 6 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_assists_sum_fields": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 3245 + 3524 ], "_set": [ - 3258 + 3537 ], "where": [ - 3243 + 3522 ], "__typename": [ - 80 + 84 ] }, "player_assists_var_pop_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_assists_var_samp_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_assists_variance_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v": { "accuracy": [ - 3092 + 3371 ], "accuracy_spotted": [ - 3092 + 3371 ], "counter_strafe_pct": [ - 3092 + 3371 ], "crosshair_deg": [ - 3092 + 3371 ], "enemy_blind_pr": [ - 3092 + 3371 ], "flash_assists_pr": [ - 3092 + 3371 ], "hs_pct": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "maps": [ - 40 + 41 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "survival_pct": [ - 3092 + 3371 ], "time_to_damage_s": [ - 3092 + 3371 ], "traded_death_pct": [ - 3092 + 3371 ], "util_efficiency": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_aggregate": { "aggregate": [ - 3279 + 3558 ], "nodes": [ - 3277 + 3556 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_aggregate_fields": { "avg": [ - 3280 + 3559 ], "count": [ - 40, + 41, { "columns": [ - 3285, + 3564, "[player_career_stats_v_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3282 + 3561 ], "min": [ - 3283 + 3562 ], "stddev": [ - 3286 + 3565 ], "stddev_pop": [ - 3287 + 3566 ], "stddev_samp": [ - 3288 + 3567 ], "sum": [ - 3291 + 3570 ], "var_pop": [ - 3292 + 3571 ], "var_samp": [ - 3293 + 3572 ], "variance": [ - 3294 + 3573 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_avg_fields": { "accuracy": [ - 31 + 32 ], "accuracy_spotted": [ - 31 + 32 ], "counter_strafe_pct": [ - 31 + 32 ], "crosshair_deg": [ - 31 + 32 ], "enemy_blind_pr": [ - 31 + 32 ], "flash_assists_pr": [ - 31 + 32 ], "hs_pct": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "maps": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_pct": [ - 31 + 32 ], "time_to_damage_s": [ - 31 + 32 ], "traded_death_pct": [ - 31 + 32 ], "util_efficiency": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_bool_exp": { "_and": [ - 3281 + 3560 ], "_not": [ - 3281 + 3560 ], "_or": [ - 3281 + 3560 ], "accuracy": [ - 3093 + 3372 ], "accuracy_spotted": [ - 3093 + 3372 ], "counter_strafe_pct": [ - 3093 + 3372 ], "crosshair_deg": [ - 3093 + 3372 ], "enemy_blind_pr": [ - 3093 + 3372 ], "flash_assists_pr": [ - 3093 + 3372 ], "hs_pct": [ - 3093 + 3372 ], "kast_pct": [ - 3093 + 3372 ], "maps": [ - 41 + 42 ], "premier_rank": [ - 41 + 42 ], "rounds": [ - 41 + 42 ], "steam_id": [ - 266 + 271 ], "survival_pct": [ - 3093 + 3372 ], "time_to_damage_s": [ - 3093 + 3372 ], "traded_death_pct": [ - 3093 + 3372 ], "util_efficiency": [ - 3093 + 3372 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_max_fields": { "accuracy": [ - 3092 + 3371 ], "accuracy_spotted": [ - 3092 + 3371 ], "counter_strafe_pct": [ - 3092 + 3371 ], "crosshair_deg": [ - 3092 + 3371 ], "enemy_blind_pr": [ - 3092 + 3371 ], "flash_assists_pr": [ - 3092 + 3371 ], "hs_pct": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "maps": [ - 40 + 41 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "survival_pct": [ - 3092 + 3371 ], "time_to_damage_s": [ - 3092 + 3371 ], "traded_death_pct": [ - 3092 + 3371 ], "util_efficiency": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_min_fields": { "accuracy": [ - 3092 + 3371 ], "accuracy_spotted": [ - 3092 + 3371 ], "counter_strafe_pct": [ - 3092 + 3371 ], "crosshair_deg": [ - 3092 + 3371 ], "enemy_blind_pr": [ - 3092 + 3371 ], "flash_assists_pr": [ - 3092 + 3371 ], "hs_pct": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "maps": [ - 40 + 41 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "survival_pct": [ - 3092 + 3371 ], "time_to_damage_s": [ - 3092 + 3371 ], "traded_death_pct": [ - 3092 + 3371 ], "util_efficiency": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_order_by": { "accuracy": [ - 3094 + 3373 ], "accuracy_spotted": [ - 3094 + 3373 ], "counter_strafe_pct": [ - 3094 + 3373 ], "crosshair_deg": [ - 3094 + 3373 ], "enemy_blind_pr": [ - 3094 + 3373 ], "flash_assists_pr": [ - 3094 + 3373 ], "hs_pct": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "maps": [ - 3094 + 3373 ], "premier_rank": [ - 3094 + 3373 ], "rounds": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "survival_pct": [ - 3094 + 3373 ], "time_to_damage_s": [ - 3094 + 3373 ], "traded_death_pct": [ - 3094 + 3373 ], "util_efficiency": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_select_column": {}, "player_career_stats_v_stddev_fields": { "accuracy": [ - 31 + 32 ], "accuracy_spotted": [ - 31 + 32 ], "counter_strafe_pct": [ - 31 + 32 ], "crosshair_deg": [ - 31 + 32 ], "enemy_blind_pr": [ - 31 + 32 ], "flash_assists_pr": [ - 31 + 32 ], "hs_pct": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "maps": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_pct": [ - 31 + 32 ], "time_to_damage_s": [ - 31 + 32 ], "traded_death_pct": [ - 31 + 32 ], "util_efficiency": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_stddev_pop_fields": { "accuracy": [ - 31 + 32 ], "accuracy_spotted": [ - 31 + 32 ], "counter_strafe_pct": [ - 31 + 32 ], "crosshair_deg": [ - 31 + 32 ], "enemy_blind_pr": [ - 31 + 32 ], "flash_assists_pr": [ - 31 + 32 ], "hs_pct": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "maps": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_pct": [ - 31 + 32 ], "time_to_damage_s": [ - 31 + 32 ], "traded_death_pct": [ - 31 + 32 ], "util_efficiency": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_stddev_samp_fields": { "accuracy": [ - 31 + 32 ], "accuracy_spotted": [ - 31 + 32 ], "counter_strafe_pct": [ - 31 + 32 ], "crosshair_deg": [ - 31 + 32 ], "enemy_blind_pr": [ - 31 + 32 ], "flash_assists_pr": [ - 31 + 32 ], "hs_pct": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "maps": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_pct": [ - 31 + 32 ], "time_to_damage_s": [ - 31 + 32 ], "traded_death_pct": [ - 31 + 32 ], "util_efficiency": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 3290 + 3569 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 3092 + 3371 ], "accuracy_spotted": [ - 3092 + 3371 ], "counter_strafe_pct": [ - 3092 + 3371 ], "crosshair_deg": [ - 3092 + 3371 ], "enemy_blind_pr": [ - 3092 + 3371 ], "flash_assists_pr": [ - 3092 + 3371 ], "hs_pct": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "maps": [ - 40 + 41 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "survival_pct": [ - 3092 + 3371 ], "time_to_damage_s": [ - 3092 + 3371 ], "traded_death_pct": [ - 3092 + 3371 ], "util_efficiency": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_sum_fields": { "accuracy": [ - 3092 + 3371 ], "accuracy_spotted": [ - 3092 + 3371 ], "counter_strafe_pct": [ - 3092 + 3371 ], "crosshair_deg": [ - 3092 + 3371 ], "enemy_blind_pr": [ - 3092 + 3371 ], "flash_assists_pr": [ - 3092 + 3371 ], "hs_pct": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "maps": [ - 40 + 41 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "survival_pct": [ - 3092 + 3371 ], "time_to_damage_s": [ - 3092 + 3371 ], "traded_death_pct": [ - 3092 + 3371 ], "util_efficiency": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_var_pop_fields": { "accuracy": [ - 31 + 32 ], "accuracy_spotted": [ - 31 + 32 ], "counter_strafe_pct": [ - 31 + 32 ], "crosshair_deg": [ - 31 + 32 ], "enemy_blind_pr": [ - 31 + 32 ], "flash_assists_pr": [ - 31 + 32 ], "hs_pct": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "maps": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_pct": [ - 31 + 32 ], "time_to_damage_s": [ - 31 + 32 ], "traded_death_pct": [ - 31 + 32 ], "util_efficiency": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_var_samp_fields": { "accuracy": [ - 31 + 32 ], "accuracy_spotted": [ - 31 + 32 ], "counter_strafe_pct": [ - 31 + 32 ], "crosshair_deg": [ - 31 + 32 ], "enemy_blind_pr": [ - 31 + 32 ], "flash_assists_pr": [ - 31 + 32 ], "hs_pct": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "maps": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_pct": [ - 31 + 32 ], "time_to_damage_s": [ - 31 + 32 ], "traded_death_pct": [ - 31 + 32 ], "util_efficiency": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_career_stats_v_variance_fields": { "accuracy": [ - 31 + 32 ], "accuracy_spotted": [ - 31 + 32 ], "counter_strafe_pct": [ - 31 + 32 ], "crosshair_deg": [ - 31 + 32 ], "enemy_blind_pr": [ - 31 + 32 ], "flash_assists_pr": [ - 31 + 32 ], "hs_pct": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "maps": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_pct": [ - 31 + 32 ], "time_to_damage_s": [ - 31 + 32 ], "traded_death_pct": [ - 31 + 32 ], "util_efficiency": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_damages": { "armor": [ - 40 + 41 ], "attacked_location": [ - 80 + 84 ], "attacked_location_coordinates": [ - 80 + 84 ], "attacked_player": [ - 4052 + 4331 ], "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_location": [ - 80 + 84 ], "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "deleted_at": [ - 4670 + 4954 ], "health": [ - 40 + 41 ], "hitgroup": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4052 + 4331 ], "round": [ - 3092 + 3371 ], "team_damage": [ - 5 + 6 ], "time": [ - 4670 + 4954 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_damages_aggregate": { "aggregate": [ - 3299 + 3578 ], "nodes": [ - 3295 + 3574 ], "__typename": [ - 80 + 84 ] }, "player_damages_aggregate_bool_exp": { "count": [ - 3298 + 3577 ], "__typename": [ - 80 + 84 ] }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 3316 + 3595 ], "distinct": [ - 5 + 6 ], "filter": [ - 3304 + 3583 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_damages_aggregate_fields": { "avg": [ - 3302 + 3581 ], "count": [ - 40, + 41, { "columns": [ - 3316, + 3595, "[player_damages_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3308 + 3587 ], "min": [ - 3310 + 3589 ], "stddev": [ - 3318 + 3597 ], "stddev_pop": [ - 3320 + 3599 ], "stddev_samp": [ - 3322 + 3601 ], "sum": [ - 3326 + 3605 ], "var_pop": [ - 3330 + 3609 ], "var_samp": [ - 3332 + 3611 ], "variance": [ - 3334 + 3613 ], "__typename": [ - 80 + 84 ] }, "player_damages_aggregate_order_by": { "avg": [ - 3303 + 3582 ], "count": [ - 3094 + 3373 ], "max": [ - 3309 + 3588 ], "min": [ - 3311 + 3590 ], "stddev": [ - 3319 + 3598 ], "stddev_pop": [ - 3321 + 3600 ], "stddev_samp": [ - 3323 + 3602 ], "sum": [ - 3327 + 3606 ], "var_pop": [ - 3331 + 3610 ], "var_samp": [ - 3333 + 3612 ], "variance": [ - 3335 + 3614 ], "__typename": [ - 80 + 84 ] }, "player_damages_arr_rel_insert_input": { "data": [ - 3307 + 3586 ], "on_conflict": [ - 3313 + 3592 ], "__typename": [ - 80 + 84 ] }, "player_damages_avg_fields": { "armor": [ - 31 + 32 ], "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_armor": [ - 31 + 32 ], "health": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_damages_avg_order_by": { "armor": [ - 3094 + 3373 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_armor": [ - 3094 + 3373 ], "health": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_damages_bool_exp": { "_and": [ - 3304 + 3583 ], "_not": [ - 3304 + 3583 ], "_or": [ - 3304 + 3583 ], "armor": [ - 41 + 42 ], "attacked_location": [ - 82 + 86 ], "attacked_location_coordinates": [ - 82 + 86 ], "attacked_player": [ - 4056 + 4335 ], "attacked_steam_id": [ - 266 + 271 ], "attacked_team": [ - 82 + 86 ], "attacker_location": [ - 82 + 86 ], "attacker_location_coordinates": [ - 82 + 86 ], "attacker_steam_id": [ - 266 + 271 ], "attacker_team": [ - 82 + 86 ], "damage": [ - 41 + 42 ], "damage_armor": [ - 41 + 42 ], "deleted_at": [ - 4671 + 4955 ], "health": [ - 41 + 42 ], "hitgroup": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "player": [ - 4056 + 4335 ], "round": [ - 3093 + 3372 ], "team_damage": [ - 6 + 7 ], "time": [ - 4671 + 4955 ], "with": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "player_damages_constraint": {}, "player_damages_inc_input": { "armor": [ - 40 + 41 ], "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "health": [ - 40 + 41 ], "round": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "player_damages_insert_input": { "armor": [ - 40 + 41 ], "attacked_location": [ - 80 + 84 ], "attacked_location_coordinates": [ - 80 + 84 ], "attacked_player": [ - 4063 + 4342 ], "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_location": [ - 80 + 84 ], "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "deleted_at": [ - 4670 + 4954 ], "health": [ - 40 + 41 ], "hitgroup": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4063 + 4342 ], "round": [ - 3092 + 3371 ], "time": [ - 4670 + 4954 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_damages_max_fields": { "armor": [ - 40 + 41 ], "attacked_location": [ - 80 + 84 ], "attacked_location_coordinates": [ - 80 + 84 ], "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_location": [ - 80 + 84 ], "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "deleted_at": [ - 4670 + 4954 ], "health": [ - 40 + 41 ], "hitgroup": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 3092 + 3371 ], "time": [ - 4670 + 4954 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_damages_max_order_by": { "armor": [ - 3094 + 3373 ], "attacked_location": [ - 3094 + 3373 ], "attacked_location_coordinates": [ - 3094 + 3373 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacked_team": [ - 3094 + 3373 ], "attacker_location": [ - 3094 + 3373 ], "attacker_location_coordinates": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "attacker_team": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_armor": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "health": [ - 3094 + 3373 ], "hitgroup": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "with": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_damages_min_fields": { "armor": [ - 40 + 41 ], "attacked_location": [ - 80 + 84 ], "attacked_location_coordinates": [ - 80 + 84 ], "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_location": [ - 80 + 84 ], "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "deleted_at": [ - 4670 + 4954 ], "health": [ - 40 + 41 ], "hitgroup": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 3092 + 3371 ], "time": [ - 4670 + 4954 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_damages_min_order_by": { "armor": [ - 3094 + 3373 ], "attacked_location": [ - 3094 + 3373 ], "attacked_location_coordinates": [ - 3094 + 3373 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacked_team": [ - 3094 + 3373 ], "attacker_location": [ - 3094 + 3373 ], "attacker_location_coordinates": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "attacker_team": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_armor": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "health": [ - 3094 + 3373 ], "hitgroup": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "with": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_damages_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3295 + 3574 ], "__typename": [ - 80 + 84 ] }, "player_damages_on_conflict": { "constraint": [ - 3305 + 3584 ], "update_columns": [ - 3328 + 3607 ], "where": [ - 3304 + 3583 ], "__typename": [ - 80 + 84 ] }, "player_damages_order_by": { "armor": [ - 3094 + 3373 ], "attacked_location": [ - 3094 + 3373 ], "attacked_location_coordinates": [ - 3094 + 3373 ], "attacked_player": [ - 4065 + 4344 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacked_team": [ - 3094 + 3373 ], "attacker_location": [ - 3094 + 3373 ], "attacker_location_coordinates": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "attacker_team": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_armor": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "health": [ - 3094 + 3373 ], "hitgroup": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "round": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "with": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_damages_pk_columns_input": { "id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_damages_select_column": {}, "player_damages_set_input": { "armor": [ - 40 + 41 ], "attacked_location": [ - 80 + 84 ], "attacked_location_coordinates": [ - 80 + 84 ], "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_location": [ - 80 + 84 ], "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "deleted_at": [ - 4670 + 4954 ], "health": [ - 40 + 41 ], "hitgroup": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 3092 + 3371 ], "time": [ - 4670 + 4954 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_damages_stddev_fields": { "armor": [ - 31 + 32 ], "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_armor": [ - 31 + 32 ], "health": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_damages_stddev_order_by": { "armor": [ - 3094 + 3373 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_armor": [ - 3094 + 3373 ], "health": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_damages_stddev_pop_fields": { "armor": [ - 31 + 32 ], "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_armor": [ - 31 + 32 ], "health": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_damages_stddev_pop_order_by": { "armor": [ - 3094 + 3373 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_armor": [ - 3094 + 3373 ], "health": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_damages_stddev_samp_fields": { "armor": [ - 31 + 32 ], "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_armor": [ - 31 + 32 ], "health": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_damages_stddev_samp_order_by": { "armor": [ - 3094 + 3373 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_armor": [ - 3094 + 3373 ], "health": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_damages_stream_cursor_input": { "initial_value": [ - 3325 + 3604 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_damages_stream_cursor_value_input": { "armor": [ - 40 + 41 ], "attacked_location": [ - 80 + 84 ], "attacked_location_coordinates": [ - 80 + 84 ], "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_location": [ - 80 + 84 ], "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "deleted_at": [ - 4670 + 4954 ], "health": [ - 40 + 41 ], "hitgroup": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 3092 + 3371 ], "time": [ - 4670 + 4954 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_damages_sum_fields": { "armor": [ - 40 + 41 ], "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "health": [ - 40 + 41 ], "round": [ - 3092 + 3371 ], "__typename": [ - 80 + 84 ] }, "player_damages_sum_order_by": { "armor": [ - 3094 + 3373 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_armor": [ - 3094 + 3373 ], "health": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 3306 + 3585 ], "_set": [ - 3317 + 3596 ], "where": [ - 3304 + 3583 ], "__typename": [ - 80 + 84 ] }, "player_damages_var_pop_fields": { "armor": [ - 31 + 32 ], "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_armor": [ - 31 + 32 ], "health": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_damages_var_pop_order_by": { "armor": [ - 3094 + 3373 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_armor": [ - 3094 + 3373 ], "health": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_damages_var_samp_fields": { "armor": [ - 31 + 32 ], "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_armor": [ - 31 + 32 ], "health": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_damages_var_samp_order_by": { "armor": [ - 3094 + 3373 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_armor": [ - 3094 + 3373 ], "health": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_damages_variance_fields": { "armor": [ - 31 + 32 ], "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_armor": [ - 31 + 32 ], "health": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_damages_variance_order_by": { "armor": [ - 3094 + 3373 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_armor": [ - 3094 + 3373 ], "health": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_elo": { "actual_score": [ - 1777 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3092 + 3371 ], "created_at": [ - 4670 + 4954 ], "current": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1777 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1777 + 1842 ], "impact": [ - 3092 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "opponent_team_elo_avg": [ - 1777 + 1842 ], "performance_multiplier": [ - 1777 + 1842 ], "player": [ - 4052 + 4331 ], "player_team_elo_avg": [ - 1777 + 1842 ], "rating_for_expected": [ - 1777 + 1842 ], "season": [ - 4138 + 4417 ], "season_id": [ - 5170 + 5454 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_avg_kda": [ - 1777 + 1842 ], "type": [ - 1117 + 1182 ], "__typename": [ - 80 + 84 ] }, "player_elo_aggregate": { "aggregate": [ - 3338 + 3617 ], "nodes": [ - 3336 + 3615 ], "__typename": [ - 80 + 84 ] }, "player_elo_aggregate_fields": { "avg": [ - 3339 + 3618 ], "count": [ - 40, + 41, { "columns": [ - 3350, + 3629, "[player_elo_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3344 + 3623 ], "min": [ - 3345 + 3624 ], "stddev": [ - 3352 + 3631 ], "stddev_pop": [ - 3353 + 3632 ], "stddev_samp": [ - 3354 + 3633 ], "sum": [ - 3357 + 3636 ], "var_pop": [ - 3360 + 3639 ], "var_samp": [ - 3361 + 3640 ], "variance": [ - 3362 + 3641 ], "__typename": [ - 80 + 84 ] }, "player_elo_avg_fields": { "actual_score": [ - 31 + 32 ], "assists": [ - 31 + 32 ], "change": [ - 31 + 32 ], "current": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_percent": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "expected_score": [ - 31 + 32 ], "impact": [ - 31 + 32 ], "k_factor": [ - 31 + 32 ], "kda": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "map_losses": [ - 31 + 32 ], "map_wins": [ - 31 + 32 ], "opponent_team_elo_avg": [ - 31 + 32 ], "performance_multiplier": [ - 31 + 32 ], "player_team_elo_avg": [ - 31 + 32 ], "rating_for_expected": [ - 31 + 32 ], "series_multiplier": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_avg_kda": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_elo_bool_exp": { "_and": [ - 3340 + 3619 ], "_not": [ - 3340 + 3619 ], "_or": [ - 3340 + 3619 ], "actual_score": [ - 1778 + 1843 ], "assists": [ - 41 + 42 ], "change": [ - 3093 + 3372 ], "created_at": [ - 4671 + 4955 ], "current": [ - 3093 + 3372 ], "damage": [ - 41 + 42 ], "damage_percent": [ - 1778 + 1843 ], "deaths": [ - 41 + 42 ], "expected_score": [ - 1778 + 1843 ], "impact": [ - 3093 + 3372 ], "k_factor": [ - 41 + 42 ], "kda": [ - 1778 + 1843 ], "kills": [ - 41 + 42 ], "map_losses": [ - 41 + 42 ], "map_wins": [ - 41 + 42 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "opponent_team_elo_avg": [ - 1778 + 1843 ], "performance_multiplier": [ - 1778 + 1843 ], "player": [ - 4056 + 4335 ], "player_team_elo_avg": [ - 1778 + 1843 ], "rating_for_expected": [ - 1778 + 1843 ], "season": [ - 4142 + 4421 ], "season_id": [ - 5172 + 5456 ], "series_multiplier": [ - 41 + 42 ], "steam_id": [ - 266 + 271 ], "team_avg_kda": [ - 1778 + 1843 ], "type": [ - 1118 + 1183 ], "__typename": [ - 80 + 84 ] }, "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1777 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3092 + 3371 ], "current": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1777 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1777 + 1842 ], "impact": [ - 3092 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "opponent_team_elo_avg": [ - 1777 + 1842 ], "performance_multiplier": [ - 1777 + 1842 ], "player_team_elo_avg": [ - 1777 + 1842 ], "rating_for_expected": [ - 1777 + 1842 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_avg_kda": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_elo_insert_input": { "actual_score": [ - 1777 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3092 + 3371 ], "created_at": [ - 4670 + 4954 ], "current": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1777 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1777 + 1842 ], "impact": [ - 3092 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "opponent_team_elo_avg": [ - 1777 + 1842 ], "performance_multiplier": [ - 1777 + 1842 ], "player": [ - 4063 + 4342 ], "player_team_elo_avg": [ - 1777 + 1842 ], "rating_for_expected": [ - 1777 + 1842 ], "season": [ - 4149 + 4428 ], "season_id": [ - 5170 + 5454 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_avg_kda": [ - 1777 + 1842 ], "type": [ - 1117 + 1182 ], "__typename": [ - 80 + 84 ] }, "player_elo_max_fields": { "actual_score": [ - 1777 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3092 + 3371 ], "created_at": [ - 4670 + 4954 ], "current": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1777 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1777 + 1842 ], "impact": [ - 3092 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "opponent_team_elo_avg": [ - 1777 + 1842 ], "performance_multiplier": [ - 1777 + 1842 ], "player_team_elo_avg": [ - 1777 + 1842 ], "rating_for_expected": [ - 1777 + 1842 ], "season_id": [ - 5170 + 5454 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_avg_kda": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_elo_min_fields": { "actual_score": [ - 1777 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3092 + 3371 ], "created_at": [ - 4670 + 4954 ], "current": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1777 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1777 + 1842 ], "impact": [ - 3092 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "opponent_team_elo_avg": [ - 1777 + 1842 ], "performance_multiplier": [ - 1777 + 1842 ], "player_team_elo_avg": [ - 1777 + 1842 ], "rating_for_expected": [ - 1777 + 1842 ], "season_id": [ - 5170 + 5454 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_avg_kda": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_elo_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3336 + 3615 ], "__typename": [ - 80 + 84 ] }, "player_elo_on_conflict": { "constraint": [ - 3341 + 3620 ], "update_columns": [ - 3358 + 3637 ], "where": [ - 3340 + 3619 ], "__typename": [ - 80 + 84 ] }, "player_elo_order_by": { "actual_score": [ - 3094 + 3373 ], "assists": [ - 3094 + 3373 ], "change": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "current": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_percent": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "expected_score": [ - 3094 + 3373 ], "impact": [ - 3094 + 3373 ], "k_factor": [ - 3094 + 3373 ], "kda": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "map_losses": [ - 3094 + 3373 ], "map_wins": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "opponent_team_elo_avg": [ - 3094 + 3373 ], "performance_multiplier": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "player_team_elo_avg": [ - 3094 + 3373 ], "rating_for_expected": [ - 3094 + 3373 ], "season": [ - 4151 + 4430 ], "season_id": [ - 3094 + 3373 ], "series_multiplier": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_avg_kda": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_elo_pk_columns_input": { "match_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "type": [ - 1117 + 1182 ], "__typename": [ - 80 + 84 ] }, "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1777 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3092 + 3371 ], "created_at": [ - 4670 + 4954 ], "current": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1777 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1777 + 1842 ], "impact": [ - 3092 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "opponent_team_elo_avg": [ - 1777 + 1842 ], "performance_multiplier": [ - 1777 + 1842 ], "player_team_elo_avg": [ - 1777 + 1842 ], "rating_for_expected": [ - 1777 + 1842 ], "season_id": [ - 5170 + 5454 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_avg_kda": [ - 1777 + 1842 ], "type": [ - 1117 + 1182 ], "__typename": [ - 80 + 84 ] }, "player_elo_stddev_fields": { "actual_score": [ - 31 + 32 ], "assists": [ - 31 + 32 ], "change": [ - 31 + 32 ], "current": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_percent": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "expected_score": [ - 31 + 32 ], "impact": [ - 31 + 32 ], "k_factor": [ - 31 + 32 ], "kda": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "map_losses": [ - 31 + 32 ], "map_wins": [ - 31 + 32 ], "opponent_team_elo_avg": [ - 31 + 32 ], "performance_multiplier": [ - 31 + 32 ], "player_team_elo_avg": [ - 31 + 32 ], "rating_for_expected": [ - 31 + 32 ], "series_multiplier": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_avg_kda": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_elo_stddev_pop_fields": { "actual_score": [ - 31 + 32 ], "assists": [ - 31 + 32 ], "change": [ - 31 + 32 ], "current": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_percent": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "expected_score": [ - 31 + 32 ], "impact": [ - 31 + 32 ], "k_factor": [ - 31 + 32 ], "kda": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "map_losses": [ - 31 + 32 ], "map_wins": [ - 31 + 32 ], "opponent_team_elo_avg": [ - 31 + 32 ], "performance_multiplier": [ - 31 + 32 ], "player_team_elo_avg": [ - 31 + 32 ], "rating_for_expected": [ - 31 + 32 ], "series_multiplier": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_avg_kda": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_elo_stddev_samp_fields": { "actual_score": [ - 31 + 32 ], "assists": [ - 31 + 32 ], "change": [ - 31 + 32 ], "current": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_percent": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "expected_score": [ - 31 + 32 ], "impact": [ - 31 + 32 ], "k_factor": [ - 31 + 32 ], "kda": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "map_losses": [ - 31 + 32 ], "map_wins": [ - 31 + 32 ], "opponent_team_elo_avg": [ - 31 + 32 ], "performance_multiplier": [ - 31 + 32 ], "player_team_elo_avg": [ - 31 + 32 ], "rating_for_expected": [ - 31 + 32 ], "series_multiplier": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_avg_kda": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_elo_stream_cursor_input": { "initial_value": [ - 3356 + 3635 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1777 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3092 + 3371 ], "created_at": [ - 4670 + 4954 ], "current": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1777 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1777 + 1842 ], "impact": [ - 3092 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "opponent_team_elo_avg": [ - 1777 + 1842 ], "performance_multiplier": [ - 1777 + 1842 ], "player_team_elo_avg": [ - 1777 + 1842 ], "rating_for_expected": [ - 1777 + 1842 ], "season_id": [ - 5170 + 5454 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_avg_kda": [ - 1777 + 1842 ], "type": [ - 1117 + 1182 ], "__typename": [ - 80 + 84 ] }, "player_elo_sum_fields": { "actual_score": [ - 1777 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3092 + 3371 ], "current": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1777 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1777 + 1842 ], "impact": [ - 3092 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "opponent_team_elo_avg": [ - 1777 + 1842 ], "performance_multiplier": [ - 1777 + 1842 ], "player_team_elo_avg": [ - 1777 + 1842 ], "rating_for_expected": [ - 1777 + 1842 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_avg_kda": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 3342 + 3621 ], "_set": [ - 3351 + 3630 ], "where": [ - 3340 + 3619 ], "__typename": [ - 80 + 84 ] }, "player_elo_var_pop_fields": { "actual_score": [ - 31 + 32 ], "assists": [ - 31 + 32 ], "change": [ - 31 + 32 ], "current": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_percent": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "expected_score": [ - 31 + 32 ], "impact": [ - 31 + 32 ], "k_factor": [ - 31 + 32 ], "kda": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "map_losses": [ - 31 + 32 ], "map_wins": [ - 31 + 32 ], "opponent_team_elo_avg": [ - 31 + 32 ], "performance_multiplier": [ - 31 + 32 ], "player_team_elo_avg": [ - 31 + 32 ], "rating_for_expected": [ - 31 + 32 ], "series_multiplier": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_avg_kda": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_elo_var_samp_fields": { "actual_score": [ - 31 + 32 ], "assists": [ - 31 + 32 ], "change": [ - 31 + 32 ], "current": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_percent": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "expected_score": [ - 31 + 32 ], "impact": [ - 31 + 32 ], "k_factor": [ - 31 + 32 ], "kda": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "map_losses": [ - 31 + 32 ], "map_wins": [ - 31 + 32 ], "opponent_team_elo_avg": [ - 31 + 32 ], "performance_multiplier": [ - 31 + 32 ], "player_team_elo_avg": [ - 31 + 32 ], "rating_for_expected": [ - 31 + 32 ], "series_multiplier": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_avg_kda": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_elo_variance_fields": { "actual_score": [ - 31 + 32 ], "assists": [ - 31 + 32 ], "change": [ - 31 + 32 ], "current": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_percent": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "expected_score": [ - 31 + 32 ], "impact": [ - 31 + 32 ], "k_factor": [ - 31 + 32 ], "kda": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "map_losses": [ - 31 + 32 ], "map_wins": [ - 31 + 32 ], "opponent_team_elo_avg": [ - 31 + 32 ], "performance_multiplier": [ - 31 + 32 ], "player_team_elo_avg": [ - 31 + 32 ], "rating_for_expected": [ - 31 + 32 ], "series_multiplier": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_avg_kda": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history": { "elo": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "observed_at": [ - 4670 + 4954 ], "player": [ - 4052 + 4331 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 3367 + 3646 ], "nodes": [ - 3363 + 3642 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 3366 + 3645 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3384 + 3663 ], "distinct": [ - 5 + 6 ], "filter": [ - 3372 + 3651 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 3370 + 3649 ], "count": [ - 40, + 41, { "columns": [ - 3384, + 3663, "[player_faceit_rank_history_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3376 + 3655 ], "min": [ - 3378 + 3657 ], "stddev": [ - 3386 + 3665 ], "stddev_pop": [ - 3388 + 3667 ], "stddev_samp": [ - 3390 + 3669 ], "sum": [ - 3394 + 3673 ], "var_pop": [ - 3398 + 3677 ], "var_samp": [ - 3400 + 3679 ], "variance": [ - 3402 + 3681 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 3371 + 3650 ], "count": [ - 3094 + 3373 ], "max": [ - 3377 + 3656 ], "min": [ - 3379 + 3658 ], "stddev": [ - 3387 + 3666 ], "stddev_pop": [ - 3389 + 3668 ], "stddev_samp": [ - 3391 + 3670 ], "sum": [ - 3395 + 3674 ], "var_pop": [ - 3399 + 3678 ], "var_samp": [ - 3401 + 3680 ], "variance": [ - 3403 + 3682 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 3375 + 3654 ], "on_conflict": [ - 3381 + 3660 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_avg_fields": { "elo": [ - 31 + 32 ], "previous_rank": [ - 31 + 32 ], "skill_level": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 3094 + 3373 ], "previous_rank": [ - 3094 + 3373 ], "skill_level": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_bool_exp": { "_and": [ - 3372 + 3651 ], "_not": [ - 3372 + 3651 ], "_or": [ - 3372 + 3651 ], "elo": [ - 41 + 42 ], "id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "observed_at": [ - 4671 + 4955 ], "player": [ - 4056 + 4335 ], "previous_rank": [ - 41 + 42 ], "skill_level": [ - 41 + 42 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_constraint": {}, "player_faceit_rank_history_inc_input": { "elo": [ - 40 + 41 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_insert_input": { "elo": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "observed_at": [ - 4670 + 4954 ], "player": [ - 4063 + 4342 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_max_fields": { "elo": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "observed_at": [ - 4670 + 4954 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_max_order_by": { "elo": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "observed_at": [ - 3094 + 3373 ], "previous_rank": [ - 3094 + 3373 ], "skill_level": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_min_fields": { "elo": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "observed_at": [ - 4670 + 4954 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_min_order_by": { "elo": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "observed_at": [ - 3094 + 3373 ], "previous_rank": [ - 3094 + 3373 ], "skill_level": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3363 + 3642 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 3373 + 3652 ], "update_columns": [ - 3396 + 3675 ], "where": [ - 3372 + 3651 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_order_by": { "elo": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "observed_at": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "previous_rank": [ - 3094 + 3373 ], "skill_level": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_select_column": {}, "player_faceit_rank_history_set_input": { "elo": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "observed_at": [ - 4670 + 4954 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_stddev_fields": { "elo": [ - 31 + 32 ], "previous_rank": [ - 31 + 32 ], "skill_level": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 3094 + 3373 ], "previous_rank": [ - 3094 + 3373 ], "skill_level": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_stddev_pop_fields": { "elo": [ - 31 + 32 ], "previous_rank": [ - 31 + 32 ], "skill_level": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 3094 + 3373 ], "previous_rank": [ - 3094 + 3373 ], "skill_level": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_stddev_samp_fields": { "elo": [ - 31 + 32 ], "previous_rank": [ - 31 + 32 ], "skill_level": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 3094 + 3373 ], "previous_rank": [ - 3094 + 3373 ], "skill_level": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 3393 + 3672 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_stream_cursor_value_input": { "elo": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "observed_at": [ - 4670 + 4954 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_sum_fields": { "elo": [ - 40 + 41 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 3094 + 3373 ], "previous_rank": [ - 3094 + 3373 ], "skill_level": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 3374 + 3653 ], "_set": [ - 3385 + 3664 ], "where": [ - 3372 + 3651 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_var_pop_fields": { "elo": [ - 31 + 32 ], "previous_rank": [ - 31 + 32 ], "skill_level": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 3094 + 3373 ], "previous_rank": [ - 3094 + 3373 ], "skill_level": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_var_samp_fields": { "elo": [ - 31 + 32 ], "previous_rank": [ - 31 + 32 ], "skill_level": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 3094 + 3373 ], "previous_rank": [ - 3094 + 3373 ], "skill_level": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_variance_fields": { "elo": [ - 31 + 32 ], "previous_rank": [ - 31 + 32 ], "skill_level": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 3094 + 3373 ], "previous_rank": [ - 3094 + 3373 ], "skill_level": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_flashes": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "blinded": [ - 4052 + 4331 ], "deleted_at": [ - 4670 + 4954 ], "duration": [ - 3092 + 3371 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "team_flash": [ - 5 + 6 ], "thrown_by": [ - 4052 + 4331 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_flashes_aggregate": { "aggregate": [ - 3410 + 3689 ], "nodes": [ - 3404 + 3683 ], "__typename": [ - 80 + 84 ] }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 3407 + 3686 ], "bool_or": [ - 3408 + 3687 ], "count": [ - 3409 + 3688 ], "__typename": [ - 80 + 84 ] }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 3428 + 3707 ], "distinct": [ - 5 + 6 ], "filter": [ - 3415 + 3694 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 3429 + 3708 ], "distinct": [ - 5 + 6 ], "filter": [ - 3415 + 3694 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 3427 + 3706 ], "distinct": [ - 5 + 6 ], "filter": [ - 3415 + 3694 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_flashes_aggregate_fields": { "avg": [ - 3413 + 3692 ], "count": [ - 40, + 41, { "columns": [ - 3427, + 3706, "[player_flashes_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3419 + 3698 ], "min": [ - 3421 + 3700 ], "stddev": [ - 3431 + 3710 ], "stddev_pop": [ - 3433 + 3712 ], "stddev_samp": [ - 3435 + 3714 ], "sum": [ - 3439 + 3718 ], "var_pop": [ - 3443 + 3722 ], "var_samp": [ - 3445 + 3724 ], "variance": [ - 3447 + 3726 ], "__typename": [ - 80 + 84 ] }, "player_flashes_aggregate_order_by": { "avg": [ - 3414 + 3693 ], "count": [ - 3094 + 3373 ], "max": [ - 3420 + 3699 ], "min": [ - 3422 + 3701 ], "stddev": [ - 3432 + 3711 ], "stddev_pop": [ - 3434 + 3713 ], "stddev_samp": [ - 3436 + 3715 ], "sum": [ - 3440 + 3719 ], "var_pop": [ - 3444 + 3723 ], "var_samp": [ - 3446 + 3725 ], "variance": [ - 3448 + 3727 ], "__typename": [ - 80 + 84 ] }, "player_flashes_arr_rel_insert_input": { "data": [ - 3418 + 3697 ], "on_conflict": [ - 3424 + 3703 ], "__typename": [ - 80 + 84 ] }, "player_flashes_avg_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "duration": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "duration": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_flashes_bool_exp": { "_and": [ - 3415 + 3694 ], "_not": [ - 3415 + 3694 ], "_or": [ - 3415 + 3694 ], "attacked_steam_id": [ - 266 + 271 ], "attacker_steam_id": [ - 266 + 271 ], "blinded": [ - 4056 + 4335 ], "deleted_at": [ - 4671 + 4955 ], "duration": [ - 3093 + 3372 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "round": [ - 41 + 42 ], "team_flash": [ - 6 + 7 ], "thrown_by": [ - 4056 + 4335 ], "time": [ - 4671 + 4955 ], "__typename": [ - 80 + 84 ] }, "player_flashes_constraint": {}, "player_flashes_inc_input": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "duration": [ - 3092 + 3371 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_flashes_insert_input": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "blinded": [ - 4063 + 4342 ], "deleted_at": [ - 4670 + 4954 ], "duration": [ - 3092 + 3371 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "team_flash": [ - 5 + 6 ], "thrown_by": [ - 4063 + 4342 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_flashes_max_fields": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "deleted_at": [ - 4670 + 4954 ], "duration": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "duration": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_flashes_min_fields": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "deleted_at": [ - 4670 + 4954 ], "duration": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "duration": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_flashes_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3404 + 3683 ], "__typename": [ - 80 + 84 ] }, "player_flashes_on_conflict": { "constraint": [ - 3416 + 3695 ], "update_columns": [ - 3441 + 3720 ], "where": [ - 3415 + 3694 ], "__typename": [ - 80 + 84 ] }, "player_flashes_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "blinded": [ - 4065 + 4344 ], "deleted_at": [ - 3094 + 3373 ], "duration": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "team_flash": [ - 3094 + 3373 ], "thrown_by": [ - 4065 + 4344 ], "time": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_flashes_pk_columns_input": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "match_map_id": [ - 5170 + 5454 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_flashes_select_column": {}, @@ -68322,1690 +73608,1690 @@ export default { "player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_flashes_set_input": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "deleted_at": [ - 4670 + 4954 ], "duration": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "team_flash": [ - 5 + 6 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_flashes_stddev_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "duration": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "duration": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_flashes_stddev_pop_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "duration": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "duration": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_flashes_stddev_samp_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "duration": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "duration": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_flashes_stream_cursor_input": { "initial_value": [ - 3438 + 3717 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_flashes_stream_cursor_value_input": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "deleted_at": [ - 4670 + 4954 ], "duration": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "team_flash": [ - 5 + 6 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_flashes_sum_fields": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "duration": [ - 3092 + 3371 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "duration": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 3417 + 3696 ], "_set": [ - 3430 + 3709 ], "where": [ - 3415 + 3694 ], "__typename": [ - 80 + 84 ] }, "player_flashes_var_pop_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "duration": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "duration": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_flashes_var_samp_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "duration": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "duration": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_flashes_variance_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "duration": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "duration": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills": { "assisted": [ - 5 + 6 ], "attacked_location": [ - 80 + 84 ], "attacked_location_coordinates": [ - 80 + 84 ], "attacked_player": [ - 4052 + 4331 ], "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_location": [ - 80 + 84 ], "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "blinded": [ - 5 + 6 ], "deleted_at": [ - 4670 + 4954 ], "headshot": [ - 5 + 6 ], "hitgroup": [ - 80 + 84 ], "in_air": [ - 5 + 6 ], "is_suicide": [ - 5 + 6 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "no_scope": [ - 5 + 6 ], "player": [ - 4052 + 4331 ], "round": [ - 40 + 41 ], "team_kill": [ - 5 + 6 ], "thru_smoke": [ - 5 + 6 ], "thru_wall": [ - 5 + 6 ], "time": [ - 4670 + 4954 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_kills_aggregate": { "aggregate": [ - 3455 + 3734 ], "nodes": [ - 3449 + 3728 ], "__typename": [ - 80 + 84 ] }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 3452 + 3731 ], "bool_or": [ - 3453 + 3732 ], "count": [ - 3454 + 3733 ], "__typename": [ - 80 + 84 ] }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 3514 + 3793 ], "distinct": [ - 5 + 6 ], "filter": [ - 3460 + 3739 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 3515 + 3794 ], "distinct": [ - 5 + 6 ], "filter": [ - 3460 + 3739 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 3513 + 3792 ], "distinct": [ - 5 + 6 ], "filter": [ - 3460 + 3739 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_kills_aggregate_fields": { "avg": [ - 3458 + 3737 ], "count": [ - 40, + 41, { "columns": [ - 3513, + 3792, "[player_kills_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3505 + 3784 ], "min": [ - 3507 + 3786 ], "stddev": [ - 3517 + 3796 ], "stddev_pop": [ - 3519 + 3798 ], "stddev_samp": [ - 3521 + 3800 ], "sum": [ - 3525 + 3804 ], "var_pop": [ - 3529 + 3808 ], "var_samp": [ - 3531 + 3810 ], "variance": [ - 3533 + 3812 ], "__typename": [ - 80 + 84 ] }, "player_kills_aggregate_order_by": { "avg": [ - 3459 + 3738 ], "count": [ - 3094 + 3373 ], "max": [ - 3506 + 3785 ], "min": [ - 3508 + 3787 ], "stddev": [ - 3518 + 3797 ], "stddev_pop": [ - 3520 + 3799 ], "stddev_samp": [ - 3522 + 3801 ], "sum": [ - 3526 + 3805 ], "var_pop": [ - 3530 + 3809 ], "var_samp": [ - 3532 + 3811 ], "variance": [ - 3534 + 3813 ], "__typename": [ - 80 + 84 ] }, "player_kills_arr_rel_insert_input": { "data": [ - 3504 + 3783 ], "on_conflict": [ - 3510 + 3789 ], "__typename": [ - 80 + 84 ] }, "player_kills_avg_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_bool_exp": { "_and": [ - 3460 + 3739 ], "_not": [ - 3460 + 3739 ], "_or": [ - 3460 + 3739 ], "assisted": [ - 6 + 7 ], "attacked_location": [ - 82 + 86 ], "attacked_location_coordinates": [ - 82 + 86 ], "attacked_player": [ - 4056 + 4335 ], "attacked_steam_id": [ - 266 + 271 ], "attacked_team": [ - 82 + 86 ], "attacker_location": [ - 82 + 86 ], "attacker_location_coordinates": [ - 82 + 86 ], "attacker_steam_id": [ - 266 + 271 ], "attacker_team": [ - 82 + 86 ], "blinded": [ - 6 + 7 ], "deleted_at": [ - 4671 + 4955 ], "headshot": [ - 6 + 7 ], "hitgroup": [ - 82 + 86 ], "in_air": [ - 6 + 7 ], "is_suicide": [ - 6 + 7 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "no_scope": [ - 6 + 7 ], "player": [ - 4056 + 4335 ], "round": [ - 41 + 42 ], "team_kill": [ - 6 + 7 ], "thru_smoke": [ - 6 + 7 ], "thru_wall": [ - 6 + 7 ], "time": [ - 4671 + 4955 ], "with": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon": { "kill_count": [ - 264 + 269 ], "player": [ - 4052 + 4331 ], "player_steam_id": [ - 264 + 269 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 3465 + 3744 ], "nodes": [ - 3461 + 3740 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 3464 + 3743 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 3482 + 3761 ], "distinct": [ - 5 + 6 ], "filter": [ - 3470 + 3749 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 3468 + 3747 ], "count": [ - 40, + 41, { "columns": [ - 3482, + 3761, "[player_kills_by_weapon_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3474 + 3753 ], "min": [ - 3476 + 3755 ], "stddev": [ - 3484 + 3763 ], "stddev_pop": [ - 3486 + 3765 ], "stddev_samp": [ - 3488 + 3767 ], "sum": [ - 3492 + 3771 ], "var_pop": [ - 3496 + 3775 ], "var_samp": [ - 3498 + 3777 ], "variance": [ - 3500 + 3779 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 3469 + 3748 ], "count": [ - 3094 + 3373 ], "max": [ - 3475 + 3754 ], "min": [ - 3477 + 3756 ], "stddev": [ - 3485 + 3764 ], "stddev_pop": [ - 3487 + 3766 ], "stddev_samp": [ - 3489 + 3768 ], "sum": [ - 3493 + 3772 ], "var_pop": [ - 3497 + 3776 ], "var_samp": [ - 3499 + 3778 ], "variance": [ - 3501 + 3780 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 3473 + 3752 ], "on_conflict": [ - 3479 + 3758 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_avg_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_bool_exp": { "_and": [ - 3470 + 3749 ], "_not": [ - 3470 + 3749 ], "_or": [ - 3470 + 3749 ], "kill_count": [ - 266 + 271 ], "player": [ - 4056 + 4335 ], "player_steam_id": [ - 266 + 271 ], "with": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_constraint": {}, "player_kills_by_weapon_inc_input": { "kill_count": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_insert_input": { "kill_count": [ - 264 + 269 ], "player": [ - 4063 + 4342 ], "player_steam_id": [ - 264 + 269 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_max_fields": { "kill_count": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "with": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_min_fields": { "kill_count": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "with": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3461 + 3740 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 3471 + 3750 ], "update_columns": [ - 3494 + 3773 ], "where": [ - 3470 + 3749 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_order_by": { "kill_count": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "player_steam_id": [ - 3094 + 3373 ], "with": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_pk_columns_input": { "player_steam_id": [ - 264 + 269 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_select_column": {}, "player_kills_by_weapon_set_input": { "kill_count": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_stddev_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_stddev_pop_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_stddev_samp_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 3491 + 3770 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_stream_cursor_value_input": { "kill_count": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_sum_fields": { "kill_count": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 3472 + 3751 ], "_set": [ - 3483 + 3762 ], "where": [ - 3470 + 3749 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_var_pop_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_var_samp_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_variance_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_constraint": {}, "player_kills_inc_input": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_kills_insert_input": { "assisted": [ - 5 + 6 ], "attacked_location": [ - 80 + 84 ], "attacked_location_coordinates": [ - 80 + 84 ], "attacked_player": [ - 4063 + 4342 ], "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_location": [ - 80 + 84 ], "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "blinded": [ - 5 + 6 ], "deleted_at": [ - 4670 + 4954 ], "headshot": [ - 5 + 6 ], "hitgroup": [ - 80 + 84 ], "in_air": [ - 5 + 6 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "no_scope": [ - 5 + 6 ], "player": [ - 4063 + 4342 ], "round": [ - 40 + 41 ], "thru_smoke": [ - 5 + 6 ], "thru_wall": [ - 5 + 6 ], "time": [ - 4670 + 4954 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_kills_max_fields": { "attacked_location": [ - 80 + 84 ], "attacked_location_coordinates": [ - 80 + 84 ], "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_location": [ - 80 + 84 ], "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "deleted_at": [ - 4670 + 4954 ], "hitgroup": [ - 80 + 84 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_kills_max_order_by": { "attacked_location": [ - 3094 + 3373 ], "attacked_location_coordinates": [ - 3094 + 3373 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacked_team": [ - 3094 + 3373 ], "attacker_location": [ - 3094 + 3373 ], "attacker_location_coordinates": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "attacker_team": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "hitgroup": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "with": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_min_fields": { "attacked_location": [ - 80 + 84 ], "attacked_location_coordinates": [ - 80 + 84 ], "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_location": [ - 80 + 84 ], "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "deleted_at": [ - 4670 + 4954 ], "hitgroup": [ - 80 + 84 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_kills_min_order_by": { "attacked_location": [ - 3094 + 3373 ], "attacked_location_coordinates": [ - 3094 + 3373 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacked_team": [ - 3094 + 3373 ], "attacker_location": [ - 3094 + 3373 ], "attacker_location_coordinates": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "attacker_team": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "hitgroup": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "with": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3449 + 3728 ], "__typename": [ - 80 + 84 ] }, "player_kills_on_conflict": { "constraint": [ - 3502 + 3781 ], "update_columns": [ - 3527 + 3806 ], "where": [ - 3460 + 3739 ], "__typename": [ - 80 + 84 ] }, "player_kills_order_by": { "assisted": [ - 3094 + 3373 ], "attacked_location": [ - 3094 + 3373 ], "attacked_location_coordinates": [ - 3094 + 3373 ], "attacked_player": [ - 4065 + 4344 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacked_team": [ - 3094 + 3373 ], "attacker_location": [ - 3094 + 3373 ], "attacker_location_coordinates": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "attacker_team": [ - 3094 + 3373 ], "blinded": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "headshot": [ - 3094 + 3373 ], "hitgroup": [ - 3094 + 3373 ], "in_air": [ - 3094 + 3373 ], "is_suicide": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "no_scope": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "round": [ - 3094 + 3373 ], "team_kill": [ - 3094 + 3373 ], "thru_smoke": [ - 3094 + 3373 ], "thru_wall": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "with": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_pk_columns_input": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "match_map_id": [ - 5170 + 5454 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_kills_select_column": {}, @@ -70013,17021 +75299,17021 @@ export default { "player_kills_select_column_player_kills_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_kills_set_input": { "assisted": [ - 5 + 6 ], "attacked_location": [ - 80 + 84 ], "attacked_location_coordinates": [ - 80 + 84 ], "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_location": [ - 80 + 84 ], "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "blinded": [ - 5 + 6 ], "deleted_at": [ - 4670 + 4954 ], "headshot": [ - 5 + 6 ], "hitgroup": [ - 80 + 84 ], "in_air": [ - 5 + 6 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "no_scope": [ - 5 + 6 ], "round": [ - 40 + 41 ], "thru_smoke": [ - 5 + 6 ], "thru_wall": [ - 5 + 6 ], "time": [ - 4670 + 4954 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_kills_stddev_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_stddev_pop_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_stddev_samp_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_stream_cursor_input": { "initial_value": [ - 3524 + 3803 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_kills_stream_cursor_value_input": { "assisted": [ - 5 + 6 ], "attacked_location": [ - 80 + 84 ], "attacked_location_coordinates": [ - 80 + 84 ], "attacked_steam_id": [ - 264 + 269 ], "attacked_team": [ - 80 + 84 ], "attacker_location": [ - 80 + 84 ], "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "attacker_team": [ - 80 + 84 ], "blinded": [ - 5 + 6 ], "deleted_at": [ - 4670 + 4954 ], "headshot": [ - 5 + 6 ], "hitgroup": [ - 80 + 84 ], "in_air": [ - 5 + 6 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "no_scope": [ - 5 + 6 ], "round": [ - 40 + 41 ], "thru_smoke": [ - 5 + 6 ], "thru_wall": [ - 5 + 6 ], "time": [ - 4670 + 4954 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_kills_sum_fields": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 3503 + 3782 ], "_set": [ - 3516 + 3795 ], "where": [ - 3460 + 3739 ], "__typename": [ - 80 + 84 ] }, "player_kills_var_pop_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_var_samp_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_kills_variance_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank": { "player_steam_id": [ - 80 + 84 ], "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 3537 + 3816 ], "nodes": [ - 3535 + 3814 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 3538 + 3817 ], "count": [ - 40, + 41, { "columns": [ - 3546, + 3825, "[player_leaderboard_rank_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3542 + 3821 ], "min": [ - 3543 + 3822 ], "stddev": [ - 3548 + 3827 ], "stddev_pop": [ - 3549 + 3828 ], "stddev_samp": [ - 3550 + 3829 ], "sum": [ - 3553 + 3832 ], "var_pop": [ - 3555 + 3834 ], "var_samp": [ - 3556 + 3835 ], "variance": [ - 3557 + 3836 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_avg_fields": { "rank": [ - 31 + 32 ], "total": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_bool_exp": { "_and": [ - 3539 + 3818 ], "_not": [ - 3539 + 3818 ], "_or": [ - 3539 + 3818 ], "player_steam_id": [ - 82 + 86 ], "rank": [ - 41 + 42 ], "total": [ - 41 + 42 ], "value": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_inc_input": { "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_insert_input": { "player_steam_id": [ - 80 + 84 ], "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_max_fields": { "player_steam_id": [ - 80 + 84 ], "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_min_fields": { "player_steam_id": [ - 80 + 84 ], "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3535 + 3814 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "total": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_select_column": {}, "player_leaderboard_rank_set_input": { "player_steam_id": [ - 80 + 84 ], "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_stddev_fields": { "rank": [ - 31 + 32 ], "total": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_stddev_pop_fields": { "rank": [ - 31 + 32 ], "total": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_stddev_samp_fields": { "rank": [ - 31 + 32 ], "total": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 3552 + 3831 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_stream_cursor_value_input": { "player_steam_id": [ - 80 + 84 ], "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_sum_fields": { "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_updates": { "_inc": [ - 3540 + 3819 ], "_set": [ - 3547 + 3826 ], "where": [ - 3539 + 3818 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_var_pop_fields": { "rank": [ - 31 + 32 ], "total": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_var_samp_fields": { "rank": [ - 31 + 32 ], "total": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_leaderboard_rank_variance_fields": { "rank": [ - 31 + 32 ], "total": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_ct": [ - 40 + 41 ], "damage_t": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "deaths_ct": [ - 40 + 41 ], "deaths_t": [ - 40 + 41 ], "decoy_throws": [ - 40 + 41 ], "enemies_flashed": [ - 40 + 41 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "five_kill_rounds": [ - 40 + 41 ], "flash_assists": [ - 40 + 41 ], "flash_duration_count": [ - 40 + 41 ], "flash_duration_sum": [ - 3092 + 3371 ], "flashes_thrown": [ - 40 + 41 ], "four_kill_rounds": [ - 40 + 41 ], "he_damage": [ - 40 + 41 ], "he_team_damage": [ - 40 + 41 ], "he_throws": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "hs_kills": [ - 40 + 41 ], "hs_kills_ct": [ - 40 + 41 ], "hs_kills_t": [ - 40 + 41 ], "kast_rounds": [ - 40 + 41 ], "kast_total_rounds": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "kills_ct": [ - 40 + 41 ], "kills_t": [ - 40 + 41 ], "knife_kills": [ - 40 + 41 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "player": [ - 4052 + 4331 ], "rounds_ct": [ - 40 + 41 ], "rounds_played": [ - 40 + 41 ], "rounds_t": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "shots_fired": [ - 40 + 41 ], "smoke_throws": [ - 40 + 41 ], "spotted_count": [ - 40 + 41 ], "spotted_with_damage_count": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_damage": [ - 40 + 41 ], "team_flashed": [ - 40 + 41 ], "three_kill_rounds": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "trade_kill_attempts": [ - 40 + 41 ], "trade_kill_opportunities": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_attempts": [ - 40 + 41 ], "traded_death_opportunities": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "two_kill_rounds": [ - 40 + 41 ], "unused_utility_value": [ - 40 + 41 ], "updated_at": [ - 4670 + 4954 ], "util_on_death_count": [ - 40 + 41 ], "util_on_death_sum": [ - 40 + 41 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_aggregate": { "aggregate": [ - 3562 + 3841 ], "nodes": [ - 3558 + 3837 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 3561 + 3840 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 3579 + 3858 ], "distinct": [ - 5 + 6 ], "filter": [ - 3567 + 3846 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_aggregate_fields": { "avg": [ - 3565 + 3844 ], "count": [ - 40, + 41, { "columns": [ - 3579, + 3858, "[player_match_map_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3571 + 3850 ], "min": [ - 3573 + 3852 ], "stddev": [ - 3581 + 3860 ], "stddev_pop": [ - 3583 + 3862 ], "stddev_samp": [ - 3585 + 3864 ], "sum": [ - 3589 + 3868 ], "var_pop": [ - 3593 + 3872 ], "var_samp": [ - 3595 + 3874 ], "variance": [ - 3597 + 3876 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 3566 + 3845 ], "count": [ - 3094 + 3373 ], "max": [ - 3572 + 3851 ], "min": [ - 3574 + 3853 ], "stddev": [ - 3582 + 3861 ], "stddev_pop": [ - 3584 + 3863 ], "stddev_samp": [ - 3586 + 3865 ], "sum": [ - 3590 + 3869 ], "var_pop": [ - 3594 + 3873 ], "var_samp": [ - 3596 + 3875 ], "variance": [ - 3598 + 3877 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 3570 + 3849 ], "on_conflict": [ - 3576 + 3855 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_avg_fields": { "assists": [ - 31 + 32 ], "assists_ct": [ - 31 + 32 ], "assists_t": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "crosshair_angle_count": [ - 31 + 32 ], "crosshair_angle_sum_deg": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_ct": [ - 31 + 32 ], "damage_t": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "deaths_ct": [ - 31 + 32 ], "deaths_t": [ - 31 + 32 ], "decoy_throws": [ - 31 + 32 ], "enemies_flashed": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "five_kill_rounds": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "flash_duration_count": [ - 31 + 32 ], "flash_duration_sum": [ - 31 + 32 ], "flashes_thrown": [ - 31 + 32 ], "four_kill_rounds": [ - 31 + 32 ], "he_damage": [ - 31 + 32 ], "he_team_damage": [ - 31 + 32 ], "he_throws": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "hs_kills": [ - 31 + 32 ], "hs_kills_ct": [ - 31 + 32 ], "hs_kills_t": [ - 31 + 32 ], "kast_rounds": [ - 31 + 32 ], "kast_total_rounds": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kills_ct": [ - 31 + 32 ], "kills_t": [ - 31 + 32 ], "knife_kills": [ - 31 + 32 ], "molotov_damage": [ - 31 + 32 ], "molotov_throws": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "rounds_ct": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "rounds_t": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "shots_fired": [ - 31 + 32 ], "smoke_throws": [ - 31 + 32 ], "spotted_count": [ - 31 + 32 ], "spotted_with_damage_count": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_damage": [ - 31 + 32 ], "team_flashed": [ - 31 + 32 ], "three_kill_rounds": [ - 31 + 32 ], "time_to_damage_count": [ - 31 + 32 ], "time_to_damage_sum_s": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "trade_kill_attempts": [ - 31 + 32 ], "trade_kill_opportunities": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_attempts": [ - 31 + 32 ], "traded_death_opportunities": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "two_kill_rounds": [ - 31 + 32 ], "unused_utility_value": [ - 31 + 32 ], "util_on_death_count": [ - 31 + 32 ], "util_on_death_sum": [ - 31 + 32 ], "wasted_magazine_shots": [ - 31 + 32 ], "zeus_kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_avg_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "crosshair_angle_count": [ - 3094 + 3373 ], "crosshair_angle_sum_deg": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flash_duration_count": [ - 3094 + 3373 ], "flash_duration_sum": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kast_rounds": [ - 3094 + 3373 ], "kast_total_rounds": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "time_to_damage_count": [ - 3094 + 3373 ], "time_to_damage_sum_s": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "util_on_death_count": [ - 3094 + 3373 ], "util_on_death_sum": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_bool_exp": { "_and": [ - 3567 + 3846 ], "_not": [ - 3567 + 3846 ], "_or": [ - 3567 + 3846 ], "assists": [ - 41 + 42 ], "assists_ct": [ - 41 + 42 ], "assists_t": [ - 41 + 42 ], "counter_strafe_eligible_shots": [ - 41 + 42 ], "counter_strafed_shots": [ - 41 + 42 ], "crosshair_angle_count": [ - 41 + 42 ], "crosshair_angle_sum_deg": [ - 3093 + 3372 ], "damage": [ - 41 + 42 ], "damage_ct": [ - 41 + 42 ], "damage_t": [ - 41 + 42 ], "deaths": [ - 41 + 42 ], "deaths_ct": [ - 41 + 42 ], "deaths_t": [ - 41 + 42 ], "decoy_throws": [ - 41 + 42 ], "enemies_flashed": [ - 41 + 42 ], "first_bullet_hits": [ - 41 + 42 ], "first_bullet_shots": [ - 41 + 42 ], "five_kill_rounds": [ - 41 + 42 ], "flash_assists": [ - 41 + 42 ], "flash_duration_count": [ - 41 + 42 ], "flash_duration_sum": [ - 3093 + 3372 ], "flashes_thrown": [ - 41 + 42 ], "four_kill_rounds": [ - 41 + 42 ], "he_damage": [ - 41 + 42 ], "he_team_damage": [ - 41 + 42 ], "he_throws": [ - 41 + 42 ], "headshot_hits": [ - 41 + 42 ], "hits": [ - 41 + 42 ], "hits_at_spotted": [ - 41 + 42 ], "hs_kills": [ - 41 + 42 ], "hs_kills_ct": [ - 41 + 42 ], "hs_kills_t": [ - 41 + 42 ], "kast_rounds": [ - 41 + 42 ], "kast_total_rounds": [ - 41 + 42 ], "kills": [ - 41 + 42 ], "kills_ct": [ - 41 + 42 ], "kills_t": [ - 41 + 42 ], "knife_kills": [ - 41 + 42 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "molotov_damage": [ - 41 + 42 ], "molotov_throws": [ - 41 + 42 ], "non_awp_hits": [ - 41 + 42 ], "on_target_frames": [ - 41 + 42 ], "player": [ - 4056 + 4335 ], "rounds_ct": [ - 41 + 42 ], "rounds_played": [ - 41 + 42 ], "rounds_t": [ - 41 + 42 ], "shots_at_spotted": [ - 41 + 42 ], "shots_fired": [ - 41 + 42 ], "smoke_throws": [ - 41 + 42 ], "spotted_count": [ - 41 + 42 ], "spotted_with_damage_count": [ - 41 + 42 ], "spray_hits": [ - 41 + 42 ], "spray_shots": [ - 41 + 42 ], "steam_id": [ - 266 + 271 ], "team_damage": [ - 41 + 42 ], "team_flashed": [ - 41 + 42 ], "three_kill_rounds": [ - 41 + 42 ], "time_to_damage_count": [ - 41 + 42 ], "time_to_damage_sum_s": [ - 3093 + 3372 ], "total_engagement_frames": [ - 41 + 42 ], "trade_kill_attempts": [ - 41 + 42 ], "trade_kill_opportunities": [ - 41 + 42 ], "trade_kill_successes": [ - 41 + 42 ], "traded_death_attempts": [ - 41 + 42 ], "traded_death_opportunities": [ - 41 + 42 ], "traded_death_successes": [ - 41 + 42 ], "two_kill_rounds": [ - 41 + 42 ], "unused_utility_value": [ - 41 + 42 ], "updated_at": [ - 4671 + 4955 ], "util_on_death_count": [ - 41 + 42 ], "util_on_death_sum": [ - 41 + 42 ], "wasted_magazine_shots": [ - 41 + 42 ], "zeus_kills": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_constraint": {}, "player_match_map_stats_inc_input": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_ct": [ - 40 + 41 ], "damage_t": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "deaths_ct": [ - 40 + 41 ], "deaths_t": [ - 40 + 41 ], "decoy_throws": [ - 40 + 41 ], "enemies_flashed": [ - 40 + 41 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "five_kill_rounds": [ - 40 + 41 ], "flash_assists": [ - 40 + 41 ], "flash_duration_count": [ - 40 + 41 ], "flash_duration_sum": [ - 3092 + 3371 ], "flashes_thrown": [ - 40 + 41 ], "four_kill_rounds": [ - 40 + 41 ], "he_damage": [ - 40 + 41 ], "he_team_damage": [ - 40 + 41 ], "he_throws": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "hs_kills": [ - 40 + 41 ], "hs_kills_ct": [ - 40 + 41 ], "hs_kills_t": [ - 40 + 41 ], "kast_rounds": [ - 40 + 41 ], "kast_total_rounds": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "kills_ct": [ - 40 + 41 ], "kills_t": [ - 40 + 41 ], "knife_kills": [ - 40 + 41 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "rounds_ct": [ - 40 + 41 ], "rounds_played": [ - 40 + 41 ], "rounds_t": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "shots_fired": [ - 40 + 41 ], "smoke_throws": [ - 40 + 41 ], "spotted_count": [ - 40 + 41 ], "spotted_with_damage_count": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_damage": [ - 40 + 41 ], "team_flashed": [ - 40 + 41 ], "three_kill_rounds": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "trade_kill_attempts": [ - 40 + 41 ], "trade_kill_opportunities": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_attempts": [ - 40 + 41 ], "traded_death_opportunities": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "two_kill_rounds": [ - 40 + 41 ], "unused_utility_value": [ - 40 + 41 ], "util_on_death_count": [ - 40 + 41 ], "util_on_death_sum": [ - 40 + 41 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_insert_input": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_ct": [ - 40 + 41 ], "damage_t": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "deaths_ct": [ - 40 + 41 ], "deaths_t": [ - 40 + 41 ], "decoy_throws": [ - 40 + 41 ], "enemies_flashed": [ - 40 + 41 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "five_kill_rounds": [ - 40 + 41 ], "flash_assists": [ - 40 + 41 ], "flash_duration_count": [ - 40 + 41 ], "flash_duration_sum": [ - 3092 + 3371 ], "flashes_thrown": [ - 40 + 41 ], "four_kill_rounds": [ - 40 + 41 ], "he_damage": [ - 40 + 41 ], "he_team_damage": [ - 40 + 41 ], "he_throws": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "hs_kills": [ - 40 + 41 ], "hs_kills_ct": [ - 40 + 41 ], "hs_kills_t": [ - 40 + 41 ], "kast_rounds": [ - 40 + 41 ], "kast_total_rounds": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "kills_ct": [ - 40 + 41 ], "kills_t": [ - 40 + 41 ], "knife_kills": [ - 40 + 41 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "player": [ - 4063 + 4342 ], "rounds_ct": [ - 40 + 41 ], "rounds_played": [ - 40 + 41 ], "rounds_t": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "shots_fired": [ - 40 + 41 ], "smoke_throws": [ - 40 + 41 ], "spotted_count": [ - 40 + 41 ], "spotted_with_damage_count": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_damage": [ - 40 + 41 ], "team_flashed": [ - 40 + 41 ], "three_kill_rounds": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "trade_kill_attempts": [ - 40 + 41 ], "trade_kill_opportunities": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_attempts": [ - 40 + 41 ], "traded_death_opportunities": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "two_kill_rounds": [ - 40 + 41 ], "unused_utility_value": [ - 40 + 41 ], "updated_at": [ - 4670 + 4954 ], "util_on_death_count": [ - 40 + 41 ], "util_on_death_sum": [ - 40 + 41 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_max_fields": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_ct": [ - 40 + 41 ], "damage_t": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "deaths_ct": [ - 40 + 41 ], "deaths_t": [ - 40 + 41 ], "decoy_throws": [ - 40 + 41 ], "enemies_flashed": [ - 40 + 41 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "five_kill_rounds": [ - 40 + 41 ], "flash_assists": [ - 40 + 41 ], "flash_duration_count": [ - 40 + 41 ], "flash_duration_sum": [ - 3092 + 3371 ], "flashes_thrown": [ - 40 + 41 ], "four_kill_rounds": [ - 40 + 41 ], "he_damage": [ - 40 + 41 ], "he_team_damage": [ - 40 + 41 ], "he_throws": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "hs_kills": [ - 40 + 41 ], "hs_kills_ct": [ - 40 + 41 ], "hs_kills_t": [ - 40 + 41 ], "kast_rounds": [ - 40 + 41 ], "kast_total_rounds": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "kills_ct": [ - 40 + 41 ], "kills_t": [ - 40 + 41 ], "knife_kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "rounds_ct": [ - 40 + 41 ], "rounds_played": [ - 40 + 41 ], "rounds_t": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "shots_fired": [ - 40 + 41 ], "smoke_throws": [ - 40 + 41 ], "spotted_count": [ - 40 + 41 ], "spotted_with_damage_count": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_damage": [ - 40 + 41 ], "team_flashed": [ - 40 + 41 ], "three_kill_rounds": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "trade_kill_attempts": [ - 40 + 41 ], "trade_kill_opportunities": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_attempts": [ - 40 + 41 ], "traded_death_opportunities": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "two_kill_rounds": [ - 40 + 41 ], "unused_utility_value": [ - 40 + 41 ], "updated_at": [ - 4670 + 4954 ], "util_on_death_count": [ - 40 + 41 ], "util_on_death_sum": [ - 40 + 41 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_max_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "crosshair_angle_count": [ - 3094 + 3373 ], "crosshair_angle_sum_deg": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flash_duration_count": [ - 3094 + 3373 ], "flash_duration_sum": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kast_rounds": [ - 3094 + 3373 ], "kast_total_rounds": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "time_to_damage_count": [ - 3094 + 3373 ], "time_to_damage_sum_s": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "util_on_death_count": [ - 3094 + 3373 ], "util_on_death_sum": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_min_fields": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_ct": [ - 40 + 41 ], "damage_t": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "deaths_ct": [ - 40 + 41 ], "deaths_t": [ - 40 + 41 ], "decoy_throws": [ - 40 + 41 ], "enemies_flashed": [ - 40 + 41 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "five_kill_rounds": [ - 40 + 41 ], "flash_assists": [ - 40 + 41 ], "flash_duration_count": [ - 40 + 41 ], "flash_duration_sum": [ - 3092 + 3371 ], "flashes_thrown": [ - 40 + 41 ], "four_kill_rounds": [ - 40 + 41 ], "he_damage": [ - 40 + 41 ], "he_team_damage": [ - 40 + 41 ], "he_throws": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "hs_kills": [ - 40 + 41 ], "hs_kills_ct": [ - 40 + 41 ], "hs_kills_t": [ - 40 + 41 ], "kast_rounds": [ - 40 + 41 ], "kast_total_rounds": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "kills_ct": [ - 40 + 41 ], "kills_t": [ - 40 + 41 ], "knife_kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "rounds_ct": [ - 40 + 41 ], "rounds_played": [ - 40 + 41 ], "rounds_t": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "shots_fired": [ - 40 + 41 ], "smoke_throws": [ - 40 + 41 ], "spotted_count": [ - 40 + 41 ], "spotted_with_damage_count": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_damage": [ - 40 + 41 ], "team_flashed": [ - 40 + 41 ], "three_kill_rounds": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "trade_kill_attempts": [ - 40 + 41 ], "trade_kill_opportunities": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_attempts": [ - 40 + 41 ], "traded_death_opportunities": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "two_kill_rounds": [ - 40 + 41 ], "unused_utility_value": [ - 40 + 41 ], "updated_at": [ - 4670 + 4954 ], "util_on_death_count": [ - 40 + 41 ], "util_on_death_sum": [ - 40 + 41 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_min_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "crosshair_angle_count": [ - 3094 + 3373 ], "crosshair_angle_sum_deg": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flash_duration_count": [ - 3094 + 3373 ], "flash_duration_sum": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kast_rounds": [ - 3094 + 3373 ], "kast_total_rounds": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "time_to_damage_count": [ - 3094 + 3373 ], "time_to_damage_sum_s": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "util_on_death_count": [ - 3094 + 3373 ], "util_on_death_sum": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3558 + 3837 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_on_conflict": { "constraint": [ - 3568 + 3847 ], "update_columns": [ - 3591 + 3870 ], "where": [ - 3567 + 3846 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "crosshair_angle_count": [ - 3094 + 3373 ], "crosshair_angle_sum_deg": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flash_duration_count": [ - 3094 + 3373 ], "flash_duration_sum": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kast_rounds": [ - 3094 + 3373 ], "kast_total_rounds": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "time_to_damage_count": [ - 3094 + 3373 ], "time_to_damage_sum_s": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "util_on_death_count": [ - 3094 + 3373 ], "util_on_death_sum": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_select_column": {}, "player_match_map_stats_set_input": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_ct": [ - 40 + 41 ], "damage_t": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "deaths_ct": [ - 40 + 41 ], "deaths_t": [ - 40 + 41 ], "decoy_throws": [ - 40 + 41 ], "enemies_flashed": [ - 40 + 41 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "five_kill_rounds": [ - 40 + 41 ], "flash_assists": [ - 40 + 41 ], "flash_duration_count": [ - 40 + 41 ], "flash_duration_sum": [ - 3092 + 3371 ], "flashes_thrown": [ - 40 + 41 ], "four_kill_rounds": [ - 40 + 41 ], "he_damage": [ - 40 + 41 ], "he_team_damage": [ - 40 + 41 ], "he_throws": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "hs_kills": [ - 40 + 41 ], "hs_kills_ct": [ - 40 + 41 ], "hs_kills_t": [ - 40 + 41 ], "kast_rounds": [ - 40 + 41 ], "kast_total_rounds": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "kills_ct": [ - 40 + 41 ], "kills_t": [ - 40 + 41 ], "knife_kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "rounds_ct": [ - 40 + 41 ], "rounds_played": [ - 40 + 41 ], "rounds_t": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "shots_fired": [ - 40 + 41 ], "smoke_throws": [ - 40 + 41 ], "spotted_count": [ - 40 + 41 ], "spotted_with_damage_count": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_damage": [ - 40 + 41 ], "team_flashed": [ - 40 + 41 ], "three_kill_rounds": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "trade_kill_attempts": [ - 40 + 41 ], "trade_kill_opportunities": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_attempts": [ - 40 + 41 ], "traded_death_opportunities": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "two_kill_rounds": [ - 40 + 41 ], "unused_utility_value": [ - 40 + 41 ], "updated_at": [ - 4670 + 4954 ], "util_on_death_count": [ - 40 + 41 ], "util_on_death_sum": [ - 40 + 41 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_stddev_fields": { "assists": [ - 31 + 32 ], "assists_ct": [ - 31 + 32 ], "assists_t": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "crosshair_angle_count": [ - 31 + 32 ], "crosshair_angle_sum_deg": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_ct": [ - 31 + 32 ], "damage_t": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "deaths_ct": [ - 31 + 32 ], "deaths_t": [ - 31 + 32 ], "decoy_throws": [ - 31 + 32 ], "enemies_flashed": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "five_kill_rounds": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "flash_duration_count": [ - 31 + 32 ], "flash_duration_sum": [ - 31 + 32 ], "flashes_thrown": [ - 31 + 32 ], "four_kill_rounds": [ - 31 + 32 ], "he_damage": [ - 31 + 32 ], "he_team_damage": [ - 31 + 32 ], "he_throws": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "hs_kills": [ - 31 + 32 ], "hs_kills_ct": [ - 31 + 32 ], "hs_kills_t": [ - 31 + 32 ], "kast_rounds": [ - 31 + 32 ], "kast_total_rounds": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kills_ct": [ - 31 + 32 ], "kills_t": [ - 31 + 32 ], "knife_kills": [ - 31 + 32 ], "molotov_damage": [ - 31 + 32 ], "molotov_throws": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "rounds_ct": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "rounds_t": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "shots_fired": [ - 31 + 32 ], "smoke_throws": [ - 31 + 32 ], "spotted_count": [ - 31 + 32 ], "spotted_with_damage_count": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_damage": [ - 31 + 32 ], "team_flashed": [ - 31 + 32 ], "three_kill_rounds": [ - 31 + 32 ], "time_to_damage_count": [ - 31 + 32 ], "time_to_damage_sum_s": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "trade_kill_attempts": [ - 31 + 32 ], "trade_kill_opportunities": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_attempts": [ - 31 + 32 ], "traded_death_opportunities": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "two_kill_rounds": [ - 31 + 32 ], "unused_utility_value": [ - 31 + 32 ], "util_on_death_count": [ - 31 + 32 ], "util_on_death_sum": [ - 31 + 32 ], "wasted_magazine_shots": [ - 31 + 32 ], "zeus_kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_stddev_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "crosshair_angle_count": [ - 3094 + 3373 ], "crosshair_angle_sum_deg": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flash_duration_count": [ - 3094 + 3373 ], "flash_duration_sum": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kast_rounds": [ - 3094 + 3373 ], "kast_total_rounds": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "time_to_damage_count": [ - 3094 + 3373 ], "time_to_damage_sum_s": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "util_on_death_count": [ - 3094 + 3373 ], "util_on_death_sum": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_stddev_pop_fields": { "assists": [ - 31 + 32 ], "assists_ct": [ - 31 + 32 ], "assists_t": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "crosshair_angle_count": [ - 31 + 32 ], "crosshair_angle_sum_deg": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_ct": [ - 31 + 32 ], "damage_t": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "deaths_ct": [ - 31 + 32 ], "deaths_t": [ - 31 + 32 ], "decoy_throws": [ - 31 + 32 ], "enemies_flashed": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "five_kill_rounds": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "flash_duration_count": [ - 31 + 32 ], "flash_duration_sum": [ - 31 + 32 ], "flashes_thrown": [ - 31 + 32 ], "four_kill_rounds": [ - 31 + 32 ], "he_damage": [ - 31 + 32 ], "he_team_damage": [ - 31 + 32 ], "he_throws": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "hs_kills": [ - 31 + 32 ], "hs_kills_ct": [ - 31 + 32 ], "hs_kills_t": [ - 31 + 32 ], "kast_rounds": [ - 31 + 32 ], "kast_total_rounds": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kills_ct": [ - 31 + 32 ], "kills_t": [ - 31 + 32 ], "knife_kills": [ - 31 + 32 ], "molotov_damage": [ - 31 + 32 ], "molotov_throws": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "rounds_ct": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "rounds_t": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "shots_fired": [ - 31 + 32 ], "smoke_throws": [ - 31 + 32 ], "spotted_count": [ - 31 + 32 ], "spotted_with_damage_count": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_damage": [ - 31 + 32 ], "team_flashed": [ - 31 + 32 ], "three_kill_rounds": [ - 31 + 32 ], "time_to_damage_count": [ - 31 + 32 ], "time_to_damage_sum_s": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "trade_kill_attempts": [ - 31 + 32 ], "trade_kill_opportunities": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_attempts": [ - 31 + 32 ], "traded_death_opportunities": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "two_kill_rounds": [ - 31 + 32 ], "unused_utility_value": [ - 31 + 32 ], "util_on_death_count": [ - 31 + 32 ], "util_on_death_sum": [ - 31 + 32 ], "wasted_magazine_shots": [ - 31 + 32 ], "zeus_kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "crosshair_angle_count": [ - 3094 + 3373 ], "crosshair_angle_sum_deg": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flash_duration_count": [ - 3094 + 3373 ], "flash_duration_sum": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kast_rounds": [ - 3094 + 3373 ], "kast_total_rounds": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "time_to_damage_count": [ - 3094 + 3373 ], "time_to_damage_sum_s": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "util_on_death_count": [ - 3094 + 3373 ], "util_on_death_sum": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_stddev_samp_fields": { "assists": [ - 31 + 32 ], "assists_ct": [ - 31 + 32 ], "assists_t": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "crosshair_angle_count": [ - 31 + 32 ], "crosshair_angle_sum_deg": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_ct": [ - 31 + 32 ], "damage_t": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "deaths_ct": [ - 31 + 32 ], "deaths_t": [ - 31 + 32 ], "decoy_throws": [ - 31 + 32 ], "enemies_flashed": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "five_kill_rounds": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "flash_duration_count": [ - 31 + 32 ], "flash_duration_sum": [ - 31 + 32 ], "flashes_thrown": [ - 31 + 32 ], "four_kill_rounds": [ - 31 + 32 ], "he_damage": [ - 31 + 32 ], "he_team_damage": [ - 31 + 32 ], "he_throws": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "hs_kills": [ - 31 + 32 ], "hs_kills_ct": [ - 31 + 32 ], "hs_kills_t": [ - 31 + 32 ], "kast_rounds": [ - 31 + 32 ], "kast_total_rounds": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kills_ct": [ - 31 + 32 ], "kills_t": [ - 31 + 32 ], "knife_kills": [ - 31 + 32 ], "molotov_damage": [ - 31 + 32 ], "molotov_throws": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "rounds_ct": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "rounds_t": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "shots_fired": [ - 31 + 32 ], "smoke_throws": [ - 31 + 32 ], "spotted_count": [ - 31 + 32 ], "spotted_with_damage_count": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_damage": [ - 31 + 32 ], "team_flashed": [ - 31 + 32 ], "three_kill_rounds": [ - 31 + 32 ], "time_to_damage_count": [ - 31 + 32 ], "time_to_damage_sum_s": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "trade_kill_attempts": [ - 31 + 32 ], "trade_kill_opportunities": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_attempts": [ - 31 + 32 ], "traded_death_opportunities": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "two_kill_rounds": [ - 31 + 32 ], "unused_utility_value": [ - 31 + 32 ], "util_on_death_count": [ - 31 + 32 ], "util_on_death_sum": [ - 31 + 32 ], "wasted_magazine_shots": [ - 31 + 32 ], "zeus_kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "crosshair_angle_count": [ - 3094 + 3373 ], "crosshair_angle_sum_deg": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flash_duration_count": [ - 3094 + 3373 ], "flash_duration_sum": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kast_rounds": [ - 3094 + 3373 ], "kast_total_rounds": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "time_to_damage_count": [ - 3094 + 3373 ], "time_to_damage_sum_s": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "util_on_death_count": [ - 3094 + 3373 ], "util_on_death_sum": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 3588 + 3867 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_stream_cursor_value_input": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_ct": [ - 40 + 41 ], "damage_t": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "deaths_ct": [ - 40 + 41 ], "deaths_t": [ - 40 + 41 ], "decoy_throws": [ - 40 + 41 ], "enemies_flashed": [ - 40 + 41 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "five_kill_rounds": [ - 40 + 41 ], "flash_assists": [ - 40 + 41 ], "flash_duration_count": [ - 40 + 41 ], "flash_duration_sum": [ - 3092 + 3371 ], "flashes_thrown": [ - 40 + 41 ], "four_kill_rounds": [ - 40 + 41 ], "he_damage": [ - 40 + 41 ], "he_team_damage": [ - 40 + 41 ], "he_throws": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "hs_kills": [ - 40 + 41 ], "hs_kills_ct": [ - 40 + 41 ], "hs_kills_t": [ - 40 + 41 ], "kast_rounds": [ - 40 + 41 ], "kast_total_rounds": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "kills_ct": [ - 40 + 41 ], "kills_t": [ - 40 + 41 ], "knife_kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "rounds_ct": [ - 40 + 41 ], "rounds_played": [ - 40 + 41 ], "rounds_t": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "shots_fired": [ - 40 + 41 ], "smoke_throws": [ - 40 + 41 ], "spotted_count": [ - 40 + 41 ], "spotted_with_damage_count": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_damage": [ - 40 + 41 ], "team_flashed": [ - 40 + 41 ], "three_kill_rounds": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "trade_kill_attempts": [ - 40 + 41 ], "trade_kill_opportunities": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_attempts": [ - 40 + 41 ], "traded_death_opportunities": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "two_kill_rounds": [ - 40 + 41 ], "unused_utility_value": [ - 40 + 41 ], "updated_at": [ - 4670 + 4954 ], "util_on_death_count": [ - 40 + 41 ], "util_on_death_sum": [ - 40 + 41 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_sum_fields": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3092 + 3371 ], "damage": [ - 40 + 41 ], "damage_ct": [ - 40 + 41 ], "damage_t": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "deaths_ct": [ - 40 + 41 ], "deaths_t": [ - 40 + 41 ], "decoy_throws": [ - 40 + 41 ], "enemies_flashed": [ - 40 + 41 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "five_kill_rounds": [ - 40 + 41 ], "flash_assists": [ - 40 + 41 ], "flash_duration_count": [ - 40 + 41 ], "flash_duration_sum": [ - 3092 + 3371 ], "flashes_thrown": [ - 40 + 41 ], "four_kill_rounds": [ - 40 + 41 ], "he_damage": [ - 40 + 41 ], "he_team_damage": [ - 40 + 41 ], "he_throws": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "hs_kills": [ - 40 + 41 ], "hs_kills_ct": [ - 40 + 41 ], "hs_kills_t": [ - 40 + 41 ], "kast_rounds": [ - 40 + 41 ], "kast_total_rounds": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "kills_ct": [ - 40 + 41 ], "kills_t": [ - 40 + 41 ], "knife_kills": [ - 40 + 41 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "rounds_ct": [ - 40 + 41 ], "rounds_played": [ - 40 + 41 ], "rounds_t": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "shots_fired": [ - 40 + 41 ], "smoke_throws": [ - 40 + 41 ], "spotted_count": [ - 40 + 41 ], "spotted_with_damage_count": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_damage": [ - 40 + 41 ], "team_flashed": [ - 40 + 41 ], "three_kill_rounds": [ - 40 + 41 ], "time_to_damage_count": [ - 40 + 41 ], "time_to_damage_sum_s": [ - 3092 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "trade_kill_attempts": [ - 40 + 41 ], "trade_kill_opportunities": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_attempts": [ - 40 + 41 ], "traded_death_opportunities": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "two_kill_rounds": [ - 40 + 41 ], "unused_utility_value": [ - 40 + 41 ], "util_on_death_count": [ - 40 + 41 ], "util_on_death_sum": [ - 40 + 41 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_sum_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "crosshair_angle_count": [ - 3094 + 3373 ], "crosshair_angle_sum_deg": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flash_duration_count": [ - 3094 + 3373 ], "flash_duration_sum": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kast_rounds": [ - 3094 + 3373 ], "kast_total_rounds": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "time_to_damage_count": [ - 3094 + 3373 ], "time_to_damage_sum_s": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "util_on_death_count": [ - 3094 + 3373 ], "util_on_death_sum": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 3569 + 3848 ], "_set": [ - 3580 + 3859 ], "where": [ - 3567 + 3846 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_var_pop_fields": { "assists": [ - 31 + 32 ], "assists_ct": [ - 31 + 32 ], "assists_t": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "crosshair_angle_count": [ - 31 + 32 ], "crosshair_angle_sum_deg": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_ct": [ - 31 + 32 ], "damage_t": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "deaths_ct": [ - 31 + 32 ], "deaths_t": [ - 31 + 32 ], "decoy_throws": [ - 31 + 32 ], "enemies_flashed": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "five_kill_rounds": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "flash_duration_count": [ - 31 + 32 ], "flash_duration_sum": [ - 31 + 32 ], "flashes_thrown": [ - 31 + 32 ], "four_kill_rounds": [ - 31 + 32 ], "he_damage": [ - 31 + 32 ], "he_team_damage": [ - 31 + 32 ], "he_throws": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "hs_kills": [ - 31 + 32 ], "hs_kills_ct": [ - 31 + 32 ], "hs_kills_t": [ - 31 + 32 ], "kast_rounds": [ - 31 + 32 ], "kast_total_rounds": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kills_ct": [ - 31 + 32 ], "kills_t": [ - 31 + 32 ], "knife_kills": [ - 31 + 32 ], "molotov_damage": [ - 31 + 32 ], "molotov_throws": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "rounds_ct": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "rounds_t": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "shots_fired": [ - 31 + 32 ], "smoke_throws": [ - 31 + 32 ], "spotted_count": [ - 31 + 32 ], "spotted_with_damage_count": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_damage": [ - 31 + 32 ], "team_flashed": [ - 31 + 32 ], "three_kill_rounds": [ - 31 + 32 ], "time_to_damage_count": [ - 31 + 32 ], "time_to_damage_sum_s": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "trade_kill_attempts": [ - 31 + 32 ], "trade_kill_opportunities": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_attempts": [ - 31 + 32 ], "traded_death_opportunities": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "two_kill_rounds": [ - 31 + 32 ], "unused_utility_value": [ - 31 + 32 ], "util_on_death_count": [ - 31 + 32 ], "util_on_death_sum": [ - 31 + 32 ], "wasted_magazine_shots": [ - 31 + 32 ], "zeus_kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "crosshair_angle_count": [ - 3094 + 3373 ], "crosshair_angle_sum_deg": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flash_duration_count": [ - 3094 + 3373 ], "flash_duration_sum": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kast_rounds": [ - 3094 + 3373 ], "kast_total_rounds": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "time_to_damage_count": [ - 3094 + 3373 ], "time_to_damage_sum_s": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "util_on_death_count": [ - 3094 + 3373 ], "util_on_death_sum": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_var_samp_fields": { "assists": [ - 31 + 32 ], "assists_ct": [ - 31 + 32 ], "assists_t": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "crosshair_angle_count": [ - 31 + 32 ], "crosshair_angle_sum_deg": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_ct": [ - 31 + 32 ], "damage_t": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "deaths_ct": [ - 31 + 32 ], "deaths_t": [ - 31 + 32 ], "decoy_throws": [ - 31 + 32 ], "enemies_flashed": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "five_kill_rounds": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "flash_duration_count": [ - 31 + 32 ], "flash_duration_sum": [ - 31 + 32 ], "flashes_thrown": [ - 31 + 32 ], "four_kill_rounds": [ - 31 + 32 ], "he_damage": [ - 31 + 32 ], "he_team_damage": [ - 31 + 32 ], "he_throws": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "hs_kills": [ - 31 + 32 ], "hs_kills_ct": [ - 31 + 32 ], "hs_kills_t": [ - 31 + 32 ], "kast_rounds": [ - 31 + 32 ], "kast_total_rounds": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kills_ct": [ - 31 + 32 ], "kills_t": [ - 31 + 32 ], "knife_kills": [ - 31 + 32 ], "molotov_damage": [ - 31 + 32 ], "molotov_throws": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "rounds_ct": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "rounds_t": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "shots_fired": [ - 31 + 32 ], "smoke_throws": [ - 31 + 32 ], "spotted_count": [ - 31 + 32 ], "spotted_with_damage_count": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_damage": [ - 31 + 32 ], "team_flashed": [ - 31 + 32 ], "three_kill_rounds": [ - 31 + 32 ], "time_to_damage_count": [ - 31 + 32 ], "time_to_damage_sum_s": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "trade_kill_attempts": [ - 31 + 32 ], "trade_kill_opportunities": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_attempts": [ - 31 + 32 ], "traded_death_opportunities": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "two_kill_rounds": [ - 31 + 32 ], "unused_utility_value": [ - 31 + 32 ], "util_on_death_count": [ - 31 + 32 ], "util_on_death_sum": [ - 31 + 32 ], "wasted_magazine_shots": [ - 31 + 32 ], "zeus_kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "crosshair_angle_count": [ - 3094 + 3373 ], "crosshair_angle_sum_deg": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flash_duration_count": [ - 3094 + 3373 ], "flash_duration_sum": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kast_rounds": [ - 3094 + 3373 ], "kast_total_rounds": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "time_to_damage_count": [ - 3094 + 3373 ], "time_to_damage_sum_s": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "util_on_death_count": [ - 3094 + 3373 ], "util_on_death_sum": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_variance_fields": { "assists": [ - 31 + 32 ], "assists_ct": [ - 31 + 32 ], "assists_t": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "crosshair_angle_count": [ - 31 + 32 ], "crosshair_angle_sum_deg": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_ct": [ - 31 + 32 ], "damage_t": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "deaths_ct": [ - 31 + 32 ], "deaths_t": [ - 31 + 32 ], "decoy_throws": [ - 31 + 32 ], "enemies_flashed": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "five_kill_rounds": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "flash_duration_count": [ - 31 + 32 ], "flash_duration_sum": [ - 31 + 32 ], "flashes_thrown": [ - 31 + 32 ], "four_kill_rounds": [ - 31 + 32 ], "he_damage": [ - 31 + 32 ], "he_team_damage": [ - 31 + 32 ], "he_throws": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "hs_kills": [ - 31 + 32 ], "hs_kills_ct": [ - 31 + 32 ], "hs_kills_t": [ - 31 + 32 ], "kast_rounds": [ - 31 + 32 ], "kast_total_rounds": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kills_ct": [ - 31 + 32 ], "kills_t": [ - 31 + 32 ], "knife_kills": [ - 31 + 32 ], "molotov_damage": [ - 31 + 32 ], "molotov_throws": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "rounds_ct": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "rounds_t": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "shots_fired": [ - 31 + 32 ], "smoke_throws": [ - 31 + 32 ], "spotted_count": [ - 31 + 32 ], "spotted_with_damage_count": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_damage": [ - 31 + 32 ], "team_flashed": [ - 31 + 32 ], "three_kill_rounds": [ - 31 + 32 ], "time_to_damage_count": [ - 31 + 32 ], "time_to_damage_sum_s": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "trade_kill_attempts": [ - 31 + 32 ], "trade_kill_opportunities": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_attempts": [ - 31 + 32 ], "traded_death_opportunities": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "two_kill_rounds": [ - 31 + 32 ], "unused_utility_value": [ - 31 + 32 ], "util_on_death_count": [ - 31 + 32 ], "util_on_death_sum": [ - 31 + 32 ], "wasted_magazine_shots": [ - 31 + 32 ], "zeus_kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_map_stats_variance_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "crosshair_angle_count": [ - 3094 + 3373 ], "crosshair_angle_sum_deg": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flash_duration_count": [ - 3094 + 3373 ], "flash_duration_sum": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kast_rounds": [ - 3094 + 3373 ], "kast_total_rounds": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "time_to_damage_count": [ - 3094 + 3373 ], "time_to_damage_sum_s": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "util_on_death_count": [ - 3094 + 3373 ], "util_on_death_sum": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v": { "accuracy": [ - 3092 + 3371 ], "accuracy_spotted": [ - 3092 + 3371 ], "aim_rating": [ - 1777 + 1842 ], "counter_strafe_pct": [ - 3092 + 3371 ], "enemy_blind_pr": [ - 3092 + 3371 ], "flash_assists_pr": [ - 3092 + 3371 ], "hs_pct": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "overall_rating": [ - 1777 + 1842 ], "played_at": [ - 4670 + 4954 ], "positioning_rating": [ - 1777 + 1842 ], "rounds": [ - 40 + 41 ], "source": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "survival_pct": [ - 3092 + 3371 ], "traded_death_pct": [ - 3092 + 3371 ], "util_efficiency": [ - 3092 + 3371 ], "utility_rating": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_aggregate": { "aggregate": [ - 3601 + 3880 ], "nodes": [ - 3599 + 3878 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_aggregate_fields": { "avg": [ - 3602 + 3881 ], "count": [ - 40, + 41, { "columns": [ - 3607, + 3886, "[player_match_performance_v_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3604 + 3883 ], "min": [ - 3605 + 3884 ], "stddev": [ - 3608 + 3887 ], "stddev_pop": [ - 3609 + 3888 ], "stddev_samp": [ - 3610 + 3889 ], "sum": [ - 3613 + 3892 ], "var_pop": [ - 3614 + 3893 ], "var_samp": [ - 3615 + 3894 ], "variance": [ - 3616 + 3895 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_avg_fields": { "accuracy": [ - 31 + 32 ], "accuracy_spotted": [ - 31 + 32 ], "aim_rating": [ - 31 + 32 ], "counter_strafe_pct": [ - 31 + 32 ], "enemy_blind_pr": [ - 31 + 32 ], "flash_assists_pr": [ - 31 + 32 ], "hs_pct": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "overall_rating": [ - 31 + 32 ], "positioning_rating": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_pct": [ - 31 + 32 ], "traded_death_pct": [ - 31 + 32 ], "util_efficiency": [ - 31 + 32 ], "utility_rating": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_bool_exp": { "_and": [ - 3603 + 3882 ], "_not": [ - 3603 + 3882 ], "_or": [ - 3603 + 3882 ], "accuracy": [ - 3093 + 3372 ], "accuracy_spotted": [ - 3093 + 3372 ], "aim_rating": [ - 1778 + 1843 ], "counter_strafe_pct": [ - 3093 + 3372 ], "enemy_blind_pr": [ - 3093 + 3372 ], "flash_assists_pr": [ - 3093 + 3372 ], "hs_pct": [ - 3093 + 3372 ], "kast_pct": [ - 3093 + 3372 ], "match_id": [ - 5172 + 5456 ], "overall_rating": [ - 1778 + 1843 ], "played_at": [ - 4671 + 4955 ], "positioning_rating": [ - 1778 + 1843 ], "rounds": [ - 41 + 42 ], "source": [ - 82 + 86 ], "steam_id": [ - 266 + 271 ], "survival_pct": [ - 3093 + 3372 ], "traded_death_pct": [ - 3093 + 3372 ], "util_efficiency": [ - 3093 + 3372 ], "utility_rating": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_max_fields": { "accuracy": [ - 3092 + 3371 ], "accuracy_spotted": [ - 3092 + 3371 ], "aim_rating": [ - 1777 + 1842 ], "counter_strafe_pct": [ - 3092 + 3371 ], "enemy_blind_pr": [ - 3092 + 3371 ], "flash_assists_pr": [ - 3092 + 3371 ], "hs_pct": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "overall_rating": [ - 1777 + 1842 ], "played_at": [ - 4670 + 4954 ], "positioning_rating": [ - 1777 + 1842 ], "rounds": [ - 40 + 41 ], "source": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "survival_pct": [ - 3092 + 3371 ], "traded_death_pct": [ - 3092 + 3371 ], "util_efficiency": [ - 3092 + 3371 ], "utility_rating": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_min_fields": { "accuracy": [ - 3092 + 3371 ], "accuracy_spotted": [ - 3092 + 3371 ], "aim_rating": [ - 1777 + 1842 ], "counter_strafe_pct": [ - 3092 + 3371 ], "enemy_blind_pr": [ - 3092 + 3371 ], "flash_assists_pr": [ - 3092 + 3371 ], "hs_pct": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "overall_rating": [ - 1777 + 1842 ], "played_at": [ - 4670 + 4954 ], "positioning_rating": [ - 1777 + 1842 ], "rounds": [ - 40 + 41 ], "source": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "survival_pct": [ - 3092 + 3371 ], "traded_death_pct": [ - 3092 + 3371 ], "util_efficiency": [ - 3092 + 3371 ], "utility_rating": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_order_by": { "accuracy": [ - 3094 + 3373 ], "accuracy_spotted": [ - 3094 + 3373 ], "aim_rating": [ - 3094 + 3373 ], "counter_strafe_pct": [ - 3094 + 3373 ], "enemy_blind_pr": [ - 3094 + 3373 ], "flash_assists_pr": [ - 3094 + 3373 ], "hs_pct": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "overall_rating": [ - 3094 + 3373 ], "played_at": [ - 3094 + 3373 ], "positioning_rating": [ - 3094 + 3373 ], "rounds": [ - 3094 + 3373 ], "source": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "survival_pct": [ - 3094 + 3373 ], "traded_death_pct": [ - 3094 + 3373 ], "util_efficiency": [ - 3094 + 3373 ], "utility_rating": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_select_column": {}, "player_match_performance_v_stddev_fields": { "accuracy": [ - 31 + 32 ], "accuracy_spotted": [ - 31 + 32 ], "aim_rating": [ - 31 + 32 ], "counter_strafe_pct": [ - 31 + 32 ], "enemy_blind_pr": [ - 31 + 32 ], "flash_assists_pr": [ - 31 + 32 ], "hs_pct": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "overall_rating": [ - 31 + 32 ], "positioning_rating": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_pct": [ - 31 + 32 ], "traded_death_pct": [ - 31 + 32 ], "util_efficiency": [ - 31 + 32 ], "utility_rating": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_stddev_pop_fields": { "accuracy": [ - 31 + 32 ], "accuracy_spotted": [ - 31 + 32 ], "aim_rating": [ - 31 + 32 ], "counter_strafe_pct": [ - 31 + 32 ], "enemy_blind_pr": [ - 31 + 32 ], "flash_assists_pr": [ - 31 + 32 ], "hs_pct": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "overall_rating": [ - 31 + 32 ], "positioning_rating": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_pct": [ - 31 + 32 ], "traded_death_pct": [ - 31 + 32 ], "util_efficiency": [ - 31 + 32 ], "utility_rating": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_stddev_samp_fields": { "accuracy": [ - 31 + 32 ], "accuracy_spotted": [ - 31 + 32 ], "aim_rating": [ - 31 + 32 ], "counter_strafe_pct": [ - 31 + 32 ], "enemy_blind_pr": [ - 31 + 32 ], "flash_assists_pr": [ - 31 + 32 ], "hs_pct": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "overall_rating": [ - 31 + 32 ], "positioning_rating": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_pct": [ - 31 + 32 ], "traded_death_pct": [ - 31 + 32 ], "util_efficiency": [ - 31 + 32 ], "utility_rating": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 3612 + 3891 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 3092 + 3371 ], "accuracy_spotted": [ - 3092 + 3371 ], "aim_rating": [ - 1777 + 1842 ], "counter_strafe_pct": [ - 3092 + 3371 ], "enemy_blind_pr": [ - 3092 + 3371 ], "flash_assists_pr": [ - 3092 + 3371 ], "hs_pct": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "overall_rating": [ - 1777 + 1842 ], "played_at": [ - 4670 + 4954 ], "positioning_rating": [ - 1777 + 1842 ], "rounds": [ - 40 + 41 ], "source": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "survival_pct": [ - 3092 + 3371 ], "traded_death_pct": [ - 3092 + 3371 ], "util_efficiency": [ - 3092 + 3371 ], "utility_rating": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_sum_fields": { "accuracy": [ - 3092 + 3371 ], "accuracy_spotted": [ - 3092 + 3371 ], "aim_rating": [ - 1777 + 1842 ], "counter_strafe_pct": [ - 3092 + 3371 ], "enemy_blind_pr": [ - 3092 + 3371 ], "flash_assists_pr": [ - 3092 + 3371 ], "hs_pct": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "overall_rating": [ - 1777 + 1842 ], "positioning_rating": [ - 1777 + 1842 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "survival_pct": [ - 3092 + 3371 ], "traded_death_pct": [ - 3092 + 3371 ], "util_efficiency": [ - 3092 + 3371 ], "utility_rating": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_var_pop_fields": { "accuracy": [ - 31 + 32 ], "accuracy_spotted": [ - 31 + 32 ], "aim_rating": [ - 31 + 32 ], "counter_strafe_pct": [ - 31 + 32 ], "enemy_blind_pr": [ - 31 + 32 ], "flash_assists_pr": [ - 31 + 32 ], "hs_pct": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "overall_rating": [ - 31 + 32 ], "positioning_rating": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_pct": [ - 31 + 32 ], "traded_death_pct": [ - 31 + 32 ], "util_efficiency": [ - 31 + 32 ], "utility_rating": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_var_samp_fields": { "accuracy": [ - 31 + 32 ], "accuracy_spotted": [ - 31 + 32 ], "aim_rating": [ - 31 + 32 ], "counter_strafe_pct": [ - 31 + 32 ], "enemy_blind_pr": [ - 31 + 32 ], "flash_assists_pr": [ - 31 + 32 ], "hs_pct": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "overall_rating": [ - 31 + 32 ], "positioning_rating": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_pct": [ - 31 + 32 ], "traded_death_pct": [ - 31 + 32 ], "util_efficiency": [ - 31 + 32 ], "utility_rating": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_performance_v_variance_fields": { "accuracy": [ - 31 + 32 ], "accuracy_spotted": [ - 31 + 32 ], "aim_rating": [ - 31 + 32 ], "counter_strafe_pct": [ - 31 + 32 ], "enemy_blind_pr": [ - 31 + 32 ], "flash_assists_pr": [ - 31 + 32 ], "hs_pct": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "overall_rating": [ - 31 + 32 ], "positioning_rating": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_pct": [ - 31 + 32 ], "traded_death_pct": [ - 31 + 32 ], "util_efficiency": [ - 31 + 32 ], "utility_rating": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "avg_crosshair_angle_deg": [ - 3092 + 3371 ], "avg_flash_duration": [ - 3092 + 3371 ], "avg_time_to_damage_s": [ - 3092 + 3371 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_ct": [ - 40 + 41 ], "damage_t": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "deaths_ct": [ - 40 + 41 ], "deaths_t": [ - 40 + 41 ], "decoy_throws": [ - 40 + 41 ], "enemies_flashed": [ - 40 + 41 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "five_kill_rounds": [ - 40 + 41 ], "flash_assists": [ - 40 + 41 ], "flashes_thrown": [ - 40 + 41 ], "four_kill_rounds": [ - 40 + 41 ], "he_damage": [ - 40 + 41 ], "he_team_damage": [ - 40 + 41 ], "he_throws": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "hs_kills": [ - 40 + 41 ], "hs_kills_ct": [ - 40 + 41 ], "hs_kills_t": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "kills_ct": [ - 40 + 41 ], "kills_t": [ - 40 + 41 ], "knife_kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "rounds_ct": [ - 40 + 41 ], "rounds_played": [ - 40 + 41 ], "rounds_t": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "shots_fired": [ - 40 + 41 ], "smoke_throws": [ - 40 + 41 ], "spotted_count": [ - 40 + 41 ], "spotted_with_damage_count": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_damage": [ - 40 + 41 ], "team_flashed": [ - 40 + 41 ], "three_kill_rounds": [ - 40 + 41 ], "total_engagement_frames": [ - 40 + 41 ], "trade_kill_attempts": [ - 40 + 41 ], "trade_kill_opportunities": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_attempts": [ - 40 + 41 ], "traded_death_opportunities": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "two_kill_rounds": [ - 40 + 41 ], "unused_utility_value": [ - 40 + 41 ], "utility_on_death": [ - 3092 + 3371 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_aggregate": { "aggregate": [ - 3621 + 3900 ], "nodes": [ - 3617 + 3896 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3620 + 3899 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3633 + 3912 ], "distinct": [ - 5 + 6 ], "filter": [ - 3626 + 3905 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3624 + 3903 ], "count": [ - 40, + 41, { "columns": [ - 3633, + 3912, "[player_match_stats_v_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3628 + 3907 ], "min": [ - 3630 + 3909 ], "stddev": [ - 3634 + 3913 ], "stddev_pop": [ - 3636 + 3915 ], "stddev_samp": [ - 3638 + 3917 ], "sum": [ - 3642 + 3921 ], "var_pop": [ - 3644 + 3923 ], "var_samp": [ - 3646 + 3925 ], "variance": [ - 3648 + 3927 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3625 + 3904 ], "count": [ - 3094 + 3373 ], "max": [ - 3629 + 3908 ], "min": [ - 3631 + 3910 ], "stddev": [ - 3635 + 3914 ], "stddev_pop": [ - 3637 + 3916 ], "stddev_samp": [ - 3639 + 3918 ], "sum": [ - 3643 + 3922 ], "var_pop": [ - 3645 + 3924 ], "var_samp": [ - 3647 + 3926 ], "variance": [ - 3649 + 3928 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3627 + 3906 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_avg_fields": { "assists": [ - 31 + 32 ], "assists_ct": [ - 31 + 32 ], "assists_t": [ - 31 + 32 ], "avg_crosshair_angle_deg": [ - 31 + 32 ], "avg_flash_duration": [ - 31 + 32 ], "avg_time_to_damage_s": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_ct": [ - 31 + 32 ], "damage_t": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "deaths_ct": [ - 31 + 32 ], "deaths_t": [ - 31 + 32 ], "decoy_throws": [ - 31 + 32 ], "enemies_flashed": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "five_kill_rounds": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "flashes_thrown": [ - 31 + 32 ], "four_kill_rounds": [ - 31 + 32 ], "he_damage": [ - 31 + 32 ], "he_team_damage": [ - 31 + 32 ], "he_throws": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "hs_kills": [ - 31 + 32 ], "hs_kills_ct": [ - 31 + 32 ], "hs_kills_t": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kills_ct": [ - 31 + 32 ], "kills_t": [ - 31 + 32 ], "knife_kills": [ - 31 + 32 ], "molotov_damage": [ - 31 + 32 ], "molotov_throws": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "rounds_ct": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "rounds_t": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "shots_fired": [ - 31 + 32 ], "smoke_throws": [ - 31 + 32 ], "spotted_count": [ - 31 + 32 ], "spotted_with_damage_count": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_damage": [ - 31 + 32 ], "team_flashed": [ - 31 + 32 ], "three_kill_rounds": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "trade_kill_attempts": [ - 31 + 32 ], "trade_kill_opportunities": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_attempts": [ - 31 + 32 ], "traded_death_opportunities": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "two_kill_rounds": [ - 31 + 32 ], "unused_utility_value": [ - 31 + 32 ], "utility_on_death": [ - 31 + 32 ], "wasted_magazine_shots": [ - 31 + 32 ], "zeus_kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_avg_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "avg_crosshair_angle_deg": [ - 3094 + 3373 ], "avg_flash_duration": [ - 3094 + 3373 ], "avg_time_to_damage_s": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "utility_on_death": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_bool_exp": { "_and": [ - 3626 + 3905 ], "_not": [ - 3626 + 3905 ], "_or": [ - 3626 + 3905 ], "assists": [ - 41 + 42 ], "assists_ct": [ - 41 + 42 ], "assists_t": [ - 41 + 42 ], "avg_crosshair_angle_deg": [ - 3093 + 3372 ], "avg_flash_duration": [ - 3093 + 3372 ], "avg_time_to_damage_s": [ - 3093 + 3372 ], "counter_strafe_eligible_shots": [ - 41 + 42 ], "counter_strafed_shots": [ - 41 + 42 ], "damage": [ - 41 + 42 ], "damage_ct": [ - 41 + 42 ], "damage_t": [ - 41 + 42 ], "deaths": [ - 41 + 42 ], "deaths_ct": [ - 41 + 42 ], "deaths_t": [ - 41 + 42 ], "decoy_throws": [ - 41 + 42 ], "enemies_flashed": [ - 41 + 42 ], "first_bullet_hits": [ - 41 + 42 ], "first_bullet_shots": [ - 41 + 42 ], "five_kill_rounds": [ - 41 + 42 ], "flash_assists": [ - 41 + 42 ], "flashes_thrown": [ - 41 + 42 ], "four_kill_rounds": [ - 41 + 42 ], "he_damage": [ - 41 + 42 ], "he_team_damage": [ - 41 + 42 ], "he_throws": [ - 41 + 42 ], "headshot_hits": [ - 41 + 42 ], "hits": [ - 41 + 42 ], "hits_at_spotted": [ - 41 + 42 ], "hs_kills": [ - 41 + 42 ], "hs_kills_ct": [ - 41 + 42 ], "hs_kills_t": [ - 41 + 42 ], "kills": [ - 41 + 42 ], "kills_ct": [ - 41 + 42 ], "kills_t": [ - 41 + 42 ], "knife_kills": [ - 41 + 42 ], "match_id": [ - 5172 + 5456 ], "molotov_damage": [ - 41 + 42 ], "molotov_throws": [ - 41 + 42 ], "non_awp_hits": [ - 41 + 42 ], "on_target_frames": [ - 41 + 42 ], "rounds_ct": [ - 41 + 42 ], "rounds_played": [ - 41 + 42 ], "rounds_t": [ - 41 + 42 ], "shots_at_spotted": [ - 41 + 42 ], "shots_fired": [ - 41 + 42 ], "smoke_throws": [ - 41 + 42 ], "spotted_count": [ - 41 + 42 ], "spotted_with_damage_count": [ - 41 + 42 ], "spray_hits": [ - 41 + 42 ], "spray_shots": [ - 41 + 42 ], "steam_id": [ - 266 + 271 ], "team_damage": [ - 41 + 42 ], "team_flashed": [ - 41 + 42 ], "three_kill_rounds": [ - 41 + 42 ], "total_engagement_frames": [ - 41 + 42 ], "trade_kill_attempts": [ - 41 + 42 ], "trade_kill_opportunities": [ - 41 + 42 ], "trade_kill_successes": [ - 41 + 42 ], "traded_death_attempts": [ - 41 + 42 ], "traded_death_opportunities": [ - 41 + 42 ], "traded_death_successes": [ - 41 + 42 ], "two_kill_rounds": [ - 41 + 42 ], "unused_utility_value": [ - 41 + 42 ], "utility_on_death": [ - 3093 + 3372 ], "wasted_magazine_shots": [ - 41 + 42 ], "zeus_kills": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_insert_input": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "avg_crosshair_angle_deg": [ - 3092 + 3371 ], "avg_flash_duration": [ - 3092 + 3371 ], "avg_time_to_damage_s": [ - 3092 + 3371 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_ct": [ - 40 + 41 ], "damage_t": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "deaths_ct": [ - 40 + 41 ], "deaths_t": [ - 40 + 41 ], "decoy_throws": [ - 40 + 41 ], "enemies_flashed": [ - 40 + 41 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "five_kill_rounds": [ - 40 + 41 ], "flash_assists": [ - 40 + 41 ], "flashes_thrown": [ - 40 + 41 ], "four_kill_rounds": [ - 40 + 41 ], "he_damage": [ - 40 + 41 ], "he_team_damage": [ - 40 + 41 ], "he_throws": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "hs_kills": [ - 40 + 41 ], "hs_kills_ct": [ - 40 + 41 ], "hs_kills_t": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "kills_ct": [ - 40 + 41 ], "kills_t": [ - 40 + 41 ], "knife_kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "rounds_ct": [ - 40 + 41 ], "rounds_played": [ - 40 + 41 ], "rounds_t": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "shots_fired": [ - 40 + 41 ], "smoke_throws": [ - 40 + 41 ], "spotted_count": [ - 40 + 41 ], "spotted_with_damage_count": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_damage": [ - 40 + 41 ], "team_flashed": [ - 40 + 41 ], "three_kill_rounds": [ - 40 + 41 ], "total_engagement_frames": [ - 40 + 41 ], "trade_kill_attempts": [ - 40 + 41 ], "trade_kill_opportunities": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_attempts": [ - 40 + 41 ], "traded_death_opportunities": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "two_kill_rounds": [ - 40 + 41 ], "unused_utility_value": [ - 40 + 41 ], "utility_on_death": [ - 3092 + 3371 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_max_fields": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "avg_crosshair_angle_deg": [ - 3092 + 3371 ], "avg_flash_duration": [ - 3092 + 3371 ], "avg_time_to_damage_s": [ - 3092 + 3371 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_ct": [ - 40 + 41 ], "damage_t": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "deaths_ct": [ - 40 + 41 ], "deaths_t": [ - 40 + 41 ], "decoy_throws": [ - 40 + 41 ], "enemies_flashed": [ - 40 + 41 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "five_kill_rounds": [ - 40 + 41 ], "flash_assists": [ - 40 + 41 ], "flashes_thrown": [ - 40 + 41 ], "four_kill_rounds": [ - 40 + 41 ], "he_damage": [ - 40 + 41 ], "he_team_damage": [ - 40 + 41 ], "he_throws": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "hs_kills": [ - 40 + 41 ], "hs_kills_ct": [ - 40 + 41 ], "hs_kills_t": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "kills_ct": [ - 40 + 41 ], "kills_t": [ - 40 + 41 ], "knife_kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "rounds_ct": [ - 40 + 41 ], "rounds_played": [ - 40 + 41 ], "rounds_t": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "shots_fired": [ - 40 + 41 ], "smoke_throws": [ - 40 + 41 ], "spotted_count": [ - 40 + 41 ], "spotted_with_damage_count": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_damage": [ - 40 + 41 ], "team_flashed": [ - 40 + 41 ], "three_kill_rounds": [ - 40 + 41 ], "total_engagement_frames": [ - 40 + 41 ], "trade_kill_attempts": [ - 40 + 41 ], "trade_kill_opportunities": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_attempts": [ - 40 + 41 ], "traded_death_opportunities": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "two_kill_rounds": [ - 40 + 41 ], "unused_utility_value": [ - 40 + 41 ], "utility_on_death": [ - 3092 + 3371 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_max_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "avg_crosshair_angle_deg": [ - 3094 + 3373 ], "avg_flash_duration": [ - 3094 + 3373 ], "avg_time_to_damage_s": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "utility_on_death": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_min_fields": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "avg_crosshair_angle_deg": [ - 3092 + 3371 ], "avg_flash_duration": [ - 3092 + 3371 ], "avg_time_to_damage_s": [ - 3092 + 3371 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_ct": [ - 40 + 41 ], "damage_t": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "deaths_ct": [ - 40 + 41 ], "deaths_t": [ - 40 + 41 ], "decoy_throws": [ - 40 + 41 ], "enemies_flashed": [ - 40 + 41 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "five_kill_rounds": [ - 40 + 41 ], "flash_assists": [ - 40 + 41 ], "flashes_thrown": [ - 40 + 41 ], "four_kill_rounds": [ - 40 + 41 ], "he_damage": [ - 40 + 41 ], "he_team_damage": [ - 40 + 41 ], "he_throws": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "hs_kills": [ - 40 + 41 ], "hs_kills_ct": [ - 40 + 41 ], "hs_kills_t": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "kills_ct": [ - 40 + 41 ], "kills_t": [ - 40 + 41 ], "knife_kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "rounds_ct": [ - 40 + 41 ], "rounds_played": [ - 40 + 41 ], "rounds_t": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "shots_fired": [ - 40 + 41 ], "smoke_throws": [ - 40 + 41 ], "spotted_count": [ - 40 + 41 ], "spotted_with_damage_count": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_damage": [ - 40 + 41 ], "team_flashed": [ - 40 + 41 ], "three_kill_rounds": [ - 40 + 41 ], "total_engagement_frames": [ - 40 + 41 ], "trade_kill_attempts": [ - 40 + 41 ], "trade_kill_opportunities": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_attempts": [ - 40 + 41 ], "traded_death_opportunities": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "two_kill_rounds": [ - 40 + 41 ], "unused_utility_value": [ - 40 + 41 ], "utility_on_death": [ - 3092 + 3371 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_min_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "avg_crosshair_angle_deg": [ - 3094 + 3373 ], "avg_flash_duration": [ - 3094 + 3373 ], "avg_time_to_damage_s": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "utility_on_death": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "avg_crosshair_angle_deg": [ - 3094 + 3373 ], "avg_flash_duration": [ - 3094 + 3373 ], "avg_time_to_damage_s": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "utility_on_death": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_select_column": {}, "player_match_stats_v_stddev_fields": { "assists": [ - 31 + 32 ], "assists_ct": [ - 31 + 32 ], "assists_t": [ - 31 + 32 ], "avg_crosshair_angle_deg": [ - 31 + 32 ], "avg_flash_duration": [ - 31 + 32 ], "avg_time_to_damage_s": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_ct": [ - 31 + 32 ], "damage_t": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "deaths_ct": [ - 31 + 32 ], "deaths_t": [ - 31 + 32 ], "decoy_throws": [ - 31 + 32 ], "enemies_flashed": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "five_kill_rounds": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "flashes_thrown": [ - 31 + 32 ], "four_kill_rounds": [ - 31 + 32 ], "he_damage": [ - 31 + 32 ], "he_team_damage": [ - 31 + 32 ], "he_throws": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "hs_kills": [ - 31 + 32 ], "hs_kills_ct": [ - 31 + 32 ], "hs_kills_t": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kills_ct": [ - 31 + 32 ], "kills_t": [ - 31 + 32 ], "knife_kills": [ - 31 + 32 ], "molotov_damage": [ - 31 + 32 ], "molotov_throws": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "rounds_ct": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "rounds_t": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "shots_fired": [ - 31 + 32 ], "smoke_throws": [ - 31 + 32 ], "spotted_count": [ - 31 + 32 ], "spotted_with_damage_count": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_damage": [ - 31 + 32 ], "team_flashed": [ - 31 + 32 ], "three_kill_rounds": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "trade_kill_attempts": [ - 31 + 32 ], "trade_kill_opportunities": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_attempts": [ - 31 + 32 ], "traded_death_opportunities": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "two_kill_rounds": [ - 31 + 32 ], "unused_utility_value": [ - 31 + 32 ], "utility_on_death": [ - 31 + 32 ], "wasted_magazine_shots": [ - 31 + 32 ], "zeus_kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_stddev_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "avg_crosshair_angle_deg": [ - 3094 + 3373 ], "avg_flash_duration": [ - 3094 + 3373 ], "avg_time_to_damage_s": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "utility_on_death": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_stddev_pop_fields": { "assists": [ - 31 + 32 ], "assists_ct": [ - 31 + 32 ], "assists_t": [ - 31 + 32 ], "avg_crosshair_angle_deg": [ - 31 + 32 ], "avg_flash_duration": [ - 31 + 32 ], "avg_time_to_damage_s": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_ct": [ - 31 + 32 ], "damage_t": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "deaths_ct": [ - 31 + 32 ], "deaths_t": [ - 31 + 32 ], "decoy_throws": [ - 31 + 32 ], "enemies_flashed": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "five_kill_rounds": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "flashes_thrown": [ - 31 + 32 ], "four_kill_rounds": [ - 31 + 32 ], "he_damage": [ - 31 + 32 ], "he_team_damage": [ - 31 + 32 ], "he_throws": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "hs_kills": [ - 31 + 32 ], "hs_kills_ct": [ - 31 + 32 ], "hs_kills_t": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kills_ct": [ - 31 + 32 ], "kills_t": [ - 31 + 32 ], "knife_kills": [ - 31 + 32 ], "molotov_damage": [ - 31 + 32 ], "molotov_throws": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "rounds_ct": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "rounds_t": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "shots_fired": [ - 31 + 32 ], "smoke_throws": [ - 31 + 32 ], "spotted_count": [ - 31 + 32 ], "spotted_with_damage_count": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_damage": [ - 31 + 32 ], "team_flashed": [ - 31 + 32 ], "three_kill_rounds": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "trade_kill_attempts": [ - 31 + 32 ], "trade_kill_opportunities": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_attempts": [ - 31 + 32 ], "traded_death_opportunities": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "two_kill_rounds": [ - 31 + 32 ], "unused_utility_value": [ - 31 + 32 ], "utility_on_death": [ - 31 + 32 ], "wasted_magazine_shots": [ - 31 + 32 ], "zeus_kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "avg_crosshair_angle_deg": [ - 3094 + 3373 ], "avg_flash_duration": [ - 3094 + 3373 ], "avg_time_to_damage_s": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "utility_on_death": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_stddev_samp_fields": { "assists": [ - 31 + 32 ], "assists_ct": [ - 31 + 32 ], "assists_t": [ - 31 + 32 ], "avg_crosshair_angle_deg": [ - 31 + 32 ], "avg_flash_duration": [ - 31 + 32 ], "avg_time_to_damage_s": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_ct": [ - 31 + 32 ], "damage_t": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "deaths_ct": [ - 31 + 32 ], "deaths_t": [ - 31 + 32 ], "decoy_throws": [ - 31 + 32 ], "enemies_flashed": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "five_kill_rounds": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "flashes_thrown": [ - 31 + 32 ], "four_kill_rounds": [ - 31 + 32 ], "he_damage": [ - 31 + 32 ], "he_team_damage": [ - 31 + 32 ], "he_throws": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "hs_kills": [ - 31 + 32 ], "hs_kills_ct": [ - 31 + 32 ], "hs_kills_t": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kills_ct": [ - 31 + 32 ], "kills_t": [ - 31 + 32 ], "knife_kills": [ - 31 + 32 ], "molotov_damage": [ - 31 + 32 ], "molotov_throws": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "rounds_ct": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "rounds_t": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "shots_fired": [ - 31 + 32 ], "smoke_throws": [ - 31 + 32 ], "spotted_count": [ - 31 + 32 ], "spotted_with_damage_count": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_damage": [ - 31 + 32 ], "team_flashed": [ - 31 + 32 ], "three_kill_rounds": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "trade_kill_attempts": [ - 31 + 32 ], "trade_kill_opportunities": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_attempts": [ - 31 + 32 ], "traded_death_opportunities": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "two_kill_rounds": [ - 31 + 32 ], "unused_utility_value": [ - 31 + 32 ], "utility_on_death": [ - 31 + 32 ], "wasted_magazine_shots": [ - 31 + 32 ], "zeus_kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "avg_crosshair_angle_deg": [ - 3094 + 3373 ], "avg_flash_duration": [ - 3094 + 3373 ], "avg_time_to_damage_s": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "utility_on_death": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3641 + 3920 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_stream_cursor_value_input": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "avg_crosshair_angle_deg": [ - 3092 + 3371 ], "avg_flash_duration": [ - 3092 + 3371 ], "avg_time_to_damage_s": [ - 3092 + 3371 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_ct": [ - 40 + 41 ], "damage_t": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "deaths_ct": [ - 40 + 41 ], "deaths_t": [ - 40 + 41 ], "decoy_throws": [ - 40 + 41 ], "enemies_flashed": [ - 40 + 41 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "five_kill_rounds": [ - 40 + 41 ], "flash_assists": [ - 40 + 41 ], "flashes_thrown": [ - 40 + 41 ], "four_kill_rounds": [ - 40 + 41 ], "he_damage": [ - 40 + 41 ], "he_team_damage": [ - 40 + 41 ], "he_throws": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "hs_kills": [ - 40 + 41 ], "hs_kills_ct": [ - 40 + 41 ], "hs_kills_t": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "kills_ct": [ - 40 + 41 ], "kills_t": [ - 40 + 41 ], "knife_kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "rounds_ct": [ - 40 + 41 ], "rounds_played": [ - 40 + 41 ], "rounds_t": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "shots_fired": [ - 40 + 41 ], "smoke_throws": [ - 40 + 41 ], "spotted_count": [ - 40 + 41 ], "spotted_with_damage_count": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_damage": [ - 40 + 41 ], "team_flashed": [ - 40 + 41 ], "three_kill_rounds": [ - 40 + 41 ], "total_engagement_frames": [ - 40 + 41 ], "trade_kill_attempts": [ - 40 + 41 ], "trade_kill_opportunities": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_attempts": [ - 40 + 41 ], "traded_death_opportunities": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "two_kill_rounds": [ - 40 + 41 ], "unused_utility_value": [ - 40 + 41 ], "utility_on_death": [ - 3092 + 3371 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_sum_fields": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "avg_crosshair_angle_deg": [ - 3092 + 3371 ], "avg_flash_duration": [ - 3092 + 3371 ], "avg_time_to_damage_s": [ - 3092 + 3371 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_ct": [ - 40 + 41 ], "damage_t": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "deaths_ct": [ - 40 + 41 ], "deaths_t": [ - 40 + 41 ], "decoy_throws": [ - 40 + 41 ], "enemies_flashed": [ - 40 + 41 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "five_kill_rounds": [ - 40 + 41 ], "flash_assists": [ - 40 + 41 ], "flashes_thrown": [ - 40 + 41 ], "four_kill_rounds": [ - 40 + 41 ], "he_damage": [ - 40 + 41 ], "he_team_damage": [ - 40 + 41 ], "he_throws": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "hs_kills": [ - 40 + 41 ], "hs_kills_ct": [ - 40 + 41 ], "hs_kills_t": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "kills_ct": [ - 40 + 41 ], "kills_t": [ - 40 + 41 ], "knife_kills": [ - 40 + 41 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "rounds_ct": [ - 40 + 41 ], "rounds_played": [ - 40 + 41 ], "rounds_t": [ - 40 + 41 ], "shots_at_spotted": [ - 40 + 41 ], "shots_fired": [ - 40 + 41 ], "smoke_throws": [ - 40 + 41 ], "spotted_count": [ - 40 + 41 ], "spotted_with_damage_count": [ - 40 + 41 ], "spray_hits": [ - 40 + 41 ], "spray_shots": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "team_damage": [ - 40 + 41 ], "team_flashed": [ - 40 + 41 ], "three_kill_rounds": [ - 40 + 41 ], "total_engagement_frames": [ - 40 + 41 ], "trade_kill_attempts": [ - 40 + 41 ], "trade_kill_opportunities": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_attempts": [ - 40 + 41 ], "traded_death_opportunities": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "two_kill_rounds": [ - 40 + 41 ], "unused_utility_value": [ - 40 + 41 ], "utility_on_death": [ - 3092 + 3371 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_sum_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "avg_crosshair_angle_deg": [ - 3094 + 3373 ], "avg_flash_duration": [ - 3094 + 3373 ], "avg_time_to_damage_s": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "utility_on_death": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_var_pop_fields": { "assists": [ - 31 + 32 ], "assists_ct": [ - 31 + 32 ], "assists_t": [ - 31 + 32 ], "avg_crosshair_angle_deg": [ - 31 + 32 ], "avg_flash_duration": [ - 31 + 32 ], "avg_time_to_damage_s": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_ct": [ - 31 + 32 ], "damage_t": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "deaths_ct": [ - 31 + 32 ], "deaths_t": [ - 31 + 32 ], "decoy_throws": [ - 31 + 32 ], "enemies_flashed": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "five_kill_rounds": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "flashes_thrown": [ - 31 + 32 ], "four_kill_rounds": [ - 31 + 32 ], "he_damage": [ - 31 + 32 ], "he_team_damage": [ - 31 + 32 ], "he_throws": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "hs_kills": [ - 31 + 32 ], "hs_kills_ct": [ - 31 + 32 ], "hs_kills_t": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kills_ct": [ - 31 + 32 ], "kills_t": [ - 31 + 32 ], "knife_kills": [ - 31 + 32 ], "molotov_damage": [ - 31 + 32 ], "molotov_throws": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "rounds_ct": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "rounds_t": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "shots_fired": [ - 31 + 32 ], "smoke_throws": [ - 31 + 32 ], "spotted_count": [ - 31 + 32 ], "spotted_with_damage_count": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_damage": [ - 31 + 32 ], "team_flashed": [ - 31 + 32 ], "three_kill_rounds": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "trade_kill_attempts": [ - 31 + 32 ], "trade_kill_opportunities": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_attempts": [ - 31 + 32 ], "traded_death_opportunities": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "two_kill_rounds": [ - 31 + 32 ], "unused_utility_value": [ - 31 + 32 ], "utility_on_death": [ - 31 + 32 ], "wasted_magazine_shots": [ - 31 + 32 ], "zeus_kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "avg_crosshair_angle_deg": [ - 3094 + 3373 ], "avg_flash_duration": [ - 3094 + 3373 ], "avg_time_to_damage_s": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "utility_on_death": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_var_samp_fields": { "assists": [ - 31 + 32 ], "assists_ct": [ - 31 + 32 ], "assists_t": [ - 31 + 32 ], "avg_crosshair_angle_deg": [ - 31 + 32 ], "avg_flash_duration": [ - 31 + 32 ], "avg_time_to_damage_s": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_ct": [ - 31 + 32 ], "damage_t": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "deaths_ct": [ - 31 + 32 ], "deaths_t": [ - 31 + 32 ], "decoy_throws": [ - 31 + 32 ], "enemies_flashed": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "five_kill_rounds": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "flashes_thrown": [ - 31 + 32 ], "four_kill_rounds": [ - 31 + 32 ], "he_damage": [ - 31 + 32 ], "he_team_damage": [ - 31 + 32 ], "he_throws": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "hs_kills": [ - 31 + 32 ], "hs_kills_ct": [ - 31 + 32 ], "hs_kills_t": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kills_ct": [ - 31 + 32 ], "kills_t": [ - 31 + 32 ], "knife_kills": [ - 31 + 32 ], "molotov_damage": [ - 31 + 32 ], "molotov_throws": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "rounds_ct": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "rounds_t": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "shots_fired": [ - 31 + 32 ], "smoke_throws": [ - 31 + 32 ], "spotted_count": [ - 31 + 32 ], "spotted_with_damage_count": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_damage": [ - 31 + 32 ], "team_flashed": [ - 31 + 32 ], "three_kill_rounds": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "trade_kill_attempts": [ - 31 + 32 ], "trade_kill_opportunities": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_attempts": [ - 31 + 32 ], "traded_death_opportunities": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "two_kill_rounds": [ - 31 + 32 ], "unused_utility_value": [ - 31 + 32 ], "utility_on_death": [ - 31 + 32 ], "wasted_magazine_shots": [ - 31 + 32 ], "zeus_kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "avg_crosshair_angle_deg": [ - 3094 + 3373 ], "avg_flash_duration": [ - 3094 + 3373 ], "avg_time_to_damage_s": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "utility_on_death": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_variance_fields": { "assists": [ - 31 + 32 ], "assists_ct": [ - 31 + 32 ], "assists_t": [ - 31 + 32 ], "avg_crosshair_angle_deg": [ - 31 + 32 ], "avg_flash_duration": [ - 31 + 32 ], "avg_time_to_damage_s": [ - 31 + 32 ], "counter_strafe_eligible_shots": [ - 31 + 32 ], "counter_strafed_shots": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_ct": [ - 31 + 32 ], "damage_t": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "deaths_ct": [ - 31 + 32 ], "deaths_t": [ - 31 + 32 ], "decoy_throws": [ - 31 + 32 ], "enemies_flashed": [ - 31 + 32 ], "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "five_kill_rounds": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "flashes_thrown": [ - 31 + 32 ], "four_kill_rounds": [ - 31 + 32 ], "he_damage": [ - 31 + 32 ], "he_team_damage": [ - 31 + 32 ], "he_throws": [ - 31 + 32 ], "headshot_hits": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_at_spotted": [ - 31 + 32 ], "hs_kills": [ - 31 + 32 ], "hs_kills_ct": [ - 31 + 32 ], "hs_kills_t": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kills_ct": [ - 31 + 32 ], "kills_t": [ - 31 + 32 ], "knife_kills": [ - 31 + 32 ], "molotov_damage": [ - 31 + 32 ], "molotov_throws": [ - 31 + 32 ], "non_awp_hits": [ - 31 + 32 ], "on_target_frames": [ - 31 + 32 ], "rounds_ct": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "rounds_t": [ - 31 + 32 ], "shots_at_spotted": [ - 31 + 32 ], "shots_fired": [ - 31 + 32 ], "smoke_throws": [ - 31 + 32 ], "spotted_count": [ - 31 + 32 ], "spotted_with_damage_count": [ - 31 + 32 ], "spray_hits": [ - 31 + 32 ], "spray_shots": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "team_damage": [ - 31 + 32 ], "team_flashed": [ - 31 + 32 ], "three_kill_rounds": [ - 31 + 32 ], "total_engagement_frames": [ - 31 + 32 ], "trade_kill_attempts": [ - 31 + 32 ], "trade_kill_opportunities": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_attempts": [ - 31 + 32 ], "traded_death_opportunities": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "two_kill_rounds": [ - 31 + 32 ], "unused_utility_value": [ - 31 + 32 ], "utility_on_death": [ - 31 + 32 ], "wasted_magazine_shots": [ - 31 + 32 ], "zeus_kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_match_stats_v_variance_order_by": { "assists": [ - 3094 + 3373 ], "assists_ct": [ - 3094 + 3373 ], "assists_t": [ - 3094 + 3373 ], "avg_crosshair_angle_deg": [ - 3094 + 3373 ], "avg_flash_duration": [ - 3094 + 3373 ], "avg_time_to_damage_s": [ - 3094 + 3373 ], "counter_strafe_eligible_shots": [ - 3094 + 3373 ], "counter_strafed_shots": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_ct": [ - 3094 + 3373 ], "damage_t": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "deaths_ct": [ - 3094 + 3373 ], "deaths_t": [ - 3094 + 3373 ], "decoy_throws": [ - 3094 + 3373 ], "enemies_flashed": [ - 3094 + 3373 ], "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "five_kill_rounds": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "flashes_thrown": [ - 3094 + 3373 ], "four_kill_rounds": [ - 3094 + 3373 ], "he_damage": [ - 3094 + 3373 ], "he_team_damage": [ - 3094 + 3373 ], "he_throws": [ - 3094 + 3373 ], "headshot_hits": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_at_spotted": [ - 3094 + 3373 ], "hs_kills": [ - 3094 + 3373 ], "hs_kills_ct": [ - 3094 + 3373 ], "hs_kills_t": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kills_ct": [ - 3094 + 3373 ], "kills_t": [ - 3094 + 3373 ], "knife_kills": [ - 3094 + 3373 ], "molotov_damage": [ - 3094 + 3373 ], "molotov_throws": [ - 3094 + 3373 ], "non_awp_hits": [ - 3094 + 3373 ], "on_target_frames": [ - 3094 + 3373 ], "rounds_ct": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "rounds_t": [ - 3094 + 3373 ], "shots_at_spotted": [ - 3094 + 3373 ], "shots_fired": [ - 3094 + 3373 ], "smoke_throws": [ - 3094 + 3373 ], "spotted_count": [ - 3094 + 3373 ], "spotted_with_damage_count": [ - 3094 + 3373 ], "spray_hits": [ - 3094 + 3373 ], "spray_shots": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_damage": [ - 3094 + 3373 ], "team_flashed": [ - 3094 + 3373 ], "three_kill_rounds": [ - 3094 + 3373 ], "total_engagement_frames": [ - 3094 + 3373 ], "trade_kill_attempts": [ - 3094 + 3373 ], "trade_kill_opportunities": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_attempts": [ - 3094 + 3373 ], "traded_death_opportunities": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "two_kill_rounds": [ - 3094 + 3373 ], "unused_utility_value": [ - 3094 + 3373 ], "utility_on_death": [ - 3094 + 3373 ], "wasted_magazine_shots": [ - 3094 + 3373 ], "zeus_kills": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_objectives": { "deleted_at": [ - 4670 + 4954 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4052 + 4331 ], "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "type": [ - 1158 + 1223 ], "__typename": [ - 80 + 84 ] }, "player_objectives_aggregate": { "aggregate": [ - 3654 + 3933 ], "nodes": [ - 3650 + 3929 ], "__typename": [ - 80 + 84 ] }, "player_objectives_aggregate_bool_exp": { "count": [ - 3653 + 3932 ], "__typename": [ - 80 + 84 ] }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3671 + 3950 ], "distinct": [ - 5 + 6 ], "filter": [ - 3659 + 3938 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_objectives_aggregate_fields": { "avg": [ - 3657 + 3936 ], "count": [ - 40, + 41, { "columns": [ - 3671, + 3950, "[player_objectives_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3663 + 3942 ], "min": [ - 3665 + 3944 ], "stddev": [ - 3673 + 3952 ], "stddev_pop": [ - 3675 + 3954 ], "stddev_samp": [ - 3677 + 3956 ], "sum": [ - 3681 + 3960 ], "var_pop": [ - 3685 + 3964 ], "var_samp": [ - 3687 + 3966 ], "variance": [ - 3689 + 3968 ], "__typename": [ - 80 + 84 ] }, "player_objectives_aggregate_order_by": { "avg": [ - 3658 + 3937 ], "count": [ - 3094 + 3373 ], "max": [ - 3664 + 3943 ], "min": [ - 3666 + 3945 ], "stddev": [ - 3674 + 3953 ], "stddev_pop": [ - 3676 + 3955 ], "stddev_samp": [ - 3678 + 3957 ], "sum": [ - 3682 + 3961 ], "var_pop": [ - 3686 + 3965 ], "var_samp": [ - 3688 + 3967 ], "variance": [ - 3690 + 3969 ], "__typename": [ - 80 + 84 ] }, "player_objectives_arr_rel_insert_input": { "data": [ - 3662 + 3941 ], "on_conflict": [ - 3668 + 3947 ], "__typename": [ - 80 + 84 ] }, "player_objectives_avg_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_objectives_avg_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_objectives_bool_exp": { "_and": [ - 3659 + 3938 ], "_not": [ - 3659 + 3938 ], "_or": [ - 3659 + 3938 ], "deleted_at": [ - 4671 + 4955 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "player": [ - 4056 + 4335 ], "player_steam_id": [ - 266 + 271 ], "round": [ - 41 + 42 ], "time": [ - 4671 + 4955 ], "type": [ - 1159 + 1224 ], "__typename": [ - 80 + 84 ] }, "player_objectives_constraint": {}, "player_objectives_inc_input": { "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_objectives_insert_input": { "deleted_at": [ - 4670 + 4954 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4063 + 4342 ], "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "type": [ - 1158 + 1223 ], "__typename": [ - 80 + 84 ] }, "player_objectives_max_fields": { "deleted_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_objectives_max_order_by": { "deleted_at": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_objectives_min_fields": { "deleted_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_objectives_min_order_by": { "deleted_at": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_objectives_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3650 + 3929 ], "__typename": [ - 80 + 84 ] }, "player_objectives_on_conflict": { "constraint": [ - 3660 + 3939 ], "update_columns": [ - 3683 + 3962 ], "where": [ - 3659 + 3938 ], "__typename": [ - 80 + 84 ] }, "player_objectives_order_by": { "deleted_at": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_objectives_pk_columns_input": { "match_map_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "type": [ - 1158 + 1223 ], "__typename": [ - 80 + 84 ] }, "player_objectives_stddev_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_objectives_stddev_pop_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_objectives_stddev_samp_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3680 + 3959 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "type": [ - 1158 + 1223 ], "__typename": [ - 80 + 84 ] }, "player_objectives_sum_fields": { "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_objectives_sum_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3661 + 3940 ], "_set": [ - 3672 + 3951 ], "where": [ - 3659 + 3938 ], "__typename": [ - 80 + 84 ] }, "player_objectives_var_pop_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_objectives_var_samp_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_objectives_variance_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_objectives_variance_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_performance_v": { "accuracy_score": [ - 1777 + 1842 ], "aim_goal": [ - 1777 + 1842 ], "aim_rating": [ - 1777 + 1842 ], "band": [ - 40 + 41 ], "band_sample": [ - 264 + 269 ], "blind_score": [ - 1777 + 1842 ], "counter_strafe_score": [ - 1777 + 1842 ], "crosshair_score": [ - 1777 + 1842 ], "flash_assists_score": [ - 1777 + 1842 ], "hs_score": [ - 1777 + 1842 ], "kast_score": [ - 1777 + 1842 ], "maps": [ - 40 + 41 ], "positioning_goal": [ - 1777 + 1842 ], "positioning_rating": [ - 1777 + 1842 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "spotted_score": [ - 1777 + 1842 ], "steam_id": [ - 264 + 269 ], "survival_score": [ - 1777 + 1842 ], "traded_score": [ - 1777 + 1842 ], "ttd_score": [ - 1777 + 1842 ], "util_eff_score": [ - 1777 + 1842 ], "utility_goal": [ - 1777 + 1842 ], "utility_rating": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_aggregate": { "aggregate": [ - 3693 + 3972 ], "nodes": [ - 3691 + 3970 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_aggregate_fields": { "avg": [ - 3694 + 3973 ], "count": [ - 40, + 41, { "columns": [ - 3699, + 3978, "[player_performance_v_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3696 + 3975 ], "min": [ - 3697 + 3976 ], "stddev": [ - 3700 + 3979 ], "stddev_pop": [ - 3701 + 3980 ], "stddev_samp": [ - 3702 + 3981 ], "sum": [ - 3705 + 3984 ], "var_pop": [ - 3706 + 3985 ], "var_samp": [ - 3707 + 3986 ], "variance": [ - 3708 + 3987 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_avg_fields": { "accuracy_score": [ - 31 + 32 ], "aim_goal": [ - 31 + 32 ], "aim_rating": [ - 31 + 32 ], "band": [ - 31 + 32 ], "band_sample": [ - 31 + 32 ], "blind_score": [ - 31 + 32 ], "counter_strafe_score": [ - 31 + 32 ], "crosshair_score": [ - 31 + 32 ], "flash_assists_score": [ - 31 + 32 ], "hs_score": [ - 31 + 32 ], "kast_score": [ - 31 + 32 ], "maps": [ - 31 + 32 ], "positioning_goal": [ - 31 + 32 ], "positioning_rating": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "spotted_score": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_score": [ - 31 + 32 ], "traded_score": [ - 31 + 32 ], "ttd_score": [ - 31 + 32 ], "util_eff_score": [ - 31 + 32 ], "utility_goal": [ - 31 + 32 ], "utility_rating": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_bool_exp": { "_and": [ - 3695 + 3974 ], "_not": [ - 3695 + 3974 ], "_or": [ - 3695 + 3974 ], "accuracy_score": [ - 1778 + 1843 ], "aim_goal": [ - 1778 + 1843 ], "aim_rating": [ - 1778 + 1843 ], "band": [ - 41 + 42 ], "band_sample": [ - 266 + 271 ], "blind_score": [ - 1778 + 1843 ], "counter_strafe_score": [ - 1778 + 1843 ], "crosshair_score": [ - 1778 + 1843 ], "flash_assists_score": [ - 1778 + 1843 ], "hs_score": [ - 1778 + 1843 ], "kast_score": [ - 1778 + 1843 ], "maps": [ - 41 + 42 ], "positioning_goal": [ - 1778 + 1843 ], "positioning_rating": [ - 1778 + 1843 ], "premier_rank": [ - 41 + 42 ], "rounds": [ - 41 + 42 ], "spotted_score": [ - 1778 + 1843 ], "steam_id": [ - 266 + 271 ], "survival_score": [ - 1778 + 1843 ], "traded_score": [ - 1778 + 1843 ], "ttd_score": [ - 1778 + 1843 ], "util_eff_score": [ - 1778 + 1843 ], "utility_goal": [ - 1778 + 1843 ], "utility_rating": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_max_fields": { "accuracy_score": [ - 1777 + 1842 ], "aim_goal": [ - 1777 + 1842 ], "aim_rating": [ - 1777 + 1842 ], "band": [ - 40 + 41 ], "band_sample": [ - 264 + 269 ], "blind_score": [ - 1777 + 1842 ], "counter_strafe_score": [ - 1777 + 1842 ], "crosshair_score": [ - 1777 + 1842 ], "flash_assists_score": [ - 1777 + 1842 ], "hs_score": [ - 1777 + 1842 ], "kast_score": [ - 1777 + 1842 ], "maps": [ - 40 + 41 ], "positioning_goal": [ - 1777 + 1842 ], "positioning_rating": [ - 1777 + 1842 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "spotted_score": [ - 1777 + 1842 ], "steam_id": [ - 264 + 269 ], "survival_score": [ - 1777 + 1842 ], "traded_score": [ - 1777 + 1842 ], "ttd_score": [ - 1777 + 1842 ], "util_eff_score": [ - 1777 + 1842 ], "utility_goal": [ - 1777 + 1842 ], "utility_rating": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_min_fields": { "accuracy_score": [ - 1777 + 1842 ], "aim_goal": [ - 1777 + 1842 ], "aim_rating": [ - 1777 + 1842 ], "band": [ - 40 + 41 ], "band_sample": [ - 264 + 269 ], "blind_score": [ - 1777 + 1842 ], "counter_strafe_score": [ - 1777 + 1842 ], "crosshair_score": [ - 1777 + 1842 ], "flash_assists_score": [ - 1777 + 1842 ], "hs_score": [ - 1777 + 1842 ], "kast_score": [ - 1777 + 1842 ], "maps": [ - 40 + 41 ], "positioning_goal": [ - 1777 + 1842 ], "positioning_rating": [ - 1777 + 1842 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "spotted_score": [ - 1777 + 1842 ], "steam_id": [ - 264 + 269 ], "survival_score": [ - 1777 + 1842 ], "traded_score": [ - 1777 + 1842 ], "ttd_score": [ - 1777 + 1842 ], "util_eff_score": [ - 1777 + 1842 ], "utility_goal": [ - 1777 + 1842 ], "utility_rating": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_order_by": { "accuracy_score": [ - 3094 + 3373 ], "aim_goal": [ - 3094 + 3373 ], "aim_rating": [ - 3094 + 3373 ], "band": [ - 3094 + 3373 ], "band_sample": [ - 3094 + 3373 ], "blind_score": [ - 3094 + 3373 ], "counter_strafe_score": [ - 3094 + 3373 ], "crosshair_score": [ - 3094 + 3373 ], "flash_assists_score": [ - 3094 + 3373 ], "hs_score": [ - 3094 + 3373 ], "kast_score": [ - 3094 + 3373 ], "maps": [ - 3094 + 3373 ], "positioning_goal": [ - 3094 + 3373 ], "positioning_rating": [ - 3094 + 3373 ], "premier_rank": [ - 3094 + 3373 ], "rounds": [ - 3094 + 3373 ], "spotted_score": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "survival_score": [ - 3094 + 3373 ], "traded_score": [ - 3094 + 3373 ], "ttd_score": [ - 3094 + 3373 ], "util_eff_score": [ - 3094 + 3373 ], "utility_goal": [ - 3094 + 3373 ], "utility_rating": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_select_column": {}, "player_performance_v_stddev_fields": { "accuracy_score": [ - 31 + 32 ], "aim_goal": [ - 31 + 32 ], "aim_rating": [ - 31 + 32 ], "band": [ - 31 + 32 ], "band_sample": [ - 31 + 32 ], "blind_score": [ - 31 + 32 ], "counter_strafe_score": [ - 31 + 32 ], "crosshair_score": [ - 31 + 32 ], "flash_assists_score": [ - 31 + 32 ], "hs_score": [ - 31 + 32 ], "kast_score": [ - 31 + 32 ], "maps": [ - 31 + 32 ], "positioning_goal": [ - 31 + 32 ], "positioning_rating": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "spotted_score": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_score": [ - 31 + 32 ], "traded_score": [ - 31 + 32 ], "ttd_score": [ - 31 + 32 ], "util_eff_score": [ - 31 + 32 ], "utility_goal": [ - 31 + 32 ], "utility_rating": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_stddev_pop_fields": { "accuracy_score": [ - 31 + 32 ], "aim_goal": [ - 31 + 32 ], "aim_rating": [ - 31 + 32 ], "band": [ - 31 + 32 ], "band_sample": [ - 31 + 32 ], "blind_score": [ - 31 + 32 ], "counter_strafe_score": [ - 31 + 32 ], "crosshair_score": [ - 31 + 32 ], "flash_assists_score": [ - 31 + 32 ], "hs_score": [ - 31 + 32 ], "kast_score": [ - 31 + 32 ], "maps": [ - 31 + 32 ], "positioning_goal": [ - 31 + 32 ], "positioning_rating": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "spotted_score": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_score": [ - 31 + 32 ], "traded_score": [ - 31 + 32 ], "ttd_score": [ - 31 + 32 ], "util_eff_score": [ - 31 + 32 ], "utility_goal": [ - 31 + 32 ], "utility_rating": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_stddev_samp_fields": { "accuracy_score": [ - 31 + 32 ], "aim_goal": [ - 31 + 32 ], "aim_rating": [ - 31 + 32 ], "band": [ - 31 + 32 ], "band_sample": [ - 31 + 32 ], "blind_score": [ - 31 + 32 ], "counter_strafe_score": [ - 31 + 32 ], "crosshair_score": [ - 31 + 32 ], "flash_assists_score": [ - 31 + 32 ], "hs_score": [ - 31 + 32 ], "kast_score": [ - 31 + 32 ], "maps": [ - 31 + 32 ], "positioning_goal": [ - 31 + 32 ], "positioning_rating": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "spotted_score": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_score": [ - 31 + 32 ], "traded_score": [ - 31 + 32 ], "ttd_score": [ - 31 + 32 ], "util_eff_score": [ - 31 + 32 ], "utility_goal": [ - 31 + 32 ], "utility_rating": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3704 + 3983 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1777 + 1842 ], "aim_goal": [ - 1777 + 1842 ], "aim_rating": [ - 1777 + 1842 ], "band": [ - 40 + 41 ], "band_sample": [ - 264 + 269 ], "blind_score": [ - 1777 + 1842 ], "counter_strafe_score": [ - 1777 + 1842 ], "crosshair_score": [ - 1777 + 1842 ], "flash_assists_score": [ - 1777 + 1842 ], "hs_score": [ - 1777 + 1842 ], "kast_score": [ - 1777 + 1842 ], "maps": [ - 40 + 41 ], "positioning_goal": [ - 1777 + 1842 ], "positioning_rating": [ - 1777 + 1842 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "spotted_score": [ - 1777 + 1842 ], "steam_id": [ - 264 + 269 ], "survival_score": [ - 1777 + 1842 ], "traded_score": [ - 1777 + 1842 ], "ttd_score": [ - 1777 + 1842 ], "util_eff_score": [ - 1777 + 1842 ], "utility_goal": [ - 1777 + 1842 ], "utility_rating": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1777 + 1842 ], "aim_goal": [ - 1777 + 1842 ], "aim_rating": [ - 1777 + 1842 ], "band": [ - 40 + 41 ], "band_sample": [ - 264 + 269 ], "blind_score": [ - 1777 + 1842 ], "counter_strafe_score": [ - 1777 + 1842 ], "crosshair_score": [ - 1777 + 1842 ], "flash_assists_score": [ - 1777 + 1842 ], "hs_score": [ - 1777 + 1842 ], "kast_score": [ - 1777 + 1842 ], "maps": [ - 40 + 41 ], "positioning_goal": [ - 1777 + 1842 ], "positioning_rating": [ - 1777 + 1842 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "spotted_score": [ - 1777 + 1842 ], "steam_id": [ - 264 + 269 ], "survival_score": [ - 1777 + 1842 ], "traded_score": [ - 1777 + 1842 ], "ttd_score": [ - 1777 + 1842 ], "util_eff_score": [ - 1777 + 1842 ], "utility_goal": [ - 1777 + 1842 ], "utility_rating": [ - 1777 + 1842 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_var_pop_fields": { "accuracy_score": [ - 31 + 32 ], "aim_goal": [ - 31 + 32 ], "aim_rating": [ - 31 + 32 ], "band": [ - 31 + 32 ], "band_sample": [ - 31 + 32 ], "blind_score": [ - 31 + 32 ], "counter_strafe_score": [ - 31 + 32 ], "crosshair_score": [ - 31 + 32 ], "flash_assists_score": [ - 31 + 32 ], "hs_score": [ - 31 + 32 ], "kast_score": [ - 31 + 32 ], "maps": [ - 31 + 32 ], "positioning_goal": [ - 31 + 32 ], "positioning_rating": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "spotted_score": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_score": [ - 31 + 32 ], "traded_score": [ - 31 + 32 ], "ttd_score": [ - 31 + 32 ], "util_eff_score": [ - 31 + 32 ], "utility_goal": [ - 31 + 32 ], "utility_rating": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_var_samp_fields": { "accuracy_score": [ - 31 + 32 ], "aim_goal": [ - 31 + 32 ], "aim_rating": [ - 31 + 32 ], "band": [ - 31 + 32 ], "band_sample": [ - 31 + 32 ], "blind_score": [ - 31 + 32 ], "counter_strafe_score": [ - 31 + 32 ], "crosshair_score": [ - 31 + 32 ], "flash_assists_score": [ - 31 + 32 ], "hs_score": [ - 31 + 32 ], "kast_score": [ - 31 + 32 ], "maps": [ - 31 + 32 ], "positioning_goal": [ - 31 + 32 ], "positioning_rating": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "spotted_score": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_score": [ - 31 + 32 ], "traded_score": [ - 31 + 32 ], "ttd_score": [ - 31 + 32 ], "util_eff_score": [ - 31 + 32 ], "utility_goal": [ - 31 + 32 ], "utility_rating": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_performance_v_variance_fields": { "accuracy_score": [ - 31 + 32 ], "aim_goal": [ - 31 + 32 ], "aim_rating": [ - 31 + 32 ], "band": [ - 31 + 32 ], "band_sample": [ - 31 + 32 ], "blind_score": [ - 31 + 32 ], "counter_strafe_score": [ - 31 + 32 ], "crosshair_score": [ - 31 + 32 ], "flash_assists_score": [ - 31 + 32 ], "hs_score": [ - 31 + 32 ], "kast_score": [ - 31 + 32 ], "maps": [ - 31 + 32 ], "positioning_goal": [ - 31 + 32 ], "positioning_rating": [ - 31 + 32 ], "premier_rank": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "spotted_score": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "survival_score": [ - 31 + 32 ], "traded_score": [ - 31 + 32 ], "ttd_score": [ - 31 + 32 ], "util_eff_score": [ - 31 + 32 ], "utility_goal": [ - 31 + 32 ], "utility_rating": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history": { "id": [ - 5170 + 5454 ], "map": [ - 2392 + 2649 ], "map_id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "observed_at": [ - 4670 + 4954 ], "player": [ - 4052 + 4331 ], "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3713 + 3992 ], "nodes": [ - 3709 + 3988 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3712 + 3991 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3730 + 4009 ], "distinct": [ - 5 + 6 ], "filter": [ - 3718 + 3997 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3716 + 3995 ], "count": [ - 40, + 41, { "columns": [ - 3730, + 4009, "[player_premier_rank_history_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3722 + 4001 ], "min": [ - 3724 + 4003 ], "stddev": [ - 3732 + 4011 ], "stddev_pop": [ - 3734 + 4013 ], "stddev_samp": [ - 3736 + 4015 ], "sum": [ - 3740 + 4019 ], "var_pop": [ - 3744 + 4023 ], "var_samp": [ - 3746 + 4025 ], "variance": [ - 3748 + 4027 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3717 + 3996 ], "count": [ - 3094 + 3373 ], "max": [ - 3723 + 4002 ], "min": [ - 3725 + 4004 ], "stddev": [ - 3733 + 4012 ], "stddev_pop": [ - 3735 + 4014 ], "stddev_samp": [ - 3737 + 4016 ], "sum": [ - 3741 + 4020 ], "var_pop": [ - 3745 + 4024 ], "var_samp": [ - 3747 + 4026 ], "variance": [ - 3749 + 4028 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3721 + 4000 ], "on_conflict": [ - 3727 + 4006 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_avg_fields": { "previous_rank": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rank_type": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rank_type": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_bool_exp": { "_and": [ - 3718 + 3997 ], "_not": [ - 3718 + 3997 ], "_or": [ - 3718 + 3997 ], "id": [ - 5172 + 5456 ], "map": [ - 2401 + 2658 ], "map_id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "observed_at": [ - 4671 + 4955 ], "player": [ - 4056 + 4335 ], "previous_rank": [ - 41 + 42 ], "rank": [ - 41 + 42 ], "rank_type": [ - 41 + 42 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_constraint": {}, "player_premier_rank_history_inc_input": { "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_insert_input": { "id": [ - 5170 + 5454 ], "map": [ - 2409 + 2666 ], "map_id": [ - 5170 + 5454 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "observed_at": [ - 4670 + 4954 ], "player": [ - 4063 + 4342 ], "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_max_fields": { "id": [ - 5170 + 5454 ], "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "observed_at": [ - 4670 + 4954 ], "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_max_order_by": { "id": [ - 3094 + 3373 ], "map_id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "observed_at": [ - 3094 + 3373 ], "previous_rank": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rank_type": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_min_fields": { "id": [ - 5170 + 5454 ], "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "observed_at": [ - 4670 + 4954 ], "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_min_order_by": { "id": [ - 3094 + 3373 ], "map_id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "observed_at": [ - 3094 + 3373 ], "previous_rank": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rank_type": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3709 + 3988 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3719 + 3998 ], "update_columns": [ - 3742 + 4021 ], "where": [ - 3718 + 3997 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_order_by": { "id": [ - 3094 + 3373 ], "map": [ - 2411 + 2668 ], "map_id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "observed_at": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "previous_rank": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rank_type": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 5170 + 5454 ], "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "observed_at": [ - 4670 + 4954 ], "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_stddev_fields": { "previous_rank": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rank_type": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rank_type": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_stddev_pop_fields": { "previous_rank": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rank_type": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rank_type": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_stddev_samp_fields": { "previous_rank": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rank_type": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rank_type": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3739 + 4018 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 5170 + 5454 ], "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "observed_at": [ - 4670 + 4954 ], "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_sum_fields": { "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rank_type": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3720 + 3999 ], "_set": [ - 3731 + 4010 ], "where": [ - 3718 + 3997 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_var_pop_fields": { "previous_rank": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rank_type": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rank_type": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_var_samp_fields": { "previous_rank": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rank_type": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rank_type": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_variance_fields": { "previous_rank": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rank_type": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rank_type": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_sanctions": { "created_at": [ - 4670 + 4954 ], "deleted_at": [ - 4670 + 4954 ], "e_sanction_type": [ - 1233 + 1298 ], "id": [ - 5170 + 5454 ], "player": [ - 4052 + 4331 ], "player_steam_id": [ - 264 + 269 ], "reason": [ - 80 + 84 ], "remove_sanction_date": [ - 4670 + 4954 ], "sanctioned_by": [ - 4052 + 4331 ], "sanctioned_by_steam_id": [ - 264 + 269 ], "type": [ - 1238 + 1303 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_aggregate": { "aggregate": [ - 3754 + 4033 ], "nodes": [ - 3750 + 4029 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3753 + 4032 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3771 + 4050 ], "distinct": [ - 5 + 6 ], "filter": [ - 3759 + 4038 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_aggregate_fields": { "avg": [ - 3757 + 4036 ], "count": [ - 40, + 41, { "columns": [ - 3771, + 4050, "[player_sanctions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3763 + 4042 ], "min": [ - 3765 + 4044 ], "stddev": [ - 3773 + 4052 ], "stddev_pop": [ - 3775 + 4054 ], "stddev_samp": [ - 3777 + 4056 ], "sum": [ - 3781 + 4060 ], "var_pop": [ - 3785 + 4064 ], "var_samp": [ - 3787 + 4066 ], "variance": [ - 3789 + 4068 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_aggregate_order_by": { "avg": [ - 3758 + 4037 ], "count": [ - 3094 + 3373 ], "max": [ - 3764 + 4043 ], "min": [ - 3766 + 4045 ], "stddev": [ - 3774 + 4053 ], "stddev_pop": [ - 3776 + 4055 ], "stddev_samp": [ - 3778 + 4057 ], "sum": [ - 3782 + 4061 ], "var_pop": [ - 3786 + 4065 ], "var_samp": [ - 3788 + 4067 ], "variance": [ - 3790 + 4069 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3762 + 4041 ], "on_conflict": [ - 3768 + 4047 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_avg_fields": { "player_steam_id": [ - 31 + 32 ], "sanctioned_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 3094 + 3373 ], "sanctioned_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_bool_exp": { "_and": [ - 3759 + 4038 ], "_not": [ - 3759 + 4038 ], "_or": [ - 3759 + 4038 ], "created_at": [ - 4671 + 4955 ], "deleted_at": [ - 4671 + 4955 ], "e_sanction_type": [ - 1236 + 1301 ], "id": [ - 5172 + 5456 ], "player": [ - 4056 + 4335 ], "player_steam_id": [ - 266 + 271 ], "reason": [ - 82 + 86 ], "remove_sanction_date": [ - 4671 + 4955 ], "sanctioned_by": [ - 4056 + 4335 ], "sanctioned_by_steam_id": [ - 266 + 271 ], "type": [ - 1239 + 1304 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_constraint": {}, "player_sanctions_inc_input": { "player_steam_id": [ - 264 + 269 ], "sanctioned_by_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_insert_input": { "created_at": [ - 4670 + 4954 ], "deleted_at": [ - 4670 + 4954 ], "e_sanction_type": [ - 1244 + 1309 ], "id": [ - 5170 + 5454 ], "player": [ - 4063 + 4342 ], "player_steam_id": [ - 264 + 269 ], "reason": [ - 80 + 84 ], "remove_sanction_date": [ - 4670 + 4954 ], "sanctioned_by": [ - 4063 + 4342 ], "sanctioned_by_steam_id": [ - 264 + 269 ], "type": [ - 1238 + 1303 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_max_fields": { "created_at": [ - 4670 + 4954 ], "deleted_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "reason": [ - 80 + 84 ], "remove_sanction_date": [ - 4670 + 4954 ], "sanctioned_by_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_max_order_by": { "created_at": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "reason": [ - 3094 + 3373 ], "remove_sanction_date": [ - 3094 + 3373 ], "sanctioned_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_min_fields": { "created_at": [ - 4670 + 4954 ], "deleted_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "reason": [ - 80 + 84 ], "remove_sanction_date": [ - 4670 + 4954 ], "sanctioned_by_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_min_order_by": { "created_at": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "reason": [ - 3094 + 3373 ], "remove_sanction_date": [ - 3094 + 3373 ], "sanctioned_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3750 + 4029 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_on_conflict": { "constraint": [ - 3760 + 4039 ], "update_columns": [ - 3783 + 4062 ], "where": [ - 3759 + 4038 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_order_by": { "created_at": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "e_sanction_type": [ - 1246 + 1311 ], "id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "player_steam_id": [ - 3094 + 3373 ], "reason": [ - 3094 + 3373 ], "remove_sanction_date": [ - 3094 + 3373 ], "sanctioned_by": [ - 4065 + 4344 ], "sanctioned_by_steam_id": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_pk_columns_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4670 + 4954 ], "deleted_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "reason": [ - 80 + 84 ], "remove_sanction_date": [ - 4670 + 4954 ], "sanctioned_by_steam_id": [ - 264 + 269 ], "type": [ - 1238 + 1303 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_stddev_fields": { "player_steam_id": [ - 31 + 32 ], "sanctioned_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 3094 + 3373 ], "sanctioned_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_stddev_pop_fields": { "player_steam_id": [ - 31 + 32 ], "sanctioned_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 3094 + 3373 ], "sanctioned_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_stddev_samp_fields": { "player_steam_id": [ - 31 + 32 ], "sanctioned_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 3094 + 3373 ], "sanctioned_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3780 + 4059 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "deleted_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "reason": [ - 80 + 84 ], "remove_sanction_date": [ - 4670 + 4954 ], "sanctioned_by_steam_id": [ - 264 + 269 ], "type": [ - 1238 + 1303 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_sum_fields": { "player_steam_id": [ - 264 + 269 ], "sanctioned_by_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 3094 + 3373 ], "sanctioned_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3761 + 4040 ], "_set": [ - 3772 + 4051 ], "where": [ - 3759 + 4038 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_var_pop_fields": { "player_steam_id": [ - 31 + 32 ], "sanctioned_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 3094 + 3373 ], "sanctioned_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_var_samp_fields": { "player_steam_id": [ - 31 + 32 ], "sanctioned_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 3094 + 3373 ], "sanctioned_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_variance_fields": { "player_steam_id": [ - 31 + 32 ], "sanctioned_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 3094 + 3373 ], "sanctioned_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_season_stats": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player": [ - 4052 + 4331 ], "player_steam_id": [ - 264 + 269 ], "season": [ - 4138 + 4417 ], "season_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate": { "aggregate": [ - 3805 + 4084 ], "nodes": [ - 3791 + 4070 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3794 + 4073 ], "corr": [ - 3795 + 4074 ], "count": [ - 3797 + 4076 ], "covar_samp": [ - 3798 + 4077 ], "max": [ - 3800 + 4079 ], "min": [ - 3801 + 4080 ], "stddev_samp": [ - 3802 + 4081 ], "sum": [ - 3803 + 4082 ], "var_samp": [ - 3804 + 4083 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3823 + 4102 ], "distinct": [ - 5 + 6 ], "filter": [ - 3810 + 4089 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3796 + 4075 ], "distinct": [ - 5 + 6 ], "filter": [ - 3810 + 4089 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3824 + 4103 ], "Y": [ - 3824 + 4103 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3822 + 4101 ], "distinct": [ - 5 + 6 ], "filter": [ - 3810 + 4089 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3799 + 4078 ], "distinct": [ - 5 + 6 ], "filter": [ - 3810 + 4089 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3825 + 4104 ], "Y": [ - 3825 + 4104 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3826 + 4105 ], "distinct": [ - 5 + 6 ], "filter": [ - 3810 + 4089 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3827 + 4106 ], "distinct": [ - 5 + 6 ], "filter": [ - 3810 + 4089 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3828 + 4107 ], "distinct": [ - 5 + 6 ], "filter": [ - 3810 + 4089 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3829 + 4108 ], "distinct": [ - 5 + 6 ], "filter": [ - 3810 + 4089 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3830 + 4109 ], "distinct": [ - 5 + 6 ], "filter": [ - 3810 + 4089 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate_fields": { "avg": [ - 3808 + 4087 ], "count": [ - 40, + 41, { "columns": [ - 3822, + 4101, "[player_season_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3814 + 4093 ], "min": [ - 3816 + 4095 ], "stddev": [ - 3832 + 4111 ], "stddev_pop": [ - 3834 + 4113 ], "stddev_samp": [ - 3836 + 4115 ], "sum": [ - 3840 + 4119 ], "var_pop": [ - 3844 + 4123 ], "var_samp": [ - 3846 + 4125 ], "variance": [ - 3848 + 4127 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_aggregate_order_by": { "avg": [ - 3809 + 4088 ], "count": [ - 3094 + 3373 ], "max": [ - 3815 + 4094 ], "min": [ - 3817 + 4096 ], "stddev": [ - 3833 + 4112 ], "stddev_pop": [ - 3835 + 4114 ], "stddev_samp": [ - 3837 + 4116 ], "sum": [ - 3841 + 4120 ], "var_pop": [ - 3845 + 4124 ], "var_samp": [ - 3847 + 4126 ], "variance": [ - 3849 + 4128 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3813 + 4092 ], "on_conflict": [ - 3819 + 4098 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_avg_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_avg_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_bool_exp": { "_and": [ - 3810 + 4089 ], "_not": [ - 3810 + 4089 ], "_or": [ - 3810 + 4089 ], "assists": [ - 266 + 271 ], "deaths": [ - 266 + 271 ], "headshot_percentage": [ - 1778 + 1843 ], "headshots": [ - 266 + 271 ], "kills": [ - 266 + 271 ], "player": [ - 4056 + 4335 ], "player_steam_id": [ - 266 + 271 ], "season": [ - 4142 + 4421 ], "season_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_constraint": {}, "player_season_stats_inc_input": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_insert_input": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player": [ - 4063 + 4342 ], "player_steam_id": [ - 264 + 269 ], "season": [ - 4149 + 4428 ], "season_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_max_fields": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "season_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_max_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "season_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_min_fields": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "season_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_min_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "season_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3791 + 4070 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_on_conflict": { "constraint": [ - 3811 + 4090 ], "update_columns": [ - 3842 + 4121 ], "where": [ - 3810 + 4089 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "player_steam_id": [ - 3094 + 3373 ], "season": [ - 4151 + 4430 ], "season_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_pk_columns_input": { "player_steam_id": [ - 264 + 269 ], "season_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_select_column": {}, @@ -87041,10756 +92327,10873 @@ export default { "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, "player_season_stats_set_input": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "season_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_stddev_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_stddev_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_stddev_pop_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_stddev_samp_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3839 + 4118 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_stream_cursor_value_input": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "season_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_sum_fields": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_sum_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3812 + 4091 ], "_set": [ - 3831 + 4110 ], "where": [ - 3810 + 4089 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_var_pop_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_var_pop_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_var_samp_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_var_samp_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_variance_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_season_stats_variance_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_stats": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player": [ - 4052 + 4331 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_stats_aggregate": { "aggregate": [ - 3852 + 4131 ], "nodes": [ - 3850 + 4129 ], "__typename": [ - 80 + 84 ] }, "player_stats_aggregate_fields": { "avg": [ - 3853 + 4132 ], "count": [ - 40, + 41, { "columns": [ - 3865, + 4144, "[player_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3858 + 4137 ], "min": [ - 3859 + 4138 ], "stddev": [ - 3867 + 4146 ], "stddev_pop": [ - 3868 + 4147 ], "stddev_samp": [ - 3869 + 4148 ], "sum": [ - 3872 + 4151 ], "var_pop": [ - 3875 + 4154 ], "var_samp": [ - 3876 + 4155 ], "variance": [ - 3877 + 4156 ], "__typename": [ - 80 + 84 ] }, "player_stats_avg_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_stats_bool_exp": { "_and": [ - 3854 + 4133 ], "_not": [ - 3854 + 4133 ], "_or": [ - 3854 + 4133 ], "assists": [ - 266 + 271 ], "deaths": [ - 266 + 271 ], "headshot_percentage": [ - 1778 + 1843 ], "headshots": [ - 266 + 271 ], "kills": [ - 266 + 271 ], "player": [ - 4056 + 4335 ], "player_steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "player_stats_constraint": {}, "player_stats_inc_input": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_stats_insert_input": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player": [ - 4063 + 4342 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_stats_max_fields": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_stats_min_fields": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_stats_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3850 + 4129 ], "__typename": [ - 80 + 84 ] }, "player_stats_obj_rel_insert_input": { "data": [ - 3857 + 4136 ], "on_conflict": [ - 3862 + 4141 ], "__typename": [ - 80 + 84 ] }, "player_stats_on_conflict": { "constraint": [ - 3855 + 4134 ], "update_columns": [ - 3873 + 4152 ], "where": [ - 3854 + 4133 ], "__typename": [ - 80 + 84 ] }, "player_stats_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_stats_pk_columns_input": { "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_stats_select_column": {}, "player_stats_set_input": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_stats_stddev_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_stats_stddev_pop_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_stats_stddev_samp_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_stats_stream_cursor_input": { "initial_value": [ - 3871 + 4150 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_stats_stream_cursor_value_input": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_stats_sum_fields": { "assists": [ - 264 + 269 ], "deaths": [ - 264 + 269 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3856 + 4135 ], "_set": [ - 3866 + 4145 ], "where": [ - 3854 + 4133 ], "__typename": [ - 80 + 84 ] }, "player_stats_var_pop_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_stats_var_samp_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_stats_variance_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 5170 + 5454 ], "bot_steamid64": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "friended_at": [ - 4670 + 4954 ], "last_presence_state": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "player": [ - 4052 + 4331 ], "status": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3880 + 4159 ], "nodes": [ - 3878 + 4157 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3882 + 4161 ], "count": [ - 40, + 41, { "columns": [ - 3897, + 4176, "[player_steam_bot_friend_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3890 + 4169 ], "min": [ - 3891 + 4170 ], "stddev": [ - 3899 + 4178 ], "stddev_pop": [ - 3900 + 4179 ], "stddev_samp": [ - 3901 + 4180 ], "sum": [ - 3904 + 4183 ], "var_pop": [ - 3907 + 4186 ], "var_samp": [ - 3908 + 4187 ], "variance": [ - 3909 + 4188 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_avg_fields": { "bot_steamid64": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3883 + 4162 ], "_not": [ - 3883 + 4162 ], "_or": [ - 3883 + 4162 ], "bot_steam_account_id": [ - 5172 + 5456 ], "bot_steamid64": [ - 266 + 271 ], "created_at": [ - 4671 + 4955 ], "friended_at": [ - 4671 + 4955 ], "last_presence_state": [ - 1932 + 2189 ], "player": [ - 4056 + 4335 ], "status": [ - 82 + 86 ], "steam_id": [ - 266 + 271 ], "updated_at": [ - 4671 + 4955 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_constraint": {}, "player_steam_bot_friend_delete_at_path_input": { "last_presence_state": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_delete_elem_input": { "last_presence_state": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_delete_key_input": { "last_presence_state": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_inc_input": { "bot_steamid64": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 5170 + 5454 ], "bot_steamid64": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "friended_at": [ - 4670 + 4954 ], "last_presence_state": [ - 1930 + 2187 ], "player": [ - 4063 + 4342 ], "status": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 5170 + 5454 ], "bot_steamid64": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "friended_at": [ - 4670 + 4954 ], "status": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 5170 + 5454 ], "bot_steamid64": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "friended_at": [ - 4670 + 4954 ], "status": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3878 + 4157 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3884 + 4163 ], "update_columns": [ - 3905 + 4184 ], "where": [ - 3883 + 4162 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 3094 + 3373 ], "bot_steamid64": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "friended_at": [ - 3094 + 3373 ], "last_presence_state": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "status": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_pk_columns_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 5170 + 5454 ], "bot_steamid64": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "friended_at": [ - 4670 + 4954 ], "last_presence_state": [ - 1930 + 2187 ], "status": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_stddev_fields": { "bot_steamid64": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_stddev_pop_fields": { "bot_steamid64": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_stddev_samp_fields": { "bot_steamid64": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3903 + 4182 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 5170 + 5454 ], "bot_steamid64": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "friended_at": [ - 4670 + 4954 ], "last_presence_state": [ - 1930 + 2187 ], "status": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_sum_fields": { "bot_steamid64": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3881 + 4160 ], "_delete_at_path": [ - 3885 + 4164 ], "_delete_elem": [ - 3886 + 4165 ], "_delete_key": [ - 3887 + 4166 ], "_inc": [ - 3888 + 4167 ], "_prepend": [ - 3896 + 4175 ], "_set": [ - 3898 + 4177 ], "where": [ - 3883 + 4162 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_var_pop_fields": { "bot_steamid64": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_var_samp_fields": { "bot_steamid64": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_steam_bot_friend_variance_fields": { "bot_steamid64": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth": { "auth_code": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "last_error": [ - 80 + 84 ], "last_known_share_code": [ - 80 + 84 ], "last_polled_at": [ - 4670 + 4954 ], "player": [ - 4052 + 4331 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3912 + 4191 ], "nodes": [ - 3910 + 4189 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3913 + 4192 ], "count": [ - 40, + 41, { "columns": [ - 3924, + 4203, "[player_steam_match_auth_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3918 + 4197 ], "min": [ - 3919 + 4198 ], "stddev": [ - 3926 + 4205 ], "stddev_pop": [ - 3927 + 4206 ], "stddev_samp": [ - 3928 + 4207 ], "sum": [ - 3931 + 4210 ], "var_pop": [ - 3934 + 4213 ], "var_samp": [ - 3935 + 4214 ], "variance": [ - 3936 + 4215 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_bool_exp": { "_and": [ - 3914 + 4193 ], "_not": [ - 3914 + 4193 ], "_or": [ - 3914 + 4193 ], "auth_code": [ - 82 + 86 ], "created_at": [ - 4671 + 4955 ], "last_error": [ - 82 + 86 ], "last_known_share_code": [ - 82 + 86 ], "last_polled_at": [ - 4671 + 4955 ], "player": [ - 4056 + 4335 ], "steam_id": [ - 266 + 271 ], "updated_at": [ - 4671 + 4955 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_constraint": {}, "player_steam_match_auth_inc_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_insert_input": { "auth_code": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "last_error": [ - 80 + 84 ], "last_known_share_code": [ - 80 + 84 ], "last_polled_at": [ - 4670 + 4954 ], "player": [ - 4063 + 4342 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_max_fields": { "auth_code": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "last_error": [ - 80 + 84 ], "last_known_share_code": [ - 80 + 84 ], "last_polled_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_min_fields": { "auth_code": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "last_error": [ - 80 + 84 ], "last_known_share_code": [ - 80 + 84 ], "last_polled_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3910 + 4189 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3915 + 4194 ], "update_columns": [ - 3932 + 4211 ], "where": [ - 3914 + 4193 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_order_by": { "auth_code": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "last_error": [ - 3094 + 3373 ], "last_known_share_code": [ - 3094 + 3373 ], "last_polled_at": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "steam_id": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_pk_columns_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_select_column": {}, "player_steam_match_auth_set_input": { "auth_code": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "last_error": [ - 80 + 84 ], "last_known_share_code": [ - 80 + 84 ], "last_polled_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3930 + 4209 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_stream_cursor_value_input": { "auth_code": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "last_error": [ - 80 + 84 ], "last_known_share_code": [ - 80 + 84 ], "last_polled_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3916 + 4195 ], "_set": [ - 3925 + 4204 ], "where": [ - 3914 + 4193 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_steam_match_auth_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility": { "deleted_at": [ - 4670 + 4954 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4052 + 4331 ], "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_aggregate": { "aggregate": [ - 3941 + 4220 ], "nodes": [ - 3937 + 4216 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3940 + 4219 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3958 + 4237 ], "distinct": [ - 5 + 6 ], "filter": [ - 3946 + 4225 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_aggregate_fields": { "avg": [ - 3944 + 4223 ], "count": [ - 40, + 41, { "columns": [ - 3958, + 4237, "[player_unused_utility_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3950 + 4229 ], "min": [ - 3952 + 4231 ], "stddev": [ - 3960 + 4239 ], "stddev_pop": [ - 3962 + 4241 ], "stddev_samp": [ - 3964 + 4243 ], "sum": [ - 3968 + 4247 ], "var_pop": [ - 3972 + 4251 ], "var_samp": [ - 3974 + 4253 ], "variance": [ - 3976 + 4255 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3945 + 4224 ], "count": [ - 3094 + 3373 ], "max": [ - 3951 + 4230 ], "min": [ - 3953 + 4232 ], "stddev": [ - 3961 + 4240 ], "stddev_pop": [ - 3963 + 4242 ], "stddev_samp": [ - 3965 + 4244 ], "sum": [ - 3969 + 4248 ], "var_pop": [ - 3973 + 4252 ], "var_samp": [ - 3975 + 4254 ], "variance": [ - 3977 + 4256 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3949 + 4228 ], "on_conflict": [ - 3955 + 4234 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_avg_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "unused": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "unused": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_bool_exp": { "_and": [ - 3946 + 4225 ], "_not": [ - 3946 + 4225 ], "_or": [ - 3946 + 4225 ], "deleted_at": [ - 4671 + 4955 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "player": [ - 4056 + 4335 ], "player_steam_id": [ - 266 + 271 ], "round": [ - 41 + 42 ], "unused": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_constraint": {}, "player_unused_utility_inc_input": { "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_insert_input": { "deleted_at": [ - 4670 + 4954 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4063 + 4342 ], "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_max_fields": { "deleted_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_max_order_by": { "deleted_at": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "unused": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_min_fields": { "deleted_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_min_order_by": { "deleted_at": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "unused": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3937 + 4216 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_on_conflict": { "constraint": [ - 3947 + 4226 ], "update_columns": [ - 3970 + 4249 ], "where": [ - 3946 + 4225 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_order_by": { "deleted_at": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "unused": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_stddev_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "unused": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "unused": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_stddev_pop_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "unused": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "unused": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_stddev_samp_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "unused": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "unused": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3967 + 4246 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_sum_fields": { "player_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "unused": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3948 + 4227 ], "_set": [ - 3959 + 4238 ], "where": [ - 3946 + 4225 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_var_pop_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "unused": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "unused": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_var_samp_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "unused": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "unused": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_variance_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "unused": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "unused": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_utility": { "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "deleted_at": [ - 4670 + 4954 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4052 + 4331 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "type": [ - 1463 + 1528 ], "__typename": [ - 80 + 84 ] }, "player_utility_aggregate": { "aggregate": [ - 3982 + 4261 ], "nodes": [ - 3978 + 4257 ], "__typename": [ - 80 + 84 ] }, "player_utility_aggregate_bool_exp": { "count": [ - 3981 + 4260 ], "__typename": [ - 80 + 84 ] }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3999 + 4278 ], "distinct": [ - 5 + 6 ], "filter": [ - 3987 + 4266 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_utility_aggregate_fields": { "avg": [ - 3985 + 4264 ], "count": [ - 40, + 41, { "columns": [ - 3999, + 4278, "[player_utility_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3991 + 4270 ], "min": [ - 3993 + 4272 ], "stddev": [ - 4001 + 4280 ], "stddev_pop": [ - 4003 + 4282 ], "stddev_samp": [ - 4005 + 4284 ], "sum": [ - 4009 + 4288 ], "var_pop": [ - 4013 + 4292 ], "var_samp": [ - 4015 + 4294 ], "variance": [ - 4017 + 4296 ], "__typename": [ - 80 + 84 ] }, "player_utility_aggregate_order_by": { "avg": [ - 3986 + 4265 ], "count": [ - 3094 + 3373 ], "max": [ - 3992 + 4271 ], "min": [ - 3994 + 4273 ], "stddev": [ - 4002 + 4281 ], "stddev_pop": [ - 4004 + 4283 ], "stddev_samp": [ - 4006 + 4285 ], "sum": [ - 4010 + 4289 ], "var_pop": [ - 4014 + 4293 ], "var_samp": [ - 4016 + 4295 ], "variance": [ - 4018 + 4297 ], "__typename": [ - 80 + 84 ] }, "player_utility_arr_rel_insert_input": { "data": [ - 3990 + 4269 ], "on_conflict": [ - 3996 + 4275 ], "__typename": [ - 80 + 84 ] }, "player_utility_avg_fields": { "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_utility_bool_exp": { "_and": [ - 3987 + 4266 ], "_not": [ - 3987 + 4266 ], "_or": [ - 3987 + 4266 ], "attacker_location_coordinates": [ - 82 + 86 ], "attacker_steam_id": [ - 266 + 271 ], "deleted_at": [ - 4671 + 4955 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "player": [ - 4056 + 4335 ], "round": [ - 41 + 42 ], "time": [ - 4671 + 4955 ], "type": [ - 1464 + 1529 ], "__typename": [ - 80 + 84 ] }, "player_utility_constraint": {}, "player_utility_inc_input": { "attacker_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_utility_insert_input": { "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "deleted_at": [ - 4670 + 4954 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4063 + 4342 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "type": [ - 1463 + 1528 ], "__typename": [ - 80 + 84 ] }, "player_utility_max_fields": { "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "deleted_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_utility_min_fields": { "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "deleted_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_utility_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3978 + 4257 ], "__typename": [ - 80 + 84 ] }, "player_utility_on_conflict": { "constraint": [ - 3988 + 4267 ], "update_columns": [ - 4011 + 4290 ], "where": [ - 3987 + 4266 ], "__typename": [ - 80 + 84 ] }, "player_utility_order_by": { "attacker_location_coordinates": [ - 3094 + 3373 ], "attacker_steam_id": [ - 3094 + 3373 ], "deleted_at": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "round": [ - 3094 + 3373 ], "time": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_utility_pk_columns_input": { "attacker_steam_id": [ - 264 + 269 ], "match_map_id": [ - 5170 + 5454 ], "time": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "player_utility_select_column": {}, "player_utility_set_input": { "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "deleted_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "type": [ - 1463 + 1528 ], "__typename": [ - 80 + 84 ] }, "player_utility_stddev_fields": { "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_utility_stddev_pop_fields": { "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_utility_stddev_samp_fields": { "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_utility_stream_cursor_input": { "initial_value": [ - 4008 + 4287 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_utility_stream_cursor_value_input": { "attacker_location_coordinates": [ - 80 + 84 ], "attacker_steam_id": [ - 264 + 269 ], "deleted_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4670 + 4954 ], "type": [ - 1463 + 1528 ], "__typename": [ - 80 + 84 ] }, "player_utility_sum_fields": { "attacker_steam_id": [ - 264 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3989 + 4268 ], "_set": [ - 4000 + 4279 ], "where": [ - 3987 + 4266 ], "__typename": [ - 80 + 84 ] }, "player_utility_var_pop_fields": { "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_utility_var_samp_fields": { "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_utility_variance_fields": { "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "weapon_class": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 4023 + 4302 ], "nodes": [ - 4019 + 4298 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 4022 + 4301 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 4035 + 4314 ], "distinct": [ - 5 + 6 ], "filter": [ - 4028 + 4307 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 4026 + 4305 ], "count": [ - 40, + 41, { "columns": [ - 4035, + 4314, "[player_weapon_stats_v_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4030 + 4309 ], "min": [ - 4032 + 4311 ], "stddev": [ - 4036 + 4315 ], "stddev_pop": [ - 4038 + 4317 ], "stddev_samp": [ - 4040 + 4319 ], "sum": [ - 4044 + 4323 ], "var_pop": [ - 4046 + 4325 ], "var_samp": [ - 4048 + 4327 ], "variance": [ - 4050 + 4329 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 4027 + 4306 ], "count": [ - 3094 + 3373 ], "max": [ - 4031 + 4310 ], "min": [ - 4033 + 4312 ], "stddev": [ - 4037 + 4316 ], "stddev_pop": [ - 4039 + 4318 ], "stddev_samp": [ - 4041 + 4320 ], "sum": [ - 4045 + 4324 ], "var_pop": [ - 4047 + 4326 ], "var_samp": [ - 4049 + 4328 ], "variance": [ - 4051 + 4330 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 4029 + 4308 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_avg_fields": { "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_spotted": [ - 31 + 32 ], "shots": [ - 31 + 32 ], "shots_spotted": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_bool_exp": { "_and": [ - 4028 + 4307 ], "_not": [ - 4028 + 4307 ], "_or": [ - 4028 + 4307 ], "first_bullet_hits": [ - 41 + 42 ], "first_bullet_shots": [ - 41 + 42 ], "hits": [ - 41 + 42 ], "hits_spotted": [ - 41 + 42 ], "match_id": [ - 5172 + 5456 ], "shots": [ - 41 + 42 ], "shots_spotted": [ - 41 + 42 ], "steam_id": [ - 266 + 271 ], "weapon_class": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_insert_input": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "weapon_class": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_max_fields": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "weapon_class": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "weapon_class": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_min_fields": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "weapon_class": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "weapon_class": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "weapon_class": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_select_column": {}, "player_weapon_stats_v_stddev_fields": { "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_spotted": [ - 31 + 32 ], "shots": [ - 31 + 32 ], "shots_spotted": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_stddev_pop_fields": { "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_spotted": [ - 31 + 32 ], "shots": [ - 31 + 32 ], "shots_spotted": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_stddev_samp_fields": { "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_spotted": [ - 31 + 32 ], "shots": [ - 31 + 32 ], "shots_spotted": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 4043 + 4322 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_stream_cursor_value_input": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "weapon_class": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_sum_fields": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_var_pop_fields": { "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_spotted": [ - 31 + 32 ], "shots": [ - 31 + 32 ], "shots_spotted": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_var_samp_fields": { "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_spotted": [ - 31 + 32 ], "shots": [ - 31 + 32 ], "shots_spotted": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_variance_fields": { "first_bullet_hits": [ - 31 + 32 ], "first_bullet_shots": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "hits_spotted": [ - 31 + 32 ], "shots": [ - 31 + 32 ], "shots_spotted": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 3094 + 3373 ], "first_bullet_shots": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "hits_spotted": [ - 3094 + 3373 ], "shots": [ - 3094 + 3373 ], "shots_spotted": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "players": { "abandoned_matches": [ - 126, + 131, { "distinct_on": [ - 147, + 152, "[abandoned_matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 145, + 150, "[abandoned_matches_order_by!]" ], "where": [ - 135 + 140 ] } ], "abandoned_matches_aggregate": [ - 127, + 132, { "distinct_on": [ - 147, + 152, "[abandoned_matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 145, + 150, "[abandoned_matches_order_by!]" ], "where": [ - 135 + 140 ] } ], "aim_weapon_stats": [ - 3191, + 3470, { "distinct_on": [ - 3212, + 3491, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3210, + 3489, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3200 + 3479 ] } ], "aim_weapon_stats_aggregate": [ - 3192, + 3471, { "distinct_on": [ - 3212, + 3491, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3210, + 3489, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3200 + 3479 ] } ], "assists": [ - 3232, + 3511, { "distinct_on": [ - 3255, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3253, + 3532, "[player_assists_order_by!]" ], "where": [ - 3243 + 3522 ] } ], "assists_aggregate": [ - 3233, + 3512, { "distinct_on": [ - 3255, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3253, + 3532, "[player_assists_order_by!]" ], "where": [ - 3243 + 3522 ] } ], "assited_by_players": [ - 3232, + 3511, { "distinct_on": [ - 3255, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3253, + 3532, "[player_assists_order_by!]" ], "where": [ - 3243 + 3522 ] } ], "assited_by_players_aggregate": [ - 3233, + 3512, { "distinct_on": [ - 3255, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3253, + 3532, "[player_assists_order_by!]" ], "where": [ - 3243 + 3522 ] } ], "avatar_url": [ - 80 + 84 ], "awards": [ - 195, + 200, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "awards_aggregate": [ - 196, + 201, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "banned_until": [ - 4670 + 4954 ], "coach_lineups": [ - 2554, + 2811, { "distinct_on": [ - 2576, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2574, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2820 ] } ], "coach_lineups_aggregate": [ - 2555, + 2812, { "distinct_on": [ - 2576, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2574, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2820 ] } ], "country": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "current_lobby_id": [ - 5170 + 5454 ], "custom_avatar_url": [ - 80 + 84 ], "damage_dealt": [ - 3295, + 3574, { "distinct_on": [ - 3316, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3314, + 3593, "[player_damages_order_by!]" ], "where": [ - 3304 + 3583 ] } ], "damage_dealt_aggregate": [ - 3296, + 3575, { "distinct_on": [ - 3316, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3314, + 3593, "[player_damages_order_by!]" ], "where": [ - 3304 + 3583 ] } ], "damage_taken": [ - 3295, + 3574, { "distinct_on": [ - 3316, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3314, + 3593, "[player_damages_order_by!]" ], "where": [ - 3304 + 3583 ] } ], "damage_taken_aggregate": [ - 3296, + 3575, { "distinct_on": [ - 3316, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3314, + 3593, "[player_damages_order_by!]" ], "where": [ - 3304 + 3583 ] } ], "days_since_last_ban": [ - 40 + 41 ], "deaths": [ - 3449, + 3728, { "distinct_on": [ - 3513, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3511, + 3790, "[player_kills_order_by!]" ], "where": [ - 3460 + 3739 ] } ], "deaths_aggregate": [ - 3450, + 3729, { "distinct_on": [ - 3513, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3511, + 3790, "[player_kills_order_by!]" ], "where": [ - 3460 + 3739 ] } ], "discord_id": [ - 80 + 84 ], "draft_game_players": [ - 506, + 511, { "distinct_on": [ - 529, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 527, + 532, "[draft_game_players_order_by!]" ], "where": [ - 517 + 522 ] } ], "draft_game_players_aggregate": [ - 507, + 512, { "distinct_on": [ - 529, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 527, + 532, "[draft_game_players_order_by!]" ], "where": [ - 517 + 522 ] } ], "elo": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "elo_history": [ - 5547, + 5831, { "distinct_on": [ - 5573, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5572, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5850 ] } ], "elo_history_aggregate": [ - 5548, + 5832, { "distinct_on": [ - 5573, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5572, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5850 ] } ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 80 + 84 ], "faceit_player_id": [ - 80 + 84 ], "faceit_rank_history": [ - 3363, + 3642, { "distinct_on": [ - 3384, + 3663, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3382, + 3661, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3372 + 3651 ] } ], "faceit_rank_history_aggregate": [ - 3364, + 3643, { "distinct_on": [ - 3384, + 3663, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3382, + 3661, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3372 + 3651 ] } ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4670 + 4954 ], "faceit_url": [ - 80 + 84 ], "flashed_by_players": [ - 3404, + 3683, { "distinct_on": [ - 3427, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3425, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3694 ] } ], "flashed_by_players_aggregate": [ - 3405, + 3684, { "distinct_on": [ - 3427, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3425, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3694 ] } ], "flashed_players": [ - 3404, + 3683, { "distinct_on": [ - 3427, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3425, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3694 ] } ], "flashed_players_aggregate": [ - 3405, + 3684, { "distinct_on": [ - 3427, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3425, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3694 ] } ], "friends": [ - 2942, + 3221, { "distinct_on": [ - 2967, + 3246, "[my_friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2965, + 3244, "[my_friends_order_by!]" ], "where": [ - 2954 + 3233 ] } ], "friends_aggregate": [ - 2943, + 3222, { "distinct_on": [ - 2967, + 3246, "[my_friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2965, + 3244, "[my_friends_order_by!]" ], "where": [ - 2954 + 3233 ] } ], "game_ban_count": [ - 40 + 41 ], "invited_players": [ - 4338, + 4622, { "distinct_on": [ - 4359, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4357, + 4641, "[team_invites_order_by!]" ], "where": [ - 4347 + 4631 ] } ], "invited_players_aggregate": [ - 4339, + 4623, { "distinct_on": [ - 4359, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4357, + 4641, "[team_invites_order_by!]" ], "where": [ - 4347 + 4631 ] } ], "is_admin_sanctioned": [ - 5 + 6 ], "is_banned": [ - 5 + 6 ], "is_gagged": [ - 5 + 6 ], "is_in_another_match": [ - 5 + 6 ], "is_in_draft": [ - 5 + 6 ], "is_in_lobby": [ - 5 + 6 ], "is_muted": [ - 5 + 6 ], "is_registered": [ - 5 + 6 ], "kills": [ - 3449, + 3728, { "distinct_on": [ - 3513, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3511, + 3790, "[player_kills_order_by!]" ], "where": [ - 3460 + 3739 ] } ], "kills_aggregate": [ - 3450, + 3729, { "distinct_on": [ - 3513, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3511, + 3790, "[player_kills_order_by!]" ], "where": [ - 3460 + 3739 ] } ], "kills_by_weapons": [ - 3461, + 3740, { "distinct_on": [ - 3482, + 3761, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3480, + 3759, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3470 + 3749 ] } ], "kills_by_weapons_aggregate": [ - 3462, + 3741, { "distinct_on": [ - 3482, + 3761, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3480, + 3759, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3470 + 3749 ] } ], "language": [ - 80 + 84 ], "last_read_news_at": [ - 4670 + 4954 ], "last_sign_in_at": [ - 4670 + 4954 ], "lobby_players": [ - 2328, + 2585, { "distinct_on": [ - 2351, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2349, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2596 ] } ], "lobby_players_aggregate": [ - 2329, + 2586, { "distinct_on": [ - 2351, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2349, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2596 ] } ], "losses": [ - 40 + 41 ], "losses_competitive": [ - 40 + 41 ], "losses_duel": [ - 40 + 41 ], "losses_wingman": [ - 40 + 41 ], "match_map_hltv": [ - 5652, + 5936, { "distinct_on": [ - 5670, + 5954, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5669, + 5953, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5661 + 5945 ] } ], "match_map_hltv_aggregate": [ - 5653, + 5937, { "distinct_on": [ - 5670, + 5954, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5669, + 5953, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5661 + 5945 ] } ], "match_map_stats": [ - 3558, + 3837, { "distinct_on": [ - 3579, + 3858, "[player_match_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3577, + 3856, "[player_match_map_stats_order_by!]" ], "where": [ - 3567 + 3846 ] } ], "match_map_stats_aggregate": [ - 3559, + 3838, { "distinct_on": [ - 3579, + 3858, "[player_match_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3577, + 3856, "[player_match_map_stats_order_by!]" ], "where": [ - 3567 + 3846 ] } ], "match_stats": [ - 3617, + 3896, { "distinct_on": [ - 3633, + 3912, "[player_match_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3632, + 3911, "[player_match_stats_v_order_by!]" ], "where": [ - 3626 + 3905 ] } ], "match_stats_aggregate": [ - 3618, + 3897, { "distinct_on": [ - 3633, + 3912, "[player_match_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3632, + 3911, "[player_match_stats_v_order_by!]" ], "where": [ - 3626 + 3905 ] } ], "matches": [ - 2882, + 3157, { "distinct_on": [ - 2904, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2902, + 3179, "[matches_order_by!]" ], "where": [ - 2891 + 3168 ] } ], "matchmaking_cooldown": [ - 4670 + 4954 ], "multi_kills": [ - 5743, + 6027, { "distinct_on": [ - 5759, + 6043, "[v_player_multi_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5758, + 6042, "[v_player_multi_kills_order_by!]" ], "where": [ - 5752 + 6036 ] } ], "multi_kills_aggregate": [ - 5744, + 6028, { "distinct_on": [ - 5759, + 6043, "[v_player_multi_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5758, + 6042, "[v_player_multi_kills_order_by!]" ], "where": [ - 5752 + 6036 ] } ], "name": [ - 80 + 84 ], "name_registered": [ - 5 + 6 ], "notification_timezone": [ - 80 + 84 ], "notifications": [ - 3042, + 3321, { "distinct_on": [ - 3070, + 3349, "[notifications_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3067, + 3346, "[notifications_order_by!]" ], "where": [ - 3054 + 3333 ] } ], "notifications_aggregate": [ - 3043, + 3322, { "distinct_on": [ - 3070, + 3349, "[notifications_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3067, + 3346, "[notifications_order_by!]" ], "where": [ - 3054 + 3333 ] } ], "objectives": [ - 3650, + 3929, { "distinct_on": [ - 3671, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3669, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3938 ] } ], "objectives_aggregate": [ - 3651, + 3930, { "distinct_on": [ - 3671, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3669, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3938 ] } ], "owned_teams": [ - 4621, + 4905, { "distinct_on": [ - 4645, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4643, + 4927, "[teams_order_by!]" ], "where": [ - 4632 + 4916 ] } ], "owned_teams_aggregate": [ - 4622, + 4906, { "distinct_on": [ - 4645, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4643, + 4927, "[teams_order_by!]" ], "where": [ - 4632 + 4916 ] } ], "peak_elo": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "pending_match_imports": [ - 3095, + 3374, { "distinct_on": [ - 3116, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3114, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3383 ] } ], "pending_match_imports_aggregate": [ - 3096, + 3375, { "distinct_on": [ - 3116, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3114, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3383 ] } ], "player_lineup": [ - 2509, + 2766, { "distinct_on": [ - 2532, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2530, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2777 ] } ], "player_lineup_aggregate": [ - 2510, + 2767, { "distinct_on": [ - 2532, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2530, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2777 ] } ], "player_unused_utilities": [ - 3937, + 4216, { "distinct_on": [ - 3958, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3956, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4225 ] } ], "player_unused_utilities_aggregate": [ - 3938, + 4217, { "distinct_on": [ - 3958, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3956, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4225 ] } ], "premier_rank": [ - 40 + 41 ], "premier_rank_history": [ - 3709, + 3988, { "distinct_on": [ - 3730, + 4009, "[player_premier_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3728, + 4007, "[player_premier_rank_history_order_by!]" ], "where": [ - 3718 + 3997 ] } ], "premier_rank_history_aggregate": [ - 3710, + 3989, { "distinct_on": [ - 3730, + 4009, "[player_premier_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3728, + 4007, "[player_premier_rank_history_order_by!]" ], "where": [ - 3718 + 3997 ] } ], "premier_rank_updated_at": [ - 4670 + 4954 ], "profile_url": [ - 80 + 84 ], "quiet_hours_end": [ - 4667 + 4951 ], "quiet_hours_start": [ - 4667 + 4951 ], "role": [ - 1178 + 1243 ], "roster_image_url": [ - 80 + 84 ], "sanctions": [ - 3750, + 4029, { "distinct_on": [ - 3771, + 4050, "[player_sanctions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3769, + 4048, "[player_sanctions_order_by!]" ], "where": [ - 3759 + 4038 ] } ], "sanctions_aggregate": [ - 3751, + 4030, { "distinct_on": [ - 3771, + 4050, "[player_sanctions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3769, + 4048, "[player_sanctions_order_by!]" ], "where": [ - 3759 + 4038 ] } ], "season_stats": [ - 3791, + 4070, { "distinct_on": [ - 3822, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3820, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4089 ] } ], "season_stats_aggregate": [ - 3792, + 4071, { "distinct_on": [ - 3822, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3820, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4089 ] } ], "show_match_ready_modal": [ - 5 + 6 ], "stats": [ - 3850 + 4129 ], "steam_bans_checked_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "team_invites": [ - 4338, + 4622, { "distinct_on": [ - 4359, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4357, + 4641, "[team_invites_order_by!]" ], "where": [ - 4347 + 4631 ] } ], "team_invites_aggregate": [ - 4339, + 4623, { "distinct_on": [ - 4359, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4357, + 4641, "[team_invites_order_by!]" ], "where": [ - 4347 + 4631 ] } ], "team_members": [ - 4379, + 4663, { "distinct_on": [ - 4402, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4400, + 4684, "[team_roster_order_by!]" ], "where": [ - 4390 + 4674 ] } ], "team_members_aggregate": [ - 4380, + 4664, { "distinct_on": [ - 4402, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4400, + 4684, "[team_roster_order_by!]" ], "where": [ - 4390 + 4674 ] } ], "teams": [ - 4621, + 4905, { "distinct_on": [ - 4645, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4643, + 4927, "[teams_order_by!]" ], "where": [ - 4632 + 4916 ] } ], "total_matches": [ - 40 + 41 ], "tournament_organizers": [ - 4808, + 5092, { "distinct_on": [ - 4829, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4827, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5101 ] } ], "tournament_organizers_aggregate": [ - 4809, + 5093, { "distinct_on": [ - 4829, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4827, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5101 ] } ], "tournament_rosters": [ - 5023, + 5307, { "distinct_on": [ - 5044, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5042, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5316 ] } ], "tournament_rosters_aggregate": [ - 5024, + 5308, { "distinct_on": [ - 5044, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5042, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5316 ] } ], "tournaments": [ - 5106, + 5390, { "distinct_on": [ - 5140, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5138, + 5422, "[tournaments_order_by!]" ], "where": [ - 5127 + 5411 ] } ], "tournaments_aggregate": [ - 5107, + 5391, { "distinct_on": [ - 5140, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5138, + 5422, "[tournaments_order_by!]" ], "where": [ - 5127 + 5411 ] } ], "utility_thrown": [ - 3978, + 4257, { "distinct_on": [ - 3999, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3997, + 4276, "[player_utility_order_by!]" ], "where": [ - 3987 + 4266 ] } ], "utility_thrown_aggregate": [ - 3979, + 4258, { "distinct_on": [ - 3999, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3997, + 4276, "[player_utility_order_by!]" ], "where": [ - 3987 + 4266 ] } ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "weapon_stats": [ - 4019, + 4298, { "distinct_on": [ - 4035, + 4314, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4034, + 4313, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4028 + 4307 ] } ], "weapon_stats_aggregate": [ - 4020, + 4299, { "distinct_on": [ - 4035, + 4314, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4034, + 4313, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4028 + 4307 ] } ], "wins": [ - 40 + 41 ], "wins_competitive": [ - 40 + 41 ], "wins_duel": [ - 40 + 41 ], "wins_wingman": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "players_aggregate": { "aggregate": [ - 4054 + 4333 ], "nodes": [ - 4052 + 4331 ], "__typename": [ - 80 + 84 ] }, "players_aggregate_fields": { "avg": [ - 4055 + 4334 ], "count": [ - 40, + 41, { "columns": [ - 4067, + 4346, "[players_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4060 + 4339 ], "min": [ - 4061 + 4340 ], "stddev": [ - 4069 + 4348 ], "stddev_pop": [ - 4070 + 4349 ], "stddev_samp": [ - 4071 + 4350 ], "sum": [ - 4074 + 4353 ], "var_pop": [ - 4077 + 4356 ], "var_samp": [ - 4078 + 4357 ], "variance": [ - 4079 + 4358 ], "__typename": [ - 80 + 84 ] }, "players_avg_fields": { "days_since_last_ban": [ - 31 + 32 ], "faceit_elo": [ - 31 + 32 ], "faceit_skill_level": [ - 31 + 32 ], "game_ban_count": [ - 31 + 32 ], "losses": [ - 40 + 41 ], "losses_competitive": [ - 40 + 41 ], "losses_duel": [ - 40 + 41 ], "losses_wingman": [ - 40 + 41 ], "premier_rank": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "total_matches": [ - 40 + 41 ], "vac_ban_count": [ - 31 + 32 ], "wins": [ - 40 + 41 ], "wins_competitive": [ - 40 + 41 ], "wins_duel": [ - 40 + 41 ], "wins_wingman": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "players_bool_exp": { "_and": [ - 4056 + 4335 ], "_not": [ - 4056 + 4335 ], "_or": [ - 4056 + 4335 ], "abandoned_matches": [ - 135 + 140 ], "abandoned_matches_aggregate": [ - 128 + 133 ], "aim_weapon_stats": [ - 3200 + 3479 ], "aim_weapon_stats_aggregate": [ - 3193 + 3472 ], "assists": [ - 3243 + 3522 ], "assists_aggregate": [ - 3234 + 3513 ], "assited_by_players": [ - 3243 + 3522 ], "assited_by_players_aggregate": [ - 3234 + 3513 ], "avatar_url": [ - 82 + 86 ], "awards": [ - 204 + 209 ], "awards_aggregate": [ - 197 + 202 ], "banned_until": [ - 4671 + 4955 ], "coach_lineups": [ - 2563 + 2820 ], "coach_lineups_aggregate": [ - 2556 + 2813 ], "country": [ - 82 + 86 ], "created_at": [ - 4671 + 4955 ], "current_lobby_id": [ - 5172 + 5456 ], "custom_avatar_url": [ - 82 + 86 ], "damage_dealt": [ - 3304 + 3583 ], "damage_dealt_aggregate": [ - 3297 + 3576 ], "damage_taken": [ - 3304 + 3583 ], "damage_taken_aggregate": [ - 3297 + 3576 ], "days_since_last_ban": [ - 41 + 42 ], "deaths": [ - 3460 + 3739 ], "deaths_aggregate": [ - 3451 + 3730 ], "discord_id": [ - 82 + 86 ], "draft_game_players": [ - 517 + 522 ], "draft_game_players_aggregate": [ - 508 + 513 ], "elo": [ - 1932 + 2189 ], "elo_history": [ - 5566 + 5850 ], "elo_history_aggregate": [ - 5549 + 5833 ], "faceit_elo": [ - 41 + 42 ], "faceit_nickname": [ - 82 + 86 ], "faceit_player_id": [ - 82 + 86 ], "faceit_rank_history": [ - 3372 + 3651 ], "faceit_rank_history_aggregate": [ - 3365 + 3644 ], "faceit_skill_level": [ - 41 + 42 ], "faceit_updated_at": [ - 4671 + 4955 ], "faceit_url": [ - 82 + 86 ], "flashed_by_players": [ - 3415 + 3694 ], "flashed_by_players_aggregate": [ - 3406 + 3685 ], "flashed_players": [ - 3415 + 3694 ], "flashed_players_aggregate": [ - 3406 + 3685 ], "friends": [ - 2954 + 3233 ], "friends_aggregate": [ - 2944 + 3223 ], "game_ban_count": [ - 41 + 42 ], "invited_players": [ - 4347 + 4631 ], "invited_players_aggregate": [ - 4340 + 4624 ], "is_admin_sanctioned": [ - 6 + 7 ], "is_banned": [ - 6 + 7 ], "is_gagged": [ - 6 + 7 ], "is_in_another_match": [ - 6 + 7 ], "is_in_draft": [ - 6 + 7 ], "is_in_lobby": [ - 6 + 7 ], "is_muted": [ - 6 + 7 ], "is_registered": [ - 6 + 7 ], "kills": [ - 3460 + 3739 ], "kills_aggregate": [ - 3451 + 3730 ], "kills_by_weapons": [ - 3470 + 3749 ], "kills_by_weapons_aggregate": [ - 3463 + 3742 ], "language": [ - 82 + 86 ], "last_read_news_at": [ - 4671 + 4955 ], "last_sign_in_at": [ - 4671 + 4955 ], "lobby_players": [ - 2339 + 2596 ], "lobby_players_aggregate": [ - 2330 + 2587 ], "losses": [ - 41 + 42 ], "losses_competitive": [ - 41 + 42 ], "losses_duel": [ - 41 + 42 ], "losses_wingman": [ - 41 + 42 ], "match_map_hltv": [ - 5661 + 5945 ], "match_map_hltv_aggregate": [ - 5654 + 5938 ], "match_map_stats": [ - 3567 + 3846 ], "match_map_stats_aggregate": [ - 3560 + 3839 ], "match_stats": [ - 3626 + 3905 ], "match_stats_aggregate": [ - 3619 + 3898 ], "matches": [ - 2891 + 3168 ], "matchmaking_cooldown": [ - 4671 + 4955 ], "multi_kills": [ - 5752 + 6036 ], "multi_kills_aggregate": [ - 5745 + 6029 ], "name": [ - 82 + 86 ], "name_registered": [ - 6 + 7 ], "notification_timezone": [ - 82 + 86 ], "notifications": [ - 3054 + 3333 ], "notifications_aggregate": [ - 3044 + 3323 ], "objectives": [ - 3659 + 3938 ], "objectives_aggregate": [ - 3652 + 3931 ], "owned_teams": [ - 4632 + 4916 ], "owned_teams_aggregate": [ - 4623 + 4907 ], "peak_elo": [ - 1932 + 2189 ], "pending_match_imports": [ - 3104 + 3383 ], "pending_match_imports_aggregate": [ - 3097 + 3376 ], "player_lineup": [ - 2520 + 2777 ], "player_lineup_aggregate": [ - 2511 + 2768 ], "player_unused_utilities": [ - 3946 + 4225 ], "player_unused_utilities_aggregate": [ - 3939 + 4218 ], "premier_rank": [ - 41 + 42 ], "premier_rank_history": [ - 3718 + 3997 ], "premier_rank_history_aggregate": [ - 3711 + 3990 ], "premier_rank_updated_at": [ - 4671 + 4955 ], "profile_url": [ - 82 + 86 ], "quiet_hours_end": [ - 4668 + 4952 ], "quiet_hours_start": [ - 4668 + 4952 ], "role": [ - 1179 + 1244 ], "roster_image_url": [ - 82 + 86 ], "sanctions": [ - 3759 + 4038 ], "sanctions_aggregate": [ - 3752 + 4031 ], "season_stats": [ - 3810 + 4089 ], "season_stats_aggregate": [ - 3793 + 4072 ], "show_match_ready_modal": [ - 6 + 7 ], "stats": [ - 3854 + 4133 ], "steam_bans_checked_at": [ - 4671 + 4955 ], "steam_id": [ - 266 + 271 ], "team_invites": [ - 4347 + 4631 ], "team_invites_aggregate": [ - 4340 + 4624 ], "team_members": [ - 4390 + 4674 ], "team_members_aggregate": [ - 4381 + 4665 ], "teams": [ - 4632 + 4916 ], "total_matches": [ - 41 + 42 ], "tournament_organizers": [ - 4817 + 5101 ], "tournament_organizers_aggregate": [ - 4810 + 5094 ], "tournament_rosters": [ - 5032 + 5316 ], "tournament_rosters_aggregate": [ - 5025 + 5309 ], "tournaments": [ - 5127 + 5411 ], "tournaments_aggregate": [ - 5108 + 5392 ], "utility_thrown": [ - 3987 + 4266 ], "utility_thrown_aggregate": [ - 3980 + 4259 ], "vac_ban_count": [ - 41 + 42 ], "vac_banned": [ - 6 + 7 ], "weapon_stats": [ - 4028 + 4307 ], "weapon_stats_aggregate": [ - 4021 + 4300 ], "wins": [ - 41 + 42 ], "wins_competitive": [ - 41 + 42 ], "wins_duel": [ - 41 + 42 ], "wins_wingman": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "players_constraint": {}, "players_inc_input": { "days_since_last_ban": [ - 40 + 41 ], "faceit_elo": [ - 40 + 41 ], "faceit_skill_level": [ - 40 + 41 ], "game_ban_count": [ - 40 + 41 ], "premier_rank": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "vac_ban_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "players_insert_input": { "abandoned_matches": [ - 132 + 137 ], "aim_weapon_stats": [ - 3197 + 3476 ], "assists": [ - 3240 + 3519 ], "assited_by_players": [ - 3240 + 3519 ], "avatar_url": [ - 80 + 84 ], "awards": [ - 201 + 206 ], "coach_lineups": [ - 2560 + 2817 ], "country": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "custom_avatar_url": [ - 80 + 84 ], "damage_dealt": [ - 3301 + 3580 ], "damage_taken": [ - 3301 + 3580 ], "days_since_last_ban": [ - 40 + 41 ], "deaths": [ - 3457 + 3736 ], "discord_id": [ - 80 + 84 ], "draft_game_players": [ - 514 + 519 ], "elo_history": [ - 5563 + 5847 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 80 + 84 ], "faceit_player_id": [ - 80 + 84 ], "faceit_rank_history": [ - 3369 + 3648 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4670 + 4954 ], "faceit_url": [ - 80 + 84 ], "flashed_by_players": [ - 3412 + 3691 ], "flashed_players": [ - 3412 + 3691 ], "friends": [ - 2951 + 3230 ], "game_ban_count": [ - 40 + 41 ], "invited_players": [ - 4344 + 4628 ], "kills": [ - 3457 + 3736 ], "kills_by_weapons": [ - 3467 + 3746 ], "language": [ - 80 + 84 ], "last_read_news_at": [ - 4670 + 4954 ], "last_sign_in_at": [ - 4670 + 4954 ], "lobby_players": [ - 2336 + 2593 ], "match_map_hltv": [ - 5658 + 5942 ], "match_map_stats": [ - 3564 + 3843 ], "match_stats": [ - 3623 + 3902 ], "multi_kills": [ - 5749 + 6033 ], "name": [ - 80 + 84 ], "name_registered": [ - 5 + 6 ], "notification_timezone": [ - 80 + 84 ], "notifications": [ - 3051 + 3330 ], "objectives": [ - 3656 + 3935 ], "owned_teams": [ - 4629 + 4913 ], "pending_match_imports": [ - 3101 + 3380 ], "player_lineup": [ - 2517 + 2774 ], "player_unused_utilities": [ - 3943 + 4222 ], "premier_rank": [ - 40 + 41 ], "premier_rank_history": [ - 3715 + 3994 ], "premier_rank_updated_at": [ - 4670 + 4954 ], "profile_url": [ - 80 + 84 ], "quiet_hours_end": [ - 4667 + 4951 ], "quiet_hours_start": [ - 4667 + 4951 ], "role": [ - 1178 + 1243 ], "roster_image_url": [ - 80 + 84 ], "sanctions": [ - 3756 + 4035 ], "season_stats": [ - 3807 + 4086 ], "show_match_ready_modal": [ - 5 + 6 ], "stats": [ - 3861 + 4140 ], "steam_bans_checked_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "team_invites": [ - 4344 + 4628 ], "team_members": [ - 4387 + 4671 ], "tournament_organizers": [ - 4814 + 5098 ], "tournament_rosters": [ - 5029 + 5313 ], "tournaments": [ - 5124 + 5408 ], "utility_thrown": [ - 3984 + 4263 ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "weapon_stats": [ - 4025 + 4304 ], "__typename": [ - 80 + 84 ] }, "players_max_fields": { "avatar_url": [ - 80 + 84 ], "banned_until": [ - 4670 + 4954 ], "country": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "current_lobby_id": [ - 5170 + 5454 ], "custom_avatar_url": [ - 80 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 80 + 84 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 80 + 84 ], "faceit_player_id": [ - 80 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4670 + 4954 ], "faceit_url": [ - 80 + 84 ], "game_ban_count": [ - 40 + 41 ], "language": [ - 80 + 84 ], "last_read_news_at": [ - 4670 + 4954 ], "last_sign_in_at": [ - 4670 + 4954 ], "losses": [ - 40 + 41 ], "losses_competitive": [ - 40 + 41 ], "losses_duel": [ - 40 + 41 ], "losses_wingman": [ - 40 + 41 ], "matchmaking_cooldown": [ - 4670 + 4954 ], "name": [ - 80 + 84 ], "notification_timezone": [ - 80 + 84 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4670 + 4954 ], "profile_url": [ - 80 + 84 ], "roster_image_url": [ - 80 + 84 ], "steam_bans_checked_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "total_matches": [ - 40 + 41 ], "vac_ban_count": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "wins_competitive": [ - 40 + 41 ], "wins_duel": [ - 40 + 41 ], "wins_wingman": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "players_min_fields": { "avatar_url": [ - 80 + 84 ], "banned_until": [ - 4670 + 4954 ], "country": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "current_lobby_id": [ - 5170 + 5454 ], "custom_avatar_url": [ - 80 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 80 + 84 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 80 + 84 ], "faceit_player_id": [ - 80 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4670 + 4954 ], "faceit_url": [ - 80 + 84 ], "game_ban_count": [ - 40 + 41 ], "language": [ - 80 + 84 ], "last_read_news_at": [ - 4670 + 4954 ], "last_sign_in_at": [ - 4670 + 4954 ], "losses": [ - 40 + 41 ], "losses_competitive": [ - 40 + 41 ], "losses_duel": [ - 40 + 41 ], "losses_wingman": [ - 40 + 41 ], "matchmaking_cooldown": [ - 4670 + 4954 ], "name": [ - 80 + 84 ], "notification_timezone": [ - 80 + 84 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4670 + 4954 ], "profile_url": [ - 80 + 84 ], "roster_image_url": [ - 80 + 84 ], "steam_bans_checked_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "total_matches": [ - 40 + 41 ], "vac_ban_count": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "wins_competitive": [ - 40 + 41 ], "wins_duel": [ - 40 + 41 ], "wins_wingman": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "players_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4052 + 4331 ], "__typename": [ - 80 + 84 ] }, "players_obj_rel_insert_input": { "data": [ - 4059 + 4338 ], "on_conflict": [ - 4064 + 4343 ], "__typename": [ - 80 + 84 ] }, "players_on_conflict": { "constraint": [ - 4057 + 4336 ], "update_columns": [ - 4075 + 4354 ], "where": [ - 4056 + 4335 ], "__typename": [ - 80 + 84 ] }, "players_order_by": { "abandoned_matches_aggregate": [ - 131 + 136 ], "aim_weapon_stats_aggregate": [ - 3196 + 3475 ], "assists_aggregate": [ - 3239 + 3518 ], "assited_by_players_aggregate": [ - 3239 + 3518 ], "avatar_url": [ - 3094 + 3373 ], "awards_aggregate": [ - 200 + 205 ], "banned_until": [ - 3094 + 3373 ], "coach_lineups_aggregate": [ - 2559 + 2816 ], "country": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "current_lobby_id": [ - 3094 + 3373 ], "custom_avatar_url": [ - 3094 + 3373 ], "damage_dealt_aggregate": [ - 3300 + 3579 ], "damage_taken_aggregate": [ - 3300 + 3579 ], "days_since_last_ban": [ - 3094 + 3373 ], "deaths_aggregate": [ - 3456 + 3735 ], "discord_id": [ - 3094 + 3373 ], "draft_game_players_aggregate": [ - 513 + 518 ], "elo": [ - 3094 + 3373 ], "elo_history_aggregate": [ - 5562 + 5846 ], "faceit_elo": [ - 3094 + 3373 ], "faceit_nickname": [ - 3094 + 3373 ], "faceit_player_id": [ - 3094 + 3373 ], "faceit_rank_history_aggregate": [ - 3368 + 3647 ], "faceit_skill_level": [ - 3094 + 3373 ], "faceit_updated_at": [ - 3094 + 3373 ], "faceit_url": [ - 3094 + 3373 ], "flashed_by_players_aggregate": [ - 3411 + 3690 ], "flashed_players_aggregate": [ - 3411 + 3690 ], "friends_aggregate": [ - 2949 + 3228 ], "game_ban_count": [ - 3094 + 3373 ], "invited_players_aggregate": [ - 4343 + 4627 ], "is_admin_sanctioned": [ - 3094 + 3373 ], "is_banned": [ - 3094 + 3373 ], "is_gagged": [ - 3094 + 3373 ], "is_in_another_match": [ - 3094 + 3373 ], "is_in_draft": [ - 3094 + 3373 ], "is_in_lobby": [ - 3094 + 3373 ], "is_muted": [ - 3094 + 3373 ], "is_registered": [ - 3094 + 3373 ], "kills_aggregate": [ - 3456 + 3735 ], "kills_by_weapons_aggregate": [ - 3466 + 3745 ], "language": [ - 3094 + 3373 ], "last_read_news_at": [ - 3094 + 3373 ], "last_sign_in_at": [ - 3094 + 3373 ], "lobby_players_aggregate": [ - 2335 + 2592 ], "losses": [ - 3094 + 3373 ], "losses_competitive": [ - 3094 + 3373 ], "losses_duel": [ - 3094 + 3373 ], "losses_wingman": [ - 3094 + 3373 ], "match_map_hltv_aggregate": [ - 5657 + 5941 ], "match_map_stats_aggregate": [ - 3563 + 3842 ], "match_stats_aggregate": [ - 3622 + 3901 ], "matches_aggregate": [ - 2887 + 3164 ], "matchmaking_cooldown": [ - 3094 + 3373 ], "multi_kills_aggregate": [ - 5748 + 6032 ], "name": [ - 3094 + 3373 ], "name_registered": [ - 3094 + 3373 ], "notification_timezone": [ - 3094 + 3373 ], "notifications_aggregate": [ - 3049 + 3328 ], "objectives_aggregate": [ - 3655 + 3934 ], "owned_teams_aggregate": [ - 4628 + 4912 ], "peak_elo": [ - 3094 + 3373 ], "pending_match_imports_aggregate": [ - 3100 + 3379 ], "player_lineup_aggregate": [ - 2516 + 2773 ], "player_unused_utilities_aggregate": [ - 3942 + 4221 ], "premier_rank": [ - 3094 + 3373 ], "premier_rank_history_aggregate": [ - 3714 + 3993 ], "premier_rank_updated_at": [ - 3094 + 3373 ], "profile_url": [ - 3094 + 3373 ], "quiet_hours_end": [ - 3094 + 3373 ], "quiet_hours_start": [ - 3094 + 3373 ], "role": [ - 3094 + 3373 ], "roster_image_url": [ - 3094 + 3373 ], "sanctions_aggregate": [ - 3755 + 4034 ], "season_stats_aggregate": [ - 3806 + 4085 ], "show_match_ready_modal": [ - 3094 + 3373 ], "stats": [ - 3863 + 4142 ], "steam_bans_checked_at": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_invites_aggregate": [ - 4343 + 4627 ], "team_members_aggregate": [ - 4386 + 4670 ], "teams_aggregate": [ - 4628 + 4912 ], "total_matches": [ - 3094 + 3373 ], "tournament_organizers_aggregate": [ - 4813 + 5097 ], "tournament_rosters_aggregate": [ - 5028 + 5312 ], "tournaments_aggregate": [ - 5123 + 5407 ], "utility_thrown_aggregate": [ - 3983 + 4262 ], "vac_ban_count": [ - 3094 + 3373 ], "vac_banned": [ - 3094 + 3373 ], "weapon_stats_aggregate": [ - 4024 + 4303 ], "wins": [ - 3094 + 3373 ], "wins_competitive": [ - 3094 + 3373 ], "wins_duel": [ - 3094 + 3373 ], "wins_wingman": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "players_pk_columns_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "players_select_column": {}, "players_set_input": { "avatar_url": [ - 80 + 84 ], "country": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "custom_avatar_url": [ - 80 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 80 + 84 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 80 + 84 ], "faceit_player_id": [ - 80 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4670 + 4954 ], "faceit_url": [ - 80 + 84 ], "game_ban_count": [ - 40 + 41 ], "language": [ - 80 + 84 ], "last_read_news_at": [ - 4670 + 4954 ], "last_sign_in_at": [ - 4670 + 4954 ], "name": [ - 80 + 84 ], "name_registered": [ - 5 + 6 ], "notification_timezone": [ - 80 + 84 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4670 + 4954 ], "profile_url": [ - 80 + 84 ], "quiet_hours_end": [ - 4667 + 4951 ], "quiet_hours_start": [ - 4667 + 4951 ], "role": [ - 1178 + 1243 ], "roster_image_url": [ - 80 + 84 ], "show_match_ready_modal": [ - 5 + 6 ], "steam_bans_checked_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "players_stddev_fields": { "days_since_last_ban": [ - 31 + 32 ], "faceit_elo": [ - 31 + 32 ], "faceit_skill_level": [ - 31 + 32 ], "game_ban_count": [ - 31 + 32 ], "losses": [ - 40 + 41 ], "losses_competitive": [ - 40 + 41 ], "losses_duel": [ - 40 + 41 ], "losses_wingman": [ - 40 + 41 ], "premier_rank": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "total_matches": [ - 40 + 41 ], "vac_ban_count": [ - 31 + 32 ], "wins": [ - 40 + 41 ], "wins_competitive": [ - 40 + 41 ], "wins_duel": [ - 40 + 41 ], "wins_wingman": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "players_stddev_pop_fields": { "days_since_last_ban": [ - 31 + 32 ], "faceit_elo": [ - 31 + 32 ], "faceit_skill_level": [ - 31 + 32 ], "game_ban_count": [ - 31 + 32 ], "losses": [ - 40 + 41 ], "losses_competitive": [ - 40 + 41 ], "losses_duel": [ - 40 + 41 ], "losses_wingman": [ - 40 + 41 ], "premier_rank": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "total_matches": [ - 40 + 41 ], "vac_ban_count": [ - 31 + 32 ], "wins": [ - 40 + 41 ], "wins_competitive": [ - 40 + 41 ], "wins_duel": [ - 40 + 41 ], "wins_wingman": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "players_stddev_samp_fields": { "days_since_last_ban": [ - 31 + 32 ], "faceit_elo": [ - 31 + 32 ], "faceit_skill_level": [ - 31 + 32 ], "game_ban_count": [ - 31 + 32 ], "losses": [ - 40 + 41 ], "losses_competitive": [ - 40 + 41 ], "losses_duel": [ - 40 + 41 ], "losses_wingman": [ - 40 + 41 ], "premier_rank": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "total_matches": [ - 40 + 41 ], "vac_ban_count": [ - 31 + 32 ], "wins": [ - 40 + 41 ], "wins_competitive": [ - 40 + 41 ], "wins_duel": [ - 40 + 41 ], "wins_wingman": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "players_stream_cursor_input": { "initial_value": [ - 4073 + 4352 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "players_stream_cursor_value_input": { "avatar_url": [ - 80 + 84 ], "country": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "custom_avatar_url": [ - 80 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 80 + 84 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 80 + 84 ], "faceit_player_id": [ - 80 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4670 + 4954 ], "faceit_url": [ - 80 + 84 ], "game_ban_count": [ - 40 + 41 ], "language": [ - 80 + 84 ], "last_read_news_at": [ - 4670 + 4954 ], "last_sign_in_at": [ - 4670 + 4954 ], "name": [ - 80 + 84 ], "name_registered": [ - 5 + 6 ], "notification_timezone": [ - 80 + 84 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4670 + 4954 ], "profile_url": [ - 80 + 84 ], "quiet_hours_end": [ - 4667 + 4951 ], "quiet_hours_start": [ - 4667 + 4951 ], "role": [ - 1178 + 1243 ], "roster_image_url": [ - 80 + 84 ], "show_match_ready_modal": [ - 5 + 6 ], "steam_bans_checked_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "__typename": [ - 80 + 84 ] }, "players_sum_fields": { "days_since_last_ban": [ - 40 + 41 ], "faceit_elo": [ - 40 + 41 ], "faceit_skill_level": [ - 40 + 41 ], "game_ban_count": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "losses_competitive": [ - 40 + 41 ], "losses_duel": [ - 40 + 41 ], "losses_wingman": [ - 40 + 41 ], "premier_rank": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "total_matches": [ - 40 + 41 ], "vac_ban_count": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "wins_competitive": [ - 40 + 41 ], "wins_duel": [ - 40 + 41 ], "wins_wingman": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "players_update_column": {}, "players_updates": { "_inc": [ - 4058 + 4337 ], "_set": [ - 4068 + 4347 ], "where": [ - 4056 + 4335 ], "__typename": [ - 80 + 84 ] }, "players_var_pop_fields": { "days_since_last_ban": [ - 31 + 32 ], "faceit_elo": [ - 31 + 32 ], "faceit_skill_level": [ - 31 + 32 ], "game_ban_count": [ - 31 + 32 ], "losses": [ - 40 + 41 ], "losses_competitive": [ - 40 + 41 ], "losses_duel": [ - 40 + 41 ], "losses_wingman": [ - 40 + 41 ], "premier_rank": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "total_matches": [ - 40 + 41 ], "vac_ban_count": [ - 31 + 32 ], "wins": [ - 40 + 41 ], "wins_competitive": [ - 40 + 41 ], "wins_duel": [ - 40 + 41 ], "wins_wingman": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "players_var_samp_fields": { "days_since_last_ban": [ - 31 + 32 ], "faceit_elo": [ - 31 + 32 ], "faceit_skill_level": [ - 31 + 32 ], "game_ban_count": [ - 31 + 32 ], "losses": [ - 40 + 41 ], "losses_competitive": [ - 40 + 41 ], "losses_duel": [ - 40 + 41 ], "losses_wingman": [ - 40 + 41 ], "premier_rank": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "total_matches": [ - 40 + 41 ], "vac_ban_count": [ - 31 + 32 ], "wins": [ - 40 + 41 ], "wins_competitive": [ - 40 + 41 ], "wins_duel": [ - 40 + 41 ], "wins_wingman": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "players_variance_fields": { "days_since_last_ban": [ - 31 + 32 ], "faceit_elo": [ - 31 + 32 ], "faceit_skill_level": [ - 31 + 32 ], "game_ban_count": [ - 31 + 32 ], "losses": [ - 40 + 41 ], "losses_competitive": [ - 40 + 41 ], "losses_duel": [ - 40 + 41 ], "losses_wingman": [ - 40 + 41 ], "premier_rank": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "total_matches": [ - 40 + 41 ], "vac_ban_count": [ - 31 + 32 ], "wins": [ - 40 + 41 ], "wins_competitive": [ - 40 + 41 ], "wins_duel": [ - 40 + 41 ], "wins_wingman": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "plugin_versions": { "min_game_build_id": [ - 40 + 41 ], "published_at": [ - 4670 + 4954 ], "runtime": [ - 1198 + 1263 ], "version": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_aggregate": { "aggregate": [ - 4082 + 4361 ], "nodes": [ - 4080 + 4359 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_aggregate_fields": { "avg": [ - 4083 + 4362 ], "count": [ - 40, + 41, { "columns": [ - 4094, + 4373, "[plugin_versions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4088 + 4367 ], "min": [ - 4089 + 4368 ], "stddev": [ - 4096 + 4375 ], "stddev_pop": [ - 4097 + 4376 ], "stddev_samp": [ - 4098 + 4377 ], "sum": [ - 4101 + 4380 ], "var_pop": [ - 4104 + 4383 ], "var_samp": [ - 4105 + 4384 ], "variance": [ - 4106 + 4385 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_avg_fields": { "min_game_build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_bool_exp": { "_and": [ - 4084 + 4363 ], "_not": [ - 4084 + 4363 ], "_or": [ - 4084 + 4363 ], "min_game_build_id": [ - 41 + 42 ], "published_at": [ - 4671 + 4955 ], "runtime": [ - 1199 + 1264 ], "version": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_constraint": {}, "plugin_versions_inc_input": { "min_game_build_id": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_insert_input": { "min_game_build_id": [ - 40 + 41 ], "published_at": [ - 4670 + 4954 ], "runtime": [ - 1198 + 1263 ], "version": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_max_fields": { "min_game_build_id": [ - 40 + 41 ], "published_at": [ - 4670 + 4954 ], "version": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_min_fields": { "min_game_build_id": [ - 40 + 41 ], "published_at": [ - 4670 + 4954 ], "version": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4080 + 4359 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_on_conflict": { "constraint": [ - 4085 + 4364 ], "update_columns": [ - 4102 + 4381 ], "where": [ - 4084 + 4363 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_order_by": { "min_game_build_id": [ - 3094 + 3373 ], "published_at": [ - 3094 + 3373 ], "runtime": [ - 3094 + 3373 ], "version": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_pk_columns_input": { "runtime": [ - 1198 + 1263 ], "version": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_select_column": {}, "plugin_versions_set_input": { "min_game_build_id": [ - 40 + 41 ], "published_at": [ - 4670 + 4954 ], "runtime": [ - 1198 + 1263 ], "version": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_stddev_fields": { "min_game_build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_stddev_pop_fields": { "min_game_build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_stddev_samp_fields": { "min_game_build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 4100 + 4379 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_stream_cursor_value_input": { "min_game_build_id": [ - 40 + 41 ], "published_at": [ - 4670 + 4954 ], "runtime": [ - 1198 + 1263 ], "version": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_sum_fields": { "min_game_build_id": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 4086 + 4365 ], "_set": [ - 4095 + 4374 ], "where": [ - 4084 + 4363 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_var_pop_fields": { "min_game_build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_var_samp_fields": { "min_game_build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "plugin_versions_variance_fields": { "min_game_build_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions": { "auth": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "endpoint": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "last_used_at": [ - 4670 + 4954 ], "p256dh": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "user_agent": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_aggregate": { "aggregate": [ - 4109 + 4388 ], "nodes": [ - 4107 + 4386 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_aggregate_fields": { "avg": [ - 4110 + 4389 ], "count": [ - 40, + 41, { "columns": [ - 4121, + 4400, "[push_subscriptions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4115 + 4394 ], "min": [ - 4116 + 4395 ], "stddev": [ - 4123 + 4402 ], "stddev_pop": [ - 4124 + 4403 ], "stddev_samp": [ - 4125 + 4404 ], "sum": [ - 4128 + 4407 ], "var_pop": [ - 4131 + 4410 ], "var_samp": [ - 4132 + 4411 ], "variance": [ - 4133 + 4412 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_bool_exp": { "_and": [ - 4111 + 4390 ], "_not": [ - 4111 + 4390 ], "_or": [ - 4111 + 4390 ], "auth": [ - 82 + 86 ], "created_at": [ - 4671 + 4955 ], "endpoint": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "last_used_at": [ - 4671 + 4955 ], "p256dh": [ - 82 + 86 ], "steam_id": [ - 266 + 271 ], "user_agent": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_constraint": {}, "push_subscriptions_inc_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_insert_input": { "auth": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "endpoint": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "last_used_at": [ - 4670 + 4954 ], "p256dh": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "user_agent": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_max_fields": { "auth": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "endpoint": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "last_used_at": [ - 4670 + 4954 ], "p256dh": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "user_agent": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_min_fields": { "auth": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "endpoint": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "last_used_at": [ - 4670 + 4954 ], "p256dh": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "user_agent": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4107 + 4386 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_on_conflict": { "constraint": [ - 4112 + 4391 ], "update_columns": [ - 4129 + 4408 ], "where": [ - 4111 + 4390 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_order_by": { "auth": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "endpoint": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "last_used_at": [ - 3094 + 3373 ], "p256dh": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "user_agent": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_select_column": {}, "push_subscriptions_set_input": { "auth": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "endpoint": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "last_used_at": [ - 4670 + 4954 ], "p256dh": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "user_agent": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_stream_cursor_input": { "initial_value": [ - 4127 + 4406 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_stream_cursor_value_input": { "auth": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "endpoint": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "last_used_at": [ - 4670 + 4954 ], "p256dh": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "user_agent": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_update_column": {}, "push_subscriptions_updates": { "_inc": [ - 4113 + 4392 ], "_set": [ - 4122 + 4401 ], "where": [ - 4111 + 4390 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "push_subscriptions_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "recalculate_tournament_awards_args": { "_tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "reorder_league_divisions_args": { "_division_ids": [ - 125 + 130 ], "__typename": [ - 80 + 84 ] }, "restart_league_season_args": { "_league_season_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "seasons": { "awards": [ - 195, + 200, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "awards_aggregate": [ - 196, + 201, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "ends_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "needs_rebuild": [ - 5 + 6 ], "number": [ - 40 + 41 ], "player_season_stats": [ - 3791, + 4070, { "distinct_on": [ - 3822, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3820, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4089 ] } ], "player_season_stats_aggregate": [ - 3792, + 4071, { "distinct_on": [ - 3822, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3820, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4089 ] } ], "starts_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "seasons_aggregate": { "aggregate": [ - 4140 + 4419 ], "nodes": [ - 4138 + 4417 ], "__typename": [ - 80 + 84 ] }, "seasons_aggregate_fields": { "avg": [ - 4141 + 4420 ], "count": [ - 40, + 41, { "columns": [ - 4153, + 4432, "[seasons_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4146 + 4425 ], "min": [ - 4147 + 4426 ], "stddev": [ - 4155 + 4434 ], "stddev_pop": [ - 4156 + 4435 ], "stddev_samp": [ - 4157 + 4436 ], "sum": [ - 4160 + 4439 ], "var_pop": [ - 4163 + 4442 ], "var_samp": [ - 4164 + 4443 ], "variance": [ - 4165 + 4444 ], "__typename": [ - 80 + 84 ] }, "seasons_avg_fields": { "number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "seasons_bool_exp": { "_and": [ - 4142 + 4421 ], "_not": [ - 4142 + 4421 ], "_or": [ - 4142 + 4421 ], "awards": [ - 204 + 209 ], "awards_aggregate": [ - 197 + 202 ], "created_at": [ - 4671 + 4955 ], "description": [ - 82 + 86 ], "ends_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "needs_rebuild": [ - 6 + 7 ], "number": [ - 41 + 42 ], "player_season_stats": [ - 3810 + 4089 ], "player_season_stats_aggregate": [ - 3793 + 4072 ], "starts_at": [ - 4671 + 4955 ], "__typename": [ - 80 + 84 ] }, "seasons_constraint": {}, "seasons_inc_input": { "number": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "seasons_insert_input": { "awards": [ - 201 + 206 ], "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "ends_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "needs_rebuild": [ - 5 + 6 ], "number": [ - 40 + 41 ], "player_season_stats": [ - 3807 + 4086 ], "starts_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "seasons_max_fields": { "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "ends_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "number": [ - 40 + 41 ], "starts_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "seasons_min_fields": { "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "ends_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "number": [ - 40 + 41 ], "starts_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "seasons_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4138 + 4417 ], "__typename": [ - 80 + 84 ] }, "seasons_obj_rel_insert_input": { "data": [ - 4145 + 4424 ], "on_conflict": [ - 4150 + 4429 ], "__typename": [ - 80 + 84 ] }, "seasons_on_conflict": { "constraint": [ - 4143 + 4422 ], "update_columns": [ - 4161 + 4440 ], "where": [ - 4142 + 4421 ], "__typename": [ - 80 + 84 ] }, "seasons_order_by": { "awards_aggregate": [ - 200 + 205 ], "created_at": [ - 3094 + 3373 ], "description": [ - 3094 + 3373 ], "ends_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "needs_rebuild": [ - 3094 + 3373 ], "number": [ - 3094 + 3373 ], "player_season_stats_aggregate": [ - 3806 + 4085 ], "starts_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "seasons_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "ends_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "needs_rebuild": [ - 5 + 6 ], "number": [ - 40 + 41 ], "starts_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "seasons_stddev_fields": { "number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "seasons_stddev_pop_fields": { "number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "seasons_stddev_samp_fields": { "number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "seasons_stream_cursor_input": { "initial_value": [ - 4159 + 4438 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "seasons_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "ends_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "needs_rebuild": [ - 5 + 6 ], "number": [ - 40 + 41 ], "starts_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "seasons_sum_fields": { "number": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 4144 + 4423 ], "_set": [ - 4154 + 4433 ], "where": [ - 4142 + 4421 ], "__typename": [ - 80 + 84 ] }, "seasons_var_pop_fields": { "number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "seasons_var_samp_fields": { "number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "seasons_variance_fields": { "number": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "server_regions": { "available_server_count": [ - 40 + 41 ], "description": [ - 80 + 84 ], "game_server_nodes": [ - 1806, + 2063, { "distinct_on": [ - 1835, + 2092, "[game_server_nodes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1832, + 2089, "[game_server_nodes_order_by!]" ], "where": [ - 1818 + 2075 ] } ], "game_server_nodes_aggregate": [ - 1807, + 2064, { "distinct_on": [ - 1835, + 2092, "[game_server_nodes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1832, + 2089, "[game_server_nodes_order_by!]" ], "where": [ - 1818 + 2075 ] } ], "has_node": [ - 5 + 6 ], "is_lan": [ - 5 + 6 ], "status": [ - 80 + 84 ], "steam_relay": [ - 5 + 6 ], "total_server_count": [ - 40 + 41 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "server_regions_aggregate": { "aggregate": [ - 4168 + 4447 ], "nodes": [ - 4166 + 4445 ], "__typename": [ - 80 + 84 ] }, "server_regions_aggregate_fields": { "avg": [ - 4169 + 4448 ], "count": [ - 40, + 41, { "columns": [ - 4180, + 4459, "[server_regions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4173 + 4452 ], "min": [ - 4174 + 4453 ], "stddev": [ - 4182 + 4461 ], "stddev_pop": [ - 4183 + 4462 ], "stddev_samp": [ - 4184 + 4463 ], "sum": [ - 4187 + 4466 ], "var_pop": [ - 4190 + 4469 ], "var_samp": [ - 4191 + 4470 ], "variance": [ - 4192 + 4471 ], "__typename": [ - 80 + 84 ] }, "server_regions_avg_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "server_regions_bool_exp": { "_and": [ - 4170 + 4449 ], "_not": [ - 4170 + 4449 ], "_or": [ - 4170 + 4449 ], "available_server_count": [ - 41 + 42 ], "description": [ - 82 + 86 ], "game_server_nodes": [ - 1818 + 2075 ], "game_server_nodes_aggregate": [ - 1808 + 2065 ], "has_node": [ - 6 + 7 ], "is_lan": [ - 6 + 7 ], "status": [ - 82 + 86 ], "steam_relay": [ - 6 + 7 ], "total_server_count": [ - 41 + 42 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "server_regions_constraint": {}, "server_regions_insert_input": { "description": [ - 80 + 84 ], "game_server_nodes": [ - 1815 + 2072 ], "is_lan": [ - 5 + 6 ], "steam_relay": [ - 5 + 6 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "server_regions_max_fields": { "available_server_count": [ - 40 + 41 ], "description": [ - 80 + 84 ], "status": [ - 80 + 84 ], "total_server_count": [ - 40 + 41 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "server_regions_min_fields": { "available_server_count": [ - 40 + 41 ], "description": [ - 80 + 84 ], "status": [ - 80 + 84 ], "total_server_count": [ - 40 + 41 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "server_regions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4166 + 4445 ], "__typename": [ - 80 + 84 ] }, "server_regions_obj_rel_insert_input": { "data": [ - 4172 + 4451 ], "on_conflict": [ - 4177 + 4456 ], "__typename": [ - 80 + 84 ] }, "server_regions_on_conflict": { "constraint": [ - 4171 + 4450 ], "update_columns": [ - 4188 + 4467 ], "where": [ - 4170 + 4449 ], "__typename": [ - 80 + 84 ] }, "server_regions_order_by": { "available_server_count": [ - 3094 + 3373 ], "description": [ - 3094 + 3373 ], "game_server_nodes_aggregate": [ - 1813 + 2070 ], "has_node": [ - 3094 + 3373 ], "is_lan": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "steam_relay": [ - 3094 + 3373 ], "total_server_count": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "server_regions_pk_columns_input": { "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "server_regions_select_column": {}, "server_regions_set_input": { "description": [ - 80 + 84 ], "is_lan": [ - 5 + 6 ], "steam_relay": [ - 5 + 6 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "server_regions_stddev_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "server_regions_stddev_pop_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "server_regions_stddev_samp_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "server_regions_stream_cursor_input": { "initial_value": [ - 4186 + 4465 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "server_regions_stream_cursor_value_input": { "description": [ - 80 + 84 ], "is_lan": [ - 5 + 6 ], "steam_relay": [ - 5 + 6 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "server_regions_sum_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 4181 + 4460 ], "where": [ - 4170 + 4449 ], "__typename": [ - 80 + 84 ] }, "server_regions_var_pop_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "server_regions_var_samp_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "server_regions_variance_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "servers": { "api_password": [ - 5170 + 5454 ], "boot_status": [ - 80 + 84 ], "boot_status_detail": [ - 80 + 84 ], "connect_password": [ - 80 + 84 ], "connected": [ - 5 + 6 ], "connection_link": [ - 80 + 84 ], "connection_string": [ - 80 + 84 ], "current_match": [ - 2882 + 3157 ], "enabled": [ - 5 + 6 ], "game": [ - 80 + 84 + ], + "game_mode": [ + 1921 + ], + "game_mode_id": [ + 5454 ], "game_server_node": [ - 1806 + 2063 ], "game_server_node_id": [ - 80 + 84 ], "host": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_dedicated": [ - 5 + 6 ], "label": [ - 80 + 84 + ], + "loaded_plugins": [ + 2187, + { + "path": [ + 84 + ] + } ], "matches": [ - 2882, + 3157, { "distinct_on": [ - 2904, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2902, + 3179, "[matches_order_by!]" ], "where": [ - 2891 + 3168 ] } ], "matches_aggregate": [ - 2883, + 3158, { "distinct_on": [ - 2904, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2902, + 3179, "[matches_order_by!]" ], "where": [ - 2891 + 3168 ] } ], "max_players": [ - 40 + 41 ], "offline_at": [ - 4670 + 4954 ], "plugin_runtime": [ - 1198 + 1263 ], "plugin_version": [ - 80 + 84 + ], + "plugins_checked_at": [ + 4954 ], "port": [ - 40 + 41 ], "rcon_password": [ - 267 + 272 ], "rcon_status": [ - 5 + 6 ], "region": [ - 80 + 84 ], "reserved_by_match_id": [ - 5170 + 5454 ], "server_region": [ - 4166 + 4445 ], "steam_relay": [ - 80 + 84 ], "tv_port": [ - 40 + 41 ], "type": [ - 1279 + 1344 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "servers_aggregate": { "aggregate": [ - 4199 + 4478 ], "nodes": [ - 4193 + 4472 ], "__typename": [ - 80 + 84 ] }, "servers_aggregate_bool_exp": { "bool_and": [ - 4196 + 4475 ], "bool_or": [ - 4197 + 4476 ], "count": [ - 4198 + 4477 ], "__typename": [ - 80 + 84 ] }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 4218 + 4502 ], "distinct": [ - 5 + 6 ], "filter": [ - 4204 + 4484 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 4219 + 4503 ], "distinct": [ - 5 + 6 ], "filter": [ - 4204 + 4484 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "servers_aggregate_bool_exp_count": { "arguments": [ - 4217 + 4501 ], "distinct": [ - 5 + 6 ], "filter": [ - 4204 + 4484 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "servers_aggregate_fields": { "avg": [ - 4202 + 4482 ], "count": [ - 40, + 41, { "columns": [ - 4217, + 4501, "[servers_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4208 + 4491 ], "min": [ - 4210 + 4493 ], "stddev": [ - 4221 + 4505 ], "stddev_pop": [ - 4223 + 4507 ], "stddev_samp": [ - 4225 + 4509 ], "sum": [ - 4229 + 4513 ], "var_pop": [ - 4233 + 4517 ], "var_samp": [ - 4235 + 4519 ], "variance": [ - 4237 + 4521 ], "__typename": [ - 80 + 84 ] }, "servers_aggregate_order_by": { "avg": [ - 4203 + 4483 ], "count": [ - 3094 + 3373 ], "max": [ - 4209 + 4492 ], "min": [ - 4211 + 4494 ], "stddev": [ - 4222 + 4506 ], "stddev_pop": [ - 4224 + 4508 ], "stddev_samp": [ - 4226 + 4510 ], "sum": [ - 4230 + 4514 ], "var_pop": [ - 4234 + 4518 ], "var_samp": [ - 4236 + 4520 ], "variance": [ - 4238 + 4522 ], "__typename": [ - 80 + 84 + ] + }, + "servers_append_input": { + "loaded_plugins": [ + 2187 + ], + "__typename": [ + 84 ] }, "servers_arr_rel_insert_input": { "data": [ - 4207 + 4490 ], "on_conflict": [ - 4214 + 4497 ], "__typename": [ - 80 + 84 ] }, "servers_avg_fields": { "max_players": [ - 31 + 32 ], "port": [ - 31 + 32 ], "tv_port": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "servers_avg_order_by": { "max_players": [ - 3094 + 3373 ], "port": [ - 3094 + 3373 ], "tv_port": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "servers_bool_exp": { "_and": [ - 4204 + 4484 ], "_not": [ - 4204 + 4484 ], "_or": [ - 4204 + 4484 ], "api_password": [ - 5172 + 5456 ], "boot_status": [ - 82 + 86 ], "boot_status_detail": [ - 82 + 86 ], "connect_password": [ - 82 + 86 ], "connected": [ - 6 + 7 ], "connection_link": [ - 82 + 86 ], "connection_string": [ - 82 + 86 ], "current_match": [ - 2891 + 3168 ], "enabled": [ - 6 + 7 ], "game": [ - 82 + 86 + ], + "game_mode": [ + 1924 + ], + "game_mode_id": [ + 5456 ], "game_server_node": [ - 1818 + 2075 ], "game_server_node_id": [ - 82 + 86 ], "host": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "is_dedicated": [ - 6 + 7 ], "label": [ - 82 + 86 + ], + "loaded_plugins": [ + 2189 ], "matches": [ - 2891 + 3168 ], "matches_aggregate": [ - 2884 + 3159 ], "max_players": [ - 41 + 42 ], "offline_at": [ - 4671 + 4955 ], "plugin_runtime": [ - 1199 + 1264 ], "plugin_version": [ - 82 + 86 + ], + "plugins_checked_at": [ + 4955 ], "port": [ - 41 + 42 ], "rcon_password": [ - 268 + 273 ], "rcon_status": [ - 6 + 7 ], "region": [ - 82 + 86 ], "reserved_by_match_id": [ - 5172 + 5456 ], "server_region": [ - 4170 + 4449 ], "steam_relay": [ - 82 + 86 ], "tv_port": [ - 41 + 42 ], "type": [ - 1280 + 1345 ], "updated_at": [ - 4671 + 4955 ], "__typename": [ - 80 + 84 ] }, "servers_constraint": {}, + "servers_delete_at_path_input": { + "loaded_plugins": [ + 84 + ], + "__typename": [ + 84 + ] + }, + "servers_delete_elem_input": { + "loaded_plugins": [ + 41 + ], + "__typename": [ + 84 + ] + }, + "servers_delete_key_input": { + "loaded_plugins": [ + 84 + ], + "__typename": [ + 84 + ] + }, "servers_inc_input": { "max_players": [ - 40 + 41 ], "port": [ - 40 + 41 ], "tv_port": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "servers_insert_input": { "api_password": [ - 5170 + 5454 ], "boot_status": [ - 80 + 84 ], "boot_status_detail": [ - 80 + 84 ], "connect_password": [ - 80 + 84 ], "connected": [ - 5 + 6 ], "current_match": [ - 2900 + 3177 ], "enabled": [ - 5 + 6 ], "game": [ - 80 + 84 + ], + "game_mode": [ + 1930 + ], + "game_mode_id": [ + 5454 ], "game_server_node": [ - 1830 + 2087 ], "game_server_node_id": [ - 80 + 84 ], "host": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_dedicated": [ - 5 + 6 ], "label": [ - 80 + 84 + ], + "loaded_plugins": [ + 2187 ], "matches": [ - 2888 + 3165 ], "max_players": [ - 40 + 41 ], "offline_at": [ - 4670 + 4954 ], "plugin_runtime": [ - 1198 + 1263 ], "plugin_version": [ - 80 + 84 + ], + "plugins_checked_at": [ + 4954 ], "port": [ - 40 + 41 ], "rcon_password": [ - 267 + 272 ], "rcon_status": [ - 5 + 6 ], "region": [ - 80 + 84 ], "reserved_by_match_id": [ - 5170 + 5454 ], "server_region": [ - 4176 + 4455 ], "steam_relay": [ - 80 + 84 ], "tv_port": [ - 40 + 41 ], "type": [ - 1279 + 1344 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "servers_max_fields": { "api_password": [ - 5170 + 5454 ], "boot_status": [ - 80 + 84 ], "boot_status_detail": [ - 80 + 84 ], "connect_password": [ - 80 + 84 ], "connection_link": [ - 80 + 84 ], "connection_string": [ - 80 + 84 ], "game": [ - 80 + 84 + ], + "game_mode_id": [ + 5454 ], "game_server_node_id": [ - 80 + 84 ], "host": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "max_players": [ - 40 + 41 ], "offline_at": [ - 4670 + 4954 ], "plugin_version": [ - 80 + 84 + ], + "plugins_checked_at": [ + 4954 ], "port": [ - 40 + 41 ], "region": [ - 80 + 84 ], "reserved_by_match_id": [ - 5170 + 5454 ], "steam_relay": [ - 80 + 84 ], "tv_port": [ - 40 + 41 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "servers_max_order_by": { "api_password": [ - 3094 + 3373 ], "boot_status": [ - 3094 + 3373 ], "boot_status_detail": [ - 3094 + 3373 ], "connect_password": [ - 3094 + 3373 ], "game": [ - 3094 + 3373 + ], + "game_mode_id": [ + 3373 ], "game_server_node_id": [ - 3094 + 3373 ], "host": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "max_players": [ - 3094 + 3373 ], "offline_at": [ - 3094 + 3373 ], "plugin_version": [ - 3094 + 3373 + ], + "plugins_checked_at": [ + 3373 ], "port": [ - 3094 + 3373 ], "region": [ - 3094 + 3373 ], "reserved_by_match_id": [ - 3094 + 3373 ], "steam_relay": [ - 3094 + 3373 ], "tv_port": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "servers_min_fields": { "api_password": [ - 5170 + 5454 ], "boot_status": [ - 80 + 84 ], "boot_status_detail": [ - 80 + 84 ], "connect_password": [ - 80 + 84 ], "connection_link": [ - 80 + 84 ], "connection_string": [ - 80 + 84 ], "game": [ - 80 + 84 + ], + "game_mode_id": [ + 5454 ], "game_server_node_id": [ - 80 + 84 ], "host": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "max_players": [ - 40 + 41 ], "offline_at": [ - 4670 + 4954 ], "plugin_version": [ - 80 + 84 + ], + "plugins_checked_at": [ + 4954 ], "port": [ - 40 + 41 ], "region": [ - 80 + 84 ], "reserved_by_match_id": [ - 5170 + 5454 ], "steam_relay": [ - 80 + 84 ], "tv_port": [ - 40 + 41 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "servers_min_order_by": { "api_password": [ - 3094 + 3373 ], "boot_status": [ - 3094 + 3373 ], "boot_status_detail": [ - 3094 + 3373 ], "connect_password": [ - 3094 + 3373 ], "game": [ - 3094 + 3373 + ], + "game_mode_id": [ + 3373 ], "game_server_node_id": [ - 3094 + 3373 ], "host": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "max_players": [ - 3094 + 3373 ], "offline_at": [ - 3094 + 3373 ], "plugin_version": [ - 3094 + 3373 + ], + "plugins_checked_at": [ + 3373 ], "port": [ - 3094 + 3373 ], "region": [ - 3094 + 3373 ], "reserved_by_match_id": [ - 3094 + 3373 ], "steam_relay": [ - 3094 + 3373 ], "tv_port": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "servers_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4193 + 4472 ], "__typename": [ - 80 + 84 ] }, "servers_obj_rel_insert_input": { "data": [ - 4207 + 4490 ], "on_conflict": [ - 4214 + 4497 ], "__typename": [ - 80 + 84 ] }, "servers_on_conflict": { "constraint": [ - 4205 + 4485 ], "update_columns": [ - 4231 + 4515 ], "where": [ - 4204 + 4484 ], "__typename": [ - 80 + 84 ] }, "servers_order_by": { "api_password": [ - 3094 + 3373 ], "boot_status": [ - 3094 + 3373 ], "boot_status_detail": [ - 3094 + 3373 ], "connect_password": [ - 3094 + 3373 ], "connected": [ - 3094 + 3373 ], "connection_link": [ - 3094 + 3373 ], "connection_string": [ - 3094 + 3373 ], "current_match": [ - 2902 + 3179 ], "enabled": [ - 3094 + 3373 ], "game": [ - 3094 + 3373 + ], + "game_mode": [ + 1932 + ], + "game_mode_id": [ + 3373 ], "game_server_node": [ - 1832 + 2089 ], "game_server_node_id": [ - 3094 + 3373 ], "host": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "is_dedicated": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 + ], + "loaded_plugins": [ + 3373 ], "matches_aggregate": [ - 2887 + 3164 ], "max_players": [ - 3094 + 3373 ], "offline_at": [ - 3094 + 3373 ], "plugin_runtime": [ - 3094 + 3373 ], "plugin_version": [ - 3094 + 3373 + ], + "plugins_checked_at": [ + 3373 ], "port": [ - 3094 + 3373 ], "rcon_password": [ - 3094 + 3373 ], "rcon_status": [ - 3094 + 3373 ], "region": [ - 3094 + 3373 ], "reserved_by_match_id": [ - 3094 + 3373 ], "server_region": [ - 4178 + 4457 ], "steam_relay": [ - 3094 + 3373 ], "tv_port": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "servers_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 + ] + }, + "servers_prepend_input": { + "loaded_plugins": [ + 2187 + ], + "__typename": [ + 84 ] }, "servers_select_column": {}, @@ -97798,3125 +103201,3158 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 5170 + 5454 ], "boot_status": [ - 80 + 84 ], "boot_status_detail": [ - 80 + 84 ], "connect_password": [ - 80 + 84 ], "connected": [ - 5 + 6 ], "enabled": [ - 5 + 6 ], "game": [ - 80 + 84 + ], + "game_mode_id": [ + 5454 ], "game_server_node_id": [ - 80 + 84 ], "host": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_dedicated": [ - 5 + 6 ], "label": [ - 80 + 84 + ], + "loaded_plugins": [ + 2187 ], "max_players": [ - 40 + 41 ], "offline_at": [ - 4670 + 4954 ], "plugin_runtime": [ - 1198 + 1263 ], "plugin_version": [ - 80 + 84 + ], + "plugins_checked_at": [ + 4954 ], "port": [ - 40 + 41 ], "rcon_password": [ - 267 + 272 ], "rcon_status": [ - 5 + 6 ], "region": [ - 80 + 84 ], "reserved_by_match_id": [ - 5170 + 5454 ], "steam_relay": [ - 80 + 84 ], "tv_port": [ - 40 + 41 ], "type": [ - 1279 + 1344 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "servers_stddev_fields": { "max_players": [ - 31 + 32 ], "port": [ - 31 + 32 ], "tv_port": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "servers_stddev_order_by": { "max_players": [ - 3094 + 3373 ], "port": [ - 3094 + 3373 ], "tv_port": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "servers_stddev_pop_fields": { "max_players": [ - 31 + 32 ], "port": [ - 31 + 32 ], "tv_port": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "servers_stddev_pop_order_by": { "max_players": [ - 3094 + 3373 ], "port": [ - 3094 + 3373 ], "tv_port": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "servers_stddev_samp_fields": { "max_players": [ - 31 + 32 ], "port": [ - 31 + 32 ], "tv_port": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "servers_stddev_samp_order_by": { "max_players": [ - 3094 + 3373 ], "port": [ - 3094 + 3373 ], "tv_port": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "servers_stream_cursor_input": { "initial_value": [ - 4228 + 4512 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "servers_stream_cursor_value_input": { "api_password": [ - 5170 + 5454 ], "boot_status": [ - 80 + 84 ], "boot_status_detail": [ - 80 + 84 ], "connect_password": [ - 80 + 84 ], "connected": [ - 5 + 6 ], "enabled": [ - 5 + 6 ], "game": [ - 80 + 84 + ], + "game_mode_id": [ + 5454 ], "game_server_node_id": [ - 80 + 84 ], "host": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_dedicated": [ - 5 + 6 ], "label": [ - 80 + 84 + ], + "loaded_plugins": [ + 2187 ], "max_players": [ - 40 + 41 ], "offline_at": [ - 4670 + 4954 ], "plugin_runtime": [ - 1198 + 1263 ], "plugin_version": [ - 80 + 84 + ], + "plugins_checked_at": [ + 4954 ], "port": [ - 40 + 41 ], "rcon_password": [ - 267 + 272 ], "rcon_status": [ - 5 + 6 ], "region": [ - 80 + 84 ], "reserved_by_match_id": [ - 5170 + 5454 ], "steam_relay": [ - 80 + 84 ], "tv_port": [ - 40 + 41 ], "type": [ - 1279 + 1344 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "servers_sum_fields": { "max_players": [ - 40 + 41 ], "port": [ - 40 + 41 ], "tv_port": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "servers_sum_order_by": { "max_players": [ - 3094 + 3373 ], "port": [ - 3094 + 3373 ], "tv_port": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "servers_update_column": {}, "servers_updates": { + "_append": [ + 4480 + ], + "_delete_at_path": [ + 4486 + ], + "_delete_elem": [ + 4487 + ], + "_delete_key": [ + 4488 + ], "_inc": [ - 4206 + 4489 + ], + "_prepend": [ + 4500 ], "_set": [ - 4220 + 4504 ], "where": [ - 4204 + 4484 ], "__typename": [ - 80 + 84 ] }, "servers_var_pop_fields": { "max_players": [ - 31 + 32 ], "port": [ - 31 + 32 ], "tv_port": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "servers_var_pop_order_by": { "max_players": [ - 3094 + 3373 ], "port": [ - 3094 + 3373 ], "tv_port": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "servers_var_samp_fields": { "max_players": [ - 31 + 32 ], "port": [ - 31 + 32 ], "tv_port": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "servers_var_samp_order_by": { "max_players": [ - 3094 + 3373 ], "port": [ - 3094 + 3373 ], "tv_port": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "servers_variance_fields": { "max_players": [ - 31 + 32 ], "port": [ - 31 + 32 ], "tv_port": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "servers_variance_order_by": { "max_players": [ - 3094 + 3373 ], "port": [ - 3094 + 3373 ], "tv_port": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "settings": { "name": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "settings_aggregate": { "aggregate": [ - 4241 + 4525 ], "nodes": [ - 4239 + 4523 ], "__typename": [ - 80 + 84 ] }, "settings_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 4251, + 4535, "[settings_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4245 + 4529 ], "min": [ - 4246 + 4530 ], "__typename": [ - 80 + 84 ] }, "settings_bool_exp": { "_and": [ - 4242 + 4526 ], "_not": [ - 4242 + 4526 ], "_or": [ - 4242 + 4526 ], "name": [ - 82 + 86 ], "value": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "settings_constraint": {}, "settings_insert_input": { "name": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "settings_max_fields": { "name": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "settings_min_fields": { "name": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "settings_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4239 + 4523 ], "__typename": [ - 80 + 84 ] }, "settings_on_conflict": { "constraint": [ - 4243 + 4527 ], "update_columns": [ - 4255 + 4539 ], "where": [ - 4242 + 4526 ], "__typename": [ - 80 + 84 ] }, "settings_order_by": { "name": [ - 3094 + 3373 ], "value": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "settings_pk_columns_input": { "name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "settings_select_column": {}, "settings_set_input": { "name": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "settings_stream_cursor_input": { "initial_value": [ - 4254 + 4538 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "settings_stream_cursor_value_input": { "name": [ - 80 + 84 ], "value": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "settings_update_column": {}, "settings_updates": { "_set": [ - 4252 + 4536 ], "where": [ - 4242 + 4526 ], "__typename": [ - 80 + 84 ] }, "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 4257 + 4541 ], "_gt": [ - 4257 + 4541 ], "_gte": [ - 4257 + 4541 ], "_in": [ - 4257 + 4541 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 4257 + 4541 ], "_lte": [ - 4257 + 4541 ], "_neq": [ - 4257 + 4541 ], "_nin": [ - 4257 + 4541 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "node": [ - 1806 + 2063 ], "node_id": [ - 80 + 84 ], "purpose": [ - 80 + 84 ], "steam_account": [ - 4283 + 4567 ], "steam_account_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_aggregate": { "aggregate": [ - 4263 + 4547 ], "nodes": [ - 4259 + 4543 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 4262 + 4546 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 4277 + 4561 ], "distinct": [ - 5 + 6 ], "filter": [ - 4266 + 4550 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 4277, + 4561, "[steam_account_claims_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4269 + 4553 ], "min": [ - 4271 + 4555 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_aggregate_order_by": { "count": [ - 3094 + 3373 ], "max": [ - 4270 + 4554 ], "min": [ - 4272 + 4556 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 4268 + 4552 ], "on_conflict": [ - 4274 + 4558 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_bool_exp": { "_and": [ - 4266 + 4550 ], "_not": [ - 4266 + 4550 ], "_or": [ - 4266 + 4550 ], "created_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "k8s_job_name": [ - 82 + 86 ], "node": [ - 1818 + 2075 ], "node_id": [ - 82 + 86 ], "purpose": [ - 82 + 86 ], "steam_account": [ - 4287 + 4571 ], "steam_account_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "node": [ - 1830 + 2087 ], "node_id": [ - 80 + 84 ], "purpose": [ - 80 + 84 ], "steam_account": [ - 4294 + 4578 ], "steam_account_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_max_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "node_id": [ - 80 + 84 ], "purpose": [ - 80 + 84 ], "steam_account_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_max_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "k8s_job_name": [ - 3094 + 3373 ], "node_id": [ - 3094 + 3373 ], "purpose": [ - 3094 + 3373 ], "steam_account_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_min_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "node_id": [ - 80 + 84 ], "purpose": [ - 80 + 84 ], "steam_account_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_min_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "k8s_job_name": [ - 3094 + 3373 ], "node_id": [ - 3094 + 3373 ], "purpose": [ - 3094 + 3373 ], "steam_account_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4259 + 4543 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_on_conflict": { "constraint": [ - 4267 + 4551 ], "update_columns": [ - 4281 + 4565 ], "where": [ - 4266 + 4550 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "k8s_job_name": [ - 3094 + 3373 ], "node": [ - 1832 + 2089 ], "node_id": [ - 3094 + 3373 ], "purpose": [ - 3094 + 3373 ], "steam_account": [ - 4296 + 4580 ], "steam_account_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "node_id": [ - 80 + 84 ], "purpose": [ - 80 + 84 ], "steam_account_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 4280 + 4564 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "k8s_job_name": [ - 80 + 84 ], "node_id": [ - 80 + 84 ], "purpose": [ - 80 + 84 ], "steam_account_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 4278 + 4562 ], "where": [ - 4266 + 4550 ], "__typename": [ - 80 + 84 ] }, "steam_accounts": { "claims": [ - 4259, + 4543, { "distinct_on": [ - 4277, + 4561, "[steam_account_claims_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4275, + 4559, "[steam_account_claims_order_by!]" ], "where": [ - 4266 + 4550 ] } ], "claims_aggregate": [ - 4260, + 4544, { "distinct_on": [ - 4277, + 4561, "[steam_account_claims_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4275, + 4559, "[steam_account_claims_order_by!]" ], "where": [ - 4266 + 4550 ] } ], "created_at": [ - 4670 + 4954 ], "friend_capacity": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "last_node": [ - 1806 + 2063 ], "last_node_id": [ - 80 + 84 ], "password": [ - 80 + 84 ], "role": [ - 80 + 84 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "username": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_aggregate": { "aggregate": [ - 4285 + 4569 ], "nodes": [ - 4283 + 4567 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_aggregate_fields": { "avg": [ - 4286 + 4570 ], "count": [ - 40, + 41, { "columns": [ - 4298, + 4582, "[steam_accounts_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4291 + 4575 ], "min": [ - 4292 + 4576 ], "stddev": [ - 4300 + 4584 ], "stddev_pop": [ - 4301 + 4585 ], "stddev_samp": [ - 4302 + 4586 ], "sum": [ - 4305 + 4589 ], "var_pop": [ - 4308 + 4592 ], "var_samp": [ - 4309 + 4593 ], "variance": [ - 4310 + 4594 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_avg_fields": { "friend_capacity": [ - 31 + 32 ], "steam_level": [ - 31 + 32 ], "steamid64": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_bool_exp": { "_and": [ - 4287 + 4571 ], "_not": [ - 4287 + 4571 ], "_or": [ - 4287 + 4571 ], "claims": [ - 4266 + 4550 ], "claims_aggregate": [ - 4261 + 4545 ], "created_at": [ - 4671 + 4955 ], "friend_capacity": [ - 41 + 42 ], "id": [ - 5172 + 5456 ], "last_node": [ - 1818 + 2075 ], "last_node_id": [ - 82 + 86 ], "password": [ - 82 + 86 ], "role": [ - 82 + 86 ], "steam_level": [ - 41 + 42 ], "steamid64": [ - 266 + 271 ], "updated_at": [ - 4671 + 4955 ], "username": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_constraint": {}, "steam_accounts_inc_input": { "friend_capacity": [ - 40 + 41 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_insert_input": { "claims": [ - 4265 + 4549 ], "created_at": [ - 4670 + 4954 ], "friend_capacity": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "last_node": [ - 1830 + 2087 ], "last_node_id": [ - 80 + 84 ], "password": [ - 80 + 84 ], "role": [ - 80 + 84 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "username": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_max_fields": { "created_at": [ - 4670 + 4954 ], "friend_capacity": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "last_node_id": [ - 80 + 84 ], "password": [ - 80 + 84 ], "role": [ - 80 + 84 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "username": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_min_fields": { "created_at": [ - 4670 + 4954 ], "friend_capacity": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "last_node_id": [ - 80 + 84 ], "password": [ - 80 + 84 ], "role": [ - 80 + 84 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "username": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4283 + 4567 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_obj_rel_insert_input": { "data": [ - 4290 + 4574 ], "on_conflict": [ - 4295 + 4579 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_on_conflict": { "constraint": [ - 4288 + 4572 ], "update_columns": [ - 4306 + 4590 ], "where": [ - 4287 + 4571 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_order_by": { "claims_aggregate": [ - 4264 + 4548 ], "created_at": [ - 3094 + 3373 ], "friend_capacity": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "last_node": [ - 1832 + 2089 ], "last_node_id": [ - 3094 + 3373 ], "password": [ - 3094 + 3373 ], "role": [ - 3094 + 3373 ], "steam_level": [ - 3094 + 3373 ], "steamid64": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "username": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4670 + 4954 ], "friend_capacity": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "last_node_id": [ - 80 + 84 ], "password": [ - 80 + 84 ], "role": [ - 80 + 84 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "username": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_stddev_fields": { "friend_capacity": [ - 31 + 32 ], "steam_level": [ - 31 + 32 ], "steamid64": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_stddev_pop_fields": { "friend_capacity": [ - 31 + 32 ], "steam_level": [ - 31 + 32 ], "steamid64": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_stddev_samp_fields": { "friend_capacity": [ - 31 + 32 ], "steam_level": [ - 31 + 32 ], "steamid64": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 4304 + 4588 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "friend_capacity": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "last_node_id": [ - 80 + 84 ], "password": [ - 80 + 84 ], "role": [ - 80 + 84 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 264 + 269 ], "updated_at": [ - 4670 + 4954 ], "username": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_sum_fields": { "friend_capacity": [ - 40 + 41 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 4289 + 4573 ], "_set": [ - 4299 + 4583 ], "where": [ - 4287 + 4571 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_var_pop_fields": { "friend_capacity": [ - 31 + 32 ], "steam_level": [ - 31 + 32 ], "steamid64": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_var_samp_fields": { "friend_capacity": [ - 31 + 32 ], "steam_level": [ - 31 + 32 ], "steamid64": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "steam_accounts_variance_fields": { "friend_capacity": [ - 31 + 32 ], "steam_level": [ - 31 + 32 ], "steamid64": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "system_alerts": { "created_at": [ - 4670 + 4954 ], "created_by": [ - 264 + 269 ], "dismissible": [ - 5 + 6 ], "expires_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "is_active": [ - 5 + 6 ], "message": [ - 80 + 84 ], "title": [ - 80 + 84 ], "type": [ - 1319 + 1384 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "system_alerts_aggregate": { "aggregate": [ - 4313 + 4597 ], "nodes": [ - 4311 + 4595 ], "__typename": [ - 80 + 84 ] }, "system_alerts_aggregate_fields": { "avg": [ - 4314 + 4598 ], "count": [ - 40, + 41, { "columns": [ - 4325, + 4609, "[system_alerts_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4319 + 4603 ], "min": [ - 4320 + 4604 ], "stddev": [ - 4327 + 4611 ], "stddev_pop": [ - 4328 + 4612 ], "stddev_samp": [ - 4329 + 4613 ], "sum": [ - 4332 + 4616 ], "var_pop": [ - 4335 + 4619 ], "var_samp": [ - 4336 + 4620 ], "variance": [ - 4337 + 4621 ], "__typename": [ - 80 + 84 ] }, "system_alerts_avg_fields": { "created_by": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "system_alerts_bool_exp": { "_and": [ - 4315 + 4599 ], "_not": [ - 4315 + 4599 ], "_or": [ - 4315 + 4599 ], "created_at": [ - 4671 + 4955 ], "created_by": [ - 266 + 271 ], "dismissible": [ - 6 + 7 ], "expires_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "is_active": [ - 6 + 7 ], "message": [ - 82 + 86 ], "title": [ - 82 + 86 ], "type": [ - 1320 + 1385 ], "updated_at": [ - 4671 + 4955 ], "__typename": [ - 80 + 84 ] }, "system_alerts_constraint": {}, "system_alerts_inc_input": { "created_by": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "system_alerts_insert_input": { "created_at": [ - 4670 + 4954 ], "created_by": [ - 264 + 269 ], "dismissible": [ - 5 + 6 ], "expires_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "is_active": [ - 5 + 6 ], "message": [ - 80 + 84 ], "title": [ - 80 + 84 ], "type": [ - 1319 + 1384 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "system_alerts_max_fields": { "created_at": [ - 4670 + 4954 ], "created_by": [ - 264 + 269 ], "expires_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "system_alerts_min_fields": { "created_at": [ - 4670 + 4954 ], "created_by": [ - 264 + 269 ], "expires_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "message": [ - 80 + 84 ], "title": [ - 80 + 84 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "system_alerts_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4311 + 4595 ], "__typename": [ - 80 + 84 ] }, "system_alerts_on_conflict": { "constraint": [ - 4316 + 4600 ], "update_columns": [ - 4333 + 4617 ], "where": [ - 4315 + 4599 ], "__typename": [ - 80 + 84 ] }, "system_alerts_order_by": { "created_at": [ - 3094 + 3373 ], "created_by": [ - 3094 + 3373 ], "dismissible": [ - 3094 + 3373 ], "expires_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "is_active": [ - 3094 + 3373 ], "message": [ - 3094 + 3373 ], "title": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "system_alerts_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4670 + 4954 ], "created_by": [ - 264 + 269 ], "dismissible": [ - 5 + 6 ], "expires_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "is_active": [ - 5 + 6 ], "message": [ - 80 + 84 ], "title": [ - 80 + 84 ], "type": [ - 1319 + 1384 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "system_alerts_stddev_fields": { "created_by": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "system_alerts_stddev_pop_fields": { "created_by": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "system_alerts_stddev_samp_fields": { "created_by": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "system_alerts_stream_cursor_input": { "initial_value": [ - 4331 + 4615 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "created_by": [ - 264 + 269 ], "dismissible": [ - 5 + 6 ], "expires_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "is_active": [ - 5 + 6 ], "message": [ - 80 + 84 ], "title": [ - 80 + 84 ], "type": [ - 1319 + 1384 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "system_alerts_sum_fields": { "created_by": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 4317 + 4601 ], "_set": [ - 4326 + 4610 ], "where": [ - 4315 + 4599 ], "__typename": [ - 80 + 84 ] }, "system_alerts_var_pop_fields": { "created_by": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "system_alerts_var_samp_fields": { "created_by": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "system_alerts_variance_fields": { "created_by": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_invites": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "invited_by": [ - 4052 + 4331 ], "invited_by_player_steam_id": [ - 264 + 269 ], "player": [ - 4052 + 4331 ], "steam_id": [ - 264 + 269 ], "team": [ - 4621 + 4905 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_invites_aggregate": { "aggregate": [ - 4342 + 4626 ], "nodes": [ - 4338 + 4622 ], "__typename": [ - 80 + 84 ] }, "team_invites_aggregate_bool_exp": { "count": [ - 4341 + 4625 ], "__typename": [ - 80 + 84 ] }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 4359 + 4643 ], "distinct": [ - 5 + 6 ], "filter": [ - 4347 + 4631 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "team_invites_aggregate_fields": { "avg": [ - 4345 + 4629 ], "count": [ - 40, + 41, { "columns": [ - 4359, + 4643, "[team_invites_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4351 + 4635 ], "min": [ - 4353 + 4637 ], "stddev": [ - 4361 + 4645 ], "stddev_pop": [ - 4363 + 4647 ], "stddev_samp": [ - 4365 + 4649 ], "sum": [ - 4369 + 4653 ], "var_pop": [ - 4373 + 4657 ], "var_samp": [ - 4375 + 4659 ], "variance": [ - 4377 + 4661 ], "__typename": [ - 80 + 84 ] }, "team_invites_aggregate_order_by": { "avg": [ - 4346 + 4630 ], "count": [ - 3094 + 3373 ], "max": [ - 4352 + 4636 ], "min": [ - 4354 + 4638 ], "stddev": [ - 4362 + 4646 ], "stddev_pop": [ - 4364 + 4648 ], "stddev_samp": [ - 4366 + 4650 ], "sum": [ - 4370 + 4654 ], "var_pop": [ - 4374 + 4658 ], "var_samp": [ - 4376 + 4660 ], "variance": [ - 4378 + 4662 ], "__typename": [ - 80 + 84 ] }, "team_invites_arr_rel_insert_input": { "data": [ - 4350 + 4634 ], "on_conflict": [ - 4356 + 4640 ], "__typename": [ - 80 + 84 ] }, "team_invites_avg_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_invites_bool_exp": { "_and": [ - 4347 + 4631 ], "_not": [ - 4347 + 4631 ], "_or": [ - 4347 + 4631 ], "created_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "invited_by": [ - 4056 + 4335 ], "invited_by_player_steam_id": [ - 266 + 271 ], "player": [ - 4056 + 4335 ], "steam_id": [ - 266 + 271 ], "team": [ - 4632 + 4916 ], "team_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "team_invites_constraint": {}, "team_invites_inc_input": { "invited_by_player_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "team_invites_insert_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "invited_by": [ - 4063 + 4342 ], "invited_by_player_steam_id": [ - 264 + 269 ], "player": [ - 4063 + 4342 ], "steam_id": [ - 264 + 269 ], "team": [ - 4641 + 4925 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_invites_max_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "invited_by_player_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_invites_max_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_invites_min_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "invited_by_player_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_invites_min_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_invites_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4338 + 4622 ], "__typename": [ - 80 + 84 ] }, "team_invites_on_conflict": { "constraint": [ - 4348 + 4632 ], "update_columns": [ - 4371 + 4655 ], "where": [ - 4347 + 4631 ], "__typename": [ - 80 + 84 ] }, "team_invites_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "invited_by": [ - 4065 + 4344 ], "invited_by_player_steam_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "steam_id": [ - 3094 + 3373 ], "team": [ - 4643 + 4927 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_invites_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "invited_by_player_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_invites_stddev_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_invites_stddev_pop_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_invites_stddev_samp_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_invites_stream_cursor_input": { "initial_value": [ - 4368 + 4652 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "invited_by_player_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_invites_sum_fields": { "invited_by_player_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 4349 + 4633 ], "_set": [ - 4360 + 4644 ], "where": [ - 4347 + 4631 ], "__typename": [ - 80 + 84 ] }, "team_invites_var_pop_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_invites_var_samp_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_invites_variance_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_roster": { "coach": [ - 5 + 6 ], "player": [ - 4052 + 4331 ], "player_steam_id": [ - 264 + 269 ], "role": [ - 1339 + 1404 ], "roster_image_url": [ - 80 + 84 ], "status": [ - 1360 + 1425 ], "team": [ - 4621 + 4905 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_roster_aggregate": { "aggregate": [ - 4385 + 4669 ], "nodes": [ - 4379 + 4663 ], "__typename": [ - 80 + 84 ] }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 4382 + 4666 ], "bool_or": [ - 4383 + 4667 ], "count": [ - 4384 + 4668 ], "__typename": [ - 80 + 84 ] }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 4403 + 4687 ], "distinct": [ - 5 + 6 ], "filter": [ - 4390 + 4674 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 4404 + 4688 ], "distinct": [ - 5 + 6 ], "filter": [ - 4390 + 4674 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 4402 + 4686 ], "distinct": [ - 5 + 6 ], "filter": [ - 4390 + 4674 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "team_roster_aggregate_fields": { "avg": [ - 4388 + 4672 ], "count": [ - 40, + 41, { "columns": [ - 4402, + 4686, "[team_roster_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4394 + 4678 ], "min": [ - 4396 + 4680 ], "stddev": [ - 4406 + 4690 ], "stddev_pop": [ - 4408 + 4692 ], "stddev_samp": [ - 4410 + 4694 ], "sum": [ - 4414 + 4698 ], "var_pop": [ - 4418 + 4702 ], "var_samp": [ - 4420 + 4704 ], "variance": [ - 4422 + 4706 ], "__typename": [ - 80 + 84 ] }, "team_roster_aggregate_order_by": { "avg": [ - 4389 + 4673 ], "count": [ - 3094 + 3373 ], "max": [ - 4395 + 4679 ], "min": [ - 4397 + 4681 ], "stddev": [ - 4407 + 4691 ], "stddev_pop": [ - 4409 + 4693 ], "stddev_samp": [ - 4411 + 4695 ], "sum": [ - 4415 + 4699 ], "var_pop": [ - 4419 + 4703 ], "var_samp": [ - 4421 + 4705 ], "variance": [ - 4423 + 4707 ], "__typename": [ - 80 + 84 ] }, "team_roster_arr_rel_insert_input": { "data": [ - 4393 + 4677 ], "on_conflict": [ - 4399 + 4683 ], "__typename": [ - 80 + 84 ] }, "team_roster_avg_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_roster_avg_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_roster_bool_exp": { "_and": [ - 4390 + 4674 ], "_not": [ - 4390 + 4674 ], "_or": [ - 4390 + 4674 ], "coach": [ - 6 + 7 ], "player": [ - 4056 + 4335 ], "player_steam_id": [ - 266 + 271 ], "role": [ - 1340 + 1405 ], "roster_image_url": [ - 82 + 86 ], "status": [ - 1361 + 1426 ], "team": [ - 4632 + 4916 ], "team_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "team_roster_constraint": {}, "team_roster_inc_input": { "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "team_roster_insert_input": { "coach": [ - 5 + 6 ], "player": [ - 4063 + 4342 ], "player_steam_id": [ - 264 + 269 ], "role": [ - 1339 + 1404 ], "roster_image_url": [ - 80 + 84 ], "status": [ - 1360 + 1425 ], "team": [ - 4641 + 4925 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_roster_max_fields": { "player_steam_id": [ - 264 + 269 ], "roster_image_url": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_roster_max_order_by": { "player_steam_id": [ - 3094 + 3373 ], "roster_image_url": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_roster_min_fields": { "player_steam_id": [ - 264 + 269 ], "roster_image_url": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_roster_min_order_by": { "player_steam_id": [ - 3094 + 3373 ], "roster_image_url": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_roster_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4379 + 4663 ], "__typename": [ - 80 + 84 ] }, "team_roster_on_conflict": { "constraint": [ - 4391 + 4675 ], "update_columns": [ - 4416 + 4700 ], "where": [ - 4390 + 4674 ], "__typename": [ - 80 + 84 ] }, "team_roster_order_by": { "coach": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "player_steam_id": [ - 3094 + 3373 ], "role": [ - 3094 + 3373 ], "roster_image_url": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "team": [ - 4643 + 4927 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_roster_pk_columns_input": { "player_steam_id": [ - 264 + 269 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_roster_select_column": {}, @@ -100924,1002 +106360,1002 @@ export default { "team_roster_select_column_team_roster_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_roster_set_input": { "coach": [ - 5 + 6 ], "player_steam_id": [ - 264 + 269 ], "role": [ - 1339 + 1404 ], "roster_image_url": [ - 80 + 84 ], "status": [ - 1360 + 1425 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_roster_stddev_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_roster_stddev_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_roster_stddev_pop_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_roster_stddev_samp_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_roster_stream_cursor_input": { "initial_value": [ - 4413 + 4697 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "team_roster_stream_cursor_value_input": { "coach": [ - 5 + 6 ], "player_steam_id": [ - 264 + 269 ], "role": [ - 1339 + 1404 ], "roster_image_url": [ - 80 + 84 ], "status": [ - 1360 + 1425 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_roster_sum_fields": { "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "team_roster_sum_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 4392 + 4676 ], "_set": [ - 4405 + 4689 ], "where": [ - 4390 + 4674 ], "__typename": [ - 80 + 84 ] }, "team_roster_var_pop_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_roster_var_samp_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_roster_variance_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_roster_variance_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts": { "created_at": [ - 4670 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "last_notified_at": [ - 4670 + 4954 ], "regions": [ - 80 + 84 ], "team": [ - 4621 + 4905 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_aggregate": { "aggregate": [ - 4426 + 4710 ], "nodes": [ - 4424 + 4708 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 4427 + 4711 ], "count": [ - 40, + 41, { "columns": [ - 4438, + 4722, "[team_scrim_alerts_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4432 + 4716 ], "min": [ - 4433 + 4717 ], "stddev": [ - 4440 + 4724 ], "stddev_pop": [ - 4441 + 4725 ], "stddev_samp": [ - 4442 + 4726 ], "sum": [ - 4445 + 4729 ], "var_pop": [ - 4448 + 4732 ], "var_samp": [ - 4449 + 4733 ], "variance": [ - 4450 + 4734 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_avg_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_bool_exp": { "_and": [ - 4428 + 4712 ], "_not": [ - 4428 + 4712 ], "_or": [ - 4428 + 4712 ], "created_at": [ - 4671 + 4955 ], "elo_max": [ - 41 + 42 ], "elo_min": [ - 41 + 42 ], "enabled": [ - 6 + 7 ], "id": [ - 5172 + 5456 ], "last_notified_at": [ - 4671 + 4955 ], "regions": [ - 81 + 85 ], "team": [ - 4632 + 4916 ], "team_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_constraint": {}, "team_scrim_alerts_inc_input": { "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_insert_input": { "created_at": [ - 4670 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "last_notified_at": [ - 4670 + 4954 ], "regions": [ - 80 + 84 ], "team": [ - 4641 + 4925 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_max_fields": { "created_at": [ - 4670 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "last_notified_at": [ - 4670 + 4954 ], "regions": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_min_fields": { "created_at": [ - 4670 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "last_notified_at": [ - 4670 + 4954 ], "regions": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4424 + 4708 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_on_conflict": { "constraint": [ - 4429 + 4713 ], "update_columns": [ - 4446 + 4730 ], "where": [ - 4428 + 4712 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_order_by": { "created_at": [ - 3094 + 3373 ], "elo_max": [ - 3094 + 3373 ], "elo_min": [ - 3094 + 3373 ], "enabled": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "last_notified_at": [ - 3094 + 3373 ], "regions": [ - 3094 + 3373 ], "team": [ - 4643 + 4927 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4670 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "last_notified_at": [ - 4670 + 4954 ], "regions": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_stddev_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_stddev_pop_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_stddev_samp_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 4444 + 4728 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "last_notified_at": [ - 4670 + 4954 ], "regions": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_sum_fields": { "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 4430 + 4714 ], "_set": [ - 4439 + 4723 ], "where": [ - 4428 + 4712 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_var_pop_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_var_samp_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_alerts_variance_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability": { "created_at": [ - 4670 + 4954 ], "ends_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "recurring_weekly": [ - 5 + 6 ], "starts_at": [ - 4670 + 4954 ], "team": [ - 4621 + 4905 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_aggregate": { "aggregate": [ - 4457 + 4741 ], "nodes": [ - 4451 + 4735 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 4454 + 4738 ], "bool_or": [ - 4455 + 4739 ], "count": [ - 4456 + 4740 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 4472 + 4756 ], "distinct": [ - 5 + 6 ], "filter": [ - 4460 + 4744 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 4473 + 4757 ], "distinct": [ - 5 + 6 ], "filter": [ - 4460 + 4744 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 4471 + 4755 ], "distinct": [ - 5 + 6 ], "filter": [ - 4460 + 4744 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 4471, + 4755, "[team_scrim_availability_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4463 + 4747 ], "min": [ - 4465 + 4749 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_aggregate_order_by": { "count": [ - 3094 + 3373 ], "max": [ - 4464 + 4748 ], "min": [ - 4466 + 4750 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 4462 + 4746 ], "on_conflict": [ - 4468 + 4752 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_bool_exp": { "_and": [ - 4460 + 4744 ], "_not": [ - 4460 + 4744 ], "_or": [ - 4460 + 4744 ], "created_at": [ - 4671 + 4955 ], "ends_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "recurring_weekly": [ - 6 + 7 ], "starts_at": [ - 4671 + 4955 ], "team": [ - 4632 + 4916 ], "team_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4670 + 4954 ], "ends_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "recurring_weekly": [ - 5 + 6 ], "starts_at": [ - 4670 + 4954 ], "team": [ - 4641 + 4925 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_max_fields": { "created_at": [ - 4670 + 4954 ], "ends_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "starts_at": [ - 4670 + 4954 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_max_order_by": { "created_at": [ - 3094 + 3373 ], "ends_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "starts_at": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_min_fields": { "created_at": [ - 4670 + 4954 ], "ends_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "starts_at": [ - 4670 + 4954 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_min_order_by": { "created_at": [ - 3094 + 3373 ], "ends_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "starts_at": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4451 + 4735 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_on_conflict": { "constraint": [ - 4461 + 4745 ], "update_columns": [ - 4477 + 4761 ], "where": [ - 4460 + 4744 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_order_by": { "created_at": [ - 3094 + 3373 ], "ends_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "recurring_weekly": [ - 3094 + 3373 ], "starts_at": [ - 3094 + 3373 ], "team": [ - 4643 + 4927 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_select_column": {}, @@ -101927,1489 +107363,1489 @@ export default { "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_scrim_availability_set_input": { "created_at": [ - 4670 + 4954 ], "ends_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "recurring_weekly": [ - 5 + 6 ], "starts_at": [ - 4670 + 4954 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 4476 + 4760 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "ends_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "recurring_weekly": [ - 5 + 6 ], "starts_at": [ - 4670 + 4954 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 4474 + 4758 ], "where": [ - 4460 + 4744 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "proposed_by": [ - 4052 + 4331 ], "proposed_by_steam_id": [ - 264 + 269 ], "proposed_by_team": [ - 4621 + 4905 ], "proposed_by_team_id": [ - 5170 + 5454 ], "proposed_scheduled_at": [ - 4670 + 4954 ], "request": [ - 4520 + 4804 ], "request_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 4483 + 4767 ], "nodes": [ - 4479 + 4763 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 4482 + 4766 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 4500 + 4784 ], "distinct": [ - 5 + 6 ], "filter": [ - 4488 + 4772 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 4486 + 4770 ], "count": [ - 40, + 41, { "columns": [ - 4500, + 4784, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4492 + 4776 ], "min": [ - 4494 + 4778 ], "stddev": [ - 4502 + 4786 ], "stddev_pop": [ - 4504 + 4788 ], "stddev_samp": [ - 4506 + 4790 ], "sum": [ - 4510 + 4794 ], "var_pop": [ - 4514 + 4798 ], "var_samp": [ - 4516 + 4800 ], "variance": [ - 4518 + 4802 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 4487 + 4771 ], "count": [ - 3094 + 3373 ], "max": [ - 4493 + 4777 ], "min": [ - 4495 + 4779 ], "stddev": [ - 4503 + 4787 ], "stddev_pop": [ - 4505 + 4789 ], "stddev_samp": [ - 4507 + 4791 ], "sum": [ - 4511 + 4795 ], "var_pop": [ - 4515 + 4799 ], "var_samp": [ - 4517 + 4801 ], "variance": [ - 4519 + 4803 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 4491 + 4775 ], "on_conflict": [ - 4497 + 4781 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_avg_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 4488 + 4772 ], "_not": [ - 4488 + 4772 ], "_or": [ - 4488 + 4772 ], "created_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "proposed_by": [ - 4056 + 4335 ], "proposed_by_steam_id": [ - 266 + 271 ], "proposed_by_team": [ - 4632 + 4916 ], "proposed_by_team_id": [ - 5172 + 5456 ], "proposed_scheduled_at": [ - 4671 + 4955 ], "request": [ - 4531 + 4815 ], "request_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_constraint": {}, "team_scrim_request_proposals_inc_input": { "proposed_by_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "proposed_by": [ - 4063 + 4342 ], "proposed_by_steam_id": [ - 264 + 269 ], "proposed_by_team": [ - 4641 + 4925 ], "proposed_by_team_id": [ - 5170 + 5454 ], "proposed_scheduled_at": [ - 4670 + 4954 ], "request": [ - 4540 + 4824 ], "request_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "proposed_by_steam_id": [ - 264 + 269 ], "proposed_by_team_id": [ - 5170 + 5454 ], "proposed_scheduled_at": [ - 4670 + 4954 ], "request_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "proposed_by_steam_id": [ - 3094 + 3373 ], "proposed_by_team_id": [ - 3094 + 3373 ], "proposed_scheduled_at": [ - 3094 + 3373 ], "request_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "proposed_by_steam_id": [ - 264 + 269 ], "proposed_by_team_id": [ - 5170 + 5454 ], "proposed_scheduled_at": [ - 4670 + 4954 ], "request_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "proposed_by_steam_id": [ - 3094 + 3373 ], "proposed_by_team_id": [ - 3094 + 3373 ], "proposed_scheduled_at": [ - 3094 + 3373 ], "request_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4479 + 4763 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 4489 + 4773 ], "update_columns": [ - 4512 + 4796 ], "where": [ - 4488 + 4772 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "proposed_by": [ - 4065 + 4344 ], "proposed_by_steam_id": [ - 3094 + 3373 ], "proposed_by_team": [ - 4643 + 4927 ], "proposed_by_team_id": [ - 3094 + 3373 ], "proposed_scheduled_at": [ - 3094 + 3373 ], "request": [ - 4542 + 4826 ], "request_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "proposed_by_steam_id": [ - 264 + 269 ], "proposed_by_team_id": [ - 5170 + 5454 ], "proposed_scheduled_at": [ - 4670 + 4954 ], "request_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_stddev_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_stddev_pop_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_stddev_samp_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 4509 + 4793 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "proposed_by_steam_id": [ - 264 + 269 ], "proposed_by_team_id": [ - 5170 + 5454 ], "proposed_scheduled_at": [ - 4670 + 4954 ], "request_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_sum_fields": { "proposed_by_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 4490 + 4774 ], "_set": [ - 4501 + 4785 ], "where": [ - 4488 + 4772 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_var_pop_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_var_samp_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_variance_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests": { "auto_generated": [ - 5 + 6 ], "awaiting_team": [ - 4621 + 4905 ], "awaiting_team_id": [ - 5170 + 5454 ], "canceled_by_team_id": [ - 5170 + 5454 ], "canceled_late": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "expires_at": [ - 4670 + 4954 ], "from_team": [ - 4621 + 4905 ], "from_team_checked_in": [ - 5 + 6 ], "from_team_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_options": [ - 2758 + 3015 ], "match_options_id": [ - 5170 + 5454 ], "match_outcome": [ - 80 + 84 ], "proposals": [ - 4479, + 4763, { "distinct_on": [ - 4500, + 4784, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4498, + 4782, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4488 + 4772 ] } ], "proposals_aggregate": [ - 4480, + 4764, { "distinct_on": [ - 4500, + 4784, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4498, + 4782, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4488 + 4772 ] } ], "proposed_scheduled_at": [ - 4670 + 4954 ], "region": [ - 80 + 84 ], "requested_by": [ - 4052 + 4331 ], "requested_by_steam_id": [ - 264 + 269 ], "responded_at": [ - 4670 + 4954 ], "status": [ - 1259 + 1324 ], "to_team": [ - 4621 + 4905 ], "to_team_checked_in": [ - 5 + 6 ], "to_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_aggregate": { "aggregate": [ - 4526 + 4810 ], "nodes": [ - 4520 + 4804 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 4523 + 4807 ], "bool_or": [ - 4524 + 4808 ], "count": [ - 4525 + 4809 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 4545 + 4829 ], "distinct": [ - 5 + 6 ], "filter": [ - 4531 + 4815 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 4546 + 4830 ], "distinct": [ - 5 + 6 ], "filter": [ - 4531 + 4815 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 4544 + 4828 ], "distinct": [ - 5 + 6 ], "filter": [ - 4531 + 4815 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_aggregate_fields": { "avg": [ - 4529 + 4813 ], "count": [ - 40, + 41, { "columns": [ - 4544, + 4828, "[team_scrim_requests_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4535 + 4819 ], "min": [ - 4537 + 4821 ], "stddev": [ - 4548 + 4832 ], "stddev_pop": [ - 4550 + 4834 ], "stddev_samp": [ - 4552 + 4836 ], "sum": [ - 4556 + 4840 ], "var_pop": [ - 4560 + 4844 ], "var_samp": [ - 4562 + 4846 ], "variance": [ - 4564 + 4848 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 4530 + 4814 ], "count": [ - 3094 + 3373 ], "max": [ - 4536 + 4820 ], "min": [ - 4538 + 4822 ], "stddev": [ - 4549 + 4833 ], "stddev_pop": [ - 4551 + 4835 ], "stddev_samp": [ - 4553 + 4837 ], "sum": [ - 4557 + 4841 ], "var_pop": [ - 4561 + 4845 ], "var_samp": [ - 4563 + 4847 ], "variance": [ - 4565 + 4849 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 4534 + 4818 ], "on_conflict": [ - 4541 + 4825 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_avg_fields": { "requested_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_bool_exp": { "_and": [ - 4531 + 4815 ], "_not": [ - 4531 + 4815 ], "_or": [ - 4531 + 4815 ], "auto_generated": [ - 6 + 7 ], "awaiting_team": [ - 4632 + 4916 ], "awaiting_team_id": [ - 5172 + 5456 ], "canceled_by_team_id": [ - 5172 + 5456 ], "canceled_late": [ - 6 + 7 ], "created_at": [ - 4671 + 4955 ], "expires_at": [ - 4671 + 4955 ], "from_team": [ - 4632 + 4916 ], "from_team_checked_in": [ - 6 + 7 ], "from_team_id": [ - 5172 + 5456 ], "id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_options": [ - 2762 + 3026 ], "match_options_id": [ - 5172 + 5456 ], "match_outcome": [ - 82 + 86 ], "proposals": [ - 4488 + 4772 ], "proposals_aggregate": [ - 4481 + 4765 ], "proposed_scheduled_at": [ - 4671 + 4955 ], "region": [ - 82 + 86 ], "requested_by": [ - 4056 + 4335 ], "requested_by_steam_id": [ - 266 + 271 ], "responded_at": [ - 4671 + 4955 ], "status": [ - 1260 + 1325 ], "to_team": [ - 4632 + 4916 ], "to_team_checked_in": [ - 6 + 7 ], "to_team_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_constraint": {}, "team_scrim_requests_inc_input": { "requested_by_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_insert_input": { "auto_generated": [ - 5 + 6 ], "awaiting_team": [ - 4641 + 4925 ], "awaiting_team_id": [ - 5170 + 5454 ], "canceled_by_team_id": [ - 5170 + 5454 ], "canceled_late": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "expires_at": [ - 4670 + 4954 ], "from_team": [ - 4641 + 4925 ], "from_team_checked_in": [ - 5 + 6 ], "from_team_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_options": [ - 2769 + 3035 ], "match_options_id": [ - 5170 + 5454 ], "match_outcome": [ - 80 + 84 ], "proposals": [ - 4485 + 4769 ], "proposed_scheduled_at": [ - 4670 + 4954 ], "region": [ - 80 + 84 ], "requested_by": [ - 4063 + 4342 ], "requested_by_steam_id": [ - 264 + 269 ], "responded_at": [ - 4670 + 4954 ], "status": [ - 1259 + 1324 ], "to_team": [ - 4641 + 4925 ], "to_team_checked_in": [ - 5 + 6 ], "to_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 5170 + 5454 ], "canceled_by_team_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "expires_at": [ - 4670 + 4954 ], "from_team_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "match_outcome": [ - 80 + 84 ], "proposed_scheduled_at": [ - 4670 + 4954 ], "region": [ - 80 + 84 ], "requested_by_steam_id": [ - 264 + 269 ], "responded_at": [ - 4670 + 4954 ], "to_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 3094 + 3373 ], "canceled_by_team_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "expires_at": [ - 3094 + 3373 ], "from_team_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "match_outcome": [ - 3094 + 3373 ], "proposed_scheduled_at": [ - 3094 + 3373 ], "region": [ - 3094 + 3373 ], "requested_by_steam_id": [ - 3094 + 3373 ], "responded_at": [ - 3094 + 3373 ], "to_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 5170 + 5454 ], "canceled_by_team_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "expires_at": [ - 4670 + 4954 ], "from_team_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "match_outcome": [ - 80 + 84 ], "proposed_scheduled_at": [ - 4670 + 4954 ], "region": [ - 80 + 84 ], "requested_by_steam_id": [ - 264 + 269 ], "responded_at": [ - 4670 + 4954 ], "to_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 3094 + 3373 ], "canceled_by_team_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "expires_at": [ - 3094 + 3373 ], "from_team_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "match_outcome": [ - 3094 + 3373 ], "proposed_scheduled_at": [ - 3094 + 3373 ], "region": [ - 3094 + 3373 ], "requested_by_steam_id": [ - 3094 + 3373 ], "responded_at": [ - 3094 + 3373 ], "to_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4520 + 4804 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 4534 + 4818 ], "on_conflict": [ - 4541 + 4825 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_on_conflict": { "constraint": [ - 4532 + 4816 ], "update_columns": [ - 4558 + 4842 ], "where": [ - 4531 + 4815 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_order_by": { "auto_generated": [ - 3094 + 3373 ], "awaiting_team": [ - 4643 + 4927 ], "awaiting_team_id": [ - 3094 + 3373 ], "canceled_by_team_id": [ - 3094 + 3373 ], "canceled_late": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "expires_at": [ - 3094 + 3373 ], "from_team": [ - 4643 + 4927 ], "from_team_checked_in": [ - 3094 + 3373 ], "from_team_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_options": [ - 2771 + 3037 ], "match_options_id": [ - 3094 + 3373 ], "match_outcome": [ - 3094 + 3373 ], "proposals_aggregate": [ - 4484 + 4768 ], "proposed_scheduled_at": [ - 3094 + 3373 ], "region": [ - 3094 + 3373 ], "requested_by": [ - 4065 + 4344 ], "requested_by_steam_id": [ - 3094 + 3373 ], "responded_at": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "to_team": [ - 4643 + 4927 ], "to_team_checked_in": [ - 3094 + 3373 ], "to_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_select_column": {}, @@ -103417,2144 +108853,2144 @@ export default { "team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_scrim_requests_set_input": { "auto_generated": [ - 5 + 6 ], "awaiting_team_id": [ - 5170 + 5454 ], "canceled_by_team_id": [ - 5170 + 5454 ], "canceled_late": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "expires_at": [ - 4670 + 4954 ], "from_team_checked_in": [ - 5 + 6 ], "from_team_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "match_outcome": [ - 80 + 84 ], "proposed_scheduled_at": [ - 4670 + 4954 ], "region": [ - 80 + 84 ], "requested_by_steam_id": [ - 264 + 269 ], "responded_at": [ - 4670 + 4954 ], "status": [ - 1259 + 1324 ], "to_team_checked_in": [ - 5 + 6 ], "to_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_stddev_fields": { "requested_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_stddev_pop_fields": { "requested_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_stddev_samp_fields": { "requested_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 4555 + 4839 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_stream_cursor_value_input": { "auto_generated": [ - 5 + 6 ], "awaiting_team_id": [ - 5170 + 5454 ], "canceled_by_team_id": [ - 5170 + 5454 ], "canceled_late": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "expires_at": [ - 4670 + 4954 ], "from_team_checked_in": [ - 5 + 6 ], "from_team_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "match_outcome": [ - 80 + 84 ], "proposed_scheduled_at": [ - 4670 + 4954 ], "region": [ - 80 + 84 ], "requested_by_steam_id": [ - 264 + 269 ], "responded_at": [ - 4670 + 4954 ], "status": [ - 1259 + 1324 ], "to_team_checked_in": [ - 5 + 6 ], "to_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_sum_fields": { "requested_by_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 4533 + 4817 ], "_set": [ - 4547 + 4831 ], "where": [ - 4531 + 4815 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_var_pop_fields": { "requested_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_var_samp_fields": { "requested_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_variance_fields": { "requested_by_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings": { "allow_outside_availability": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "map_ids": [ - 5170 + 5454 ], "notes": [ - 80 + 84 ], "regions": [ - 80 + 84 ], "team": [ - 4621 + 4905 ], "team_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_aggregate": { "aggregate": [ - 4568 + 4852 ], "nodes": [ - 4566 + 4850 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_aggregate_fields": { "avg": [ - 4569 + 4853 ], "count": [ - 40, + 41, { "columns": [ - 4581, + 4865, "[team_scrim_settings_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4574 + 4858 ], "min": [ - 4575 + 4859 ], "stddev": [ - 4583 + 4867 ], "stddev_pop": [ - 4584 + 4868 ], "stddev_samp": [ - 4585 + 4869 ], "sum": [ - 4588 + 4872 ], "var_pop": [ - 4591 + 4875 ], "var_samp": [ - 4592 + 4876 ], "variance": [ - 4593 + 4877 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_avg_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_bool_exp": { "_and": [ - 4570 + 4854 ], "_not": [ - 4570 + 4854 ], "_or": [ - 4570 + 4854 ], "allow_outside_availability": [ - 6 + 7 ], "created_at": [ - 4671 + 4955 ], "elo_max": [ - 41 + 42 ], "elo_min": [ - 41 + 42 ], "enabled": [ - 6 + 7 ], "id": [ - 5172 + 5456 ], "map_ids": [ - 5171 + 5455 ], "notes": [ - 82 + 86 ], "regions": [ - 81 + 85 ], "team": [ - 4632 + 4916 ], "team_id": [ - 5172 + 5456 ], "updated_at": [ - 4671 + 4955 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_constraint": {}, "team_scrim_settings_inc_input": { "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_insert_input": { "allow_outside_availability": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "map_ids": [ - 5170 + 5454 ], "notes": [ - 80 + 84 ], "regions": [ - 80 + 84 ], "team": [ - 4641 + 4925 ], "team_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_max_fields": { "created_at": [ - 4670 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "map_ids": [ - 5170 + 5454 ], "notes": [ - 80 + 84 ], "regions": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_min_fields": { "created_at": [ - 4670 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "map_ids": [ - 5170 + 5454 ], "notes": [ - 80 + 84 ], "regions": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4566 + 4850 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 4573 + 4857 ], "on_conflict": [ - 4578 + 4862 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_on_conflict": { "constraint": [ - 4571 + 4855 ], "update_columns": [ - 4589 + 4873 ], "where": [ - 4570 + 4854 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "elo_max": [ - 3094 + 3373 ], "elo_min": [ - 3094 + 3373 ], "enabled": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "map_ids": [ - 3094 + 3373 ], "notes": [ - 3094 + 3373 ], "regions": [ - 3094 + 3373 ], "team": [ - 4643 + 4927 ], "team_id": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_select_column": {}, "team_scrim_settings_set_input": { "allow_outside_availability": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "map_ids": [ - 5170 + 5454 ], "notes": [ - 80 + 84 ], "regions": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_stddev_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_stddev_pop_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_stddev_samp_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 4587 + 4871 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_stream_cursor_value_input": { "allow_outside_availability": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "map_ids": [ - 5170 + 5454 ], "notes": [ - 80 + 84 ], "regions": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_sum_fields": { "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 4572 + 4856 ], "_set": [ - 4582 + 4866 ], "where": [ - 4570 + 4854 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_var_pop_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_var_samp_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_scrim_settings_variance_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_suggestions": { "created_at": [ - 4670 + 4954 ], "group_hash": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "last_notified_at": [ - 4670 + 4954 ], "member_steam_ids": [ - 264 + 269 ], "status": [ - 80 + 84 ], "together_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_aggregate": { "aggregate": [ - 4596 + 4880 ], "nodes": [ - 4594 + 4878 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_aggregate_fields": { "avg": [ - 4597 + 4881 ], "count": [ - 40, + 41, { "columns": [ - 4608, + 4892, "[team_suggestions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4602 + 4886 ], "min": [ - 4603 + 4887 ], "stddev": [ - 4610 + 4894 ], "stddev_pop": [ - 4611 + 4895 ], "stddev_samp": [ - 4612 + 4896 ], "sum": [ - 4615 + 4899 ], "var_pop": [ - 4618 + 4902 ], "var_samp": [ - 4619 + 4903 ], "variance": [ - 4620 + 4904 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_avg_fields": { "together_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_bool_exp": { "_and": [ - 4598 + 4882 ], "_not": [ - 4598 + 4882 ], "_or": [ - 4598 + 4882 ], "created_at": [ - 4671 + 4955 ], "group_hash": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "last_notified_at": [ - 4671 + 4955 ], "member_steam_ids": [ - 265 + 270 ], "status": [ - 82 + 86 ], "together_count": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_constraint": {}, "team_suggestions_inc_input": { "together_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_insert_input": { "created_at": [ - 4670 + 4954 ], "group_hash": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "last_notified_at": [ - 4670 + 4954 ], "member_steam_ids": [ - 264 + 269 ], "status": [ - 80 + 84 ], "together_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_max_fields": { "created_at": [ - 4670 + 4954 ], "group_hash": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "last_notified_at": [ - 4670 + 4954 ], "member_steam_ids": [ - 264 + 269 ], "status": [ - 80 + 84 ], "together_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_min_fields": { "created_at": [ - 4670 + 4954 ], "group_hash": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "last_notified_at": [ - 4670 + 4954 ], "member_steam_ids": [ - 264 + 269 ], "status": [ - 80 + 84 ], "together_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4594 + 4878 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_on_conflict": { "constraint": [ - 4599 + 4883 ], "update_columns": [ - 4616 + 4900 ], "where": [ - 4598 + 4882 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_order_by": { "created_at": [ - 3094 + 3373 ], "group_hash": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "last_notified_at": [ - 3094 + 3373 ], "member_steam_ids": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "together_count": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4670 + 4954 ], "group_hash": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "last_notified_at": [ - 4670 + 4954 ], "member_steam_ids": [ - 264 + 269 ], "status": [ - 80 + 84 ], "together_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_stddev_fields": { "together_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_stddev_pop_fields": { "together_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_stddev_samp_fields": { "together_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 4614 + 4898 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "group_hash": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "last_notified_at": [ - 4670 + 4954 ], "member_steam_ids": [ - 264 + 269 ], "status": [ - 80 + 84 ], "together_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_sum_fields": { "together_count": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 4600 + 4884 ], "_set": [ - 4609 + 4893 ], "where": [ - 4598 + 4882 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_var_pop_fields": { "together_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_var_samp_fields": { "together_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "team_suggestions_variance_fields": { "together_count": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "teams": { "avatar_url": [ - 80 + 84 ], "awards": [ - 195, + 200, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "awards_aggregate": [ - 196, + 201, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "can_change_role": [ - 5 + 6 ], "can_invite": [ - 5 + 6 ], "can_manage_scrims": [ - 5 + 6 ], "can_remove": [ - 5 + 6 ], "captain": [ - 4052 + 4331 ], "captain_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "invites": [ - 4338, + 4622, { "distinct_on": [ - 4359, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4357, + 4641, "[team_invites_order_by!]" ], "where": [ - 4347 + 4631 ] } ], "invites_aggregate": [ - 4339, + 4623, { "distinct_on": [ - 4359, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4357, + 4641, "[team_invites_order_by!]" ], "where": [ - 4347 + 4631 ] } ], "is_organization": [ - 5 + 6 ], "match_lineups": [ - 2554, + 2811, { "distinct_on": [ - 2576, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2574, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2820 ] } ], "match_lineups_aggregate": [ - 2555, + 2812, { "distinct_on": [ - 2576, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2574, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2820 ] } ], "matches": [ - 2882, + 3157, { "distinct_on": [ - 2904, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2902, + 3179, "[matches_order_by!]" ], "where": [ - 2891 + 3168 ] } ], "name": [ - 80 + 84 ], "owner": [ - 4052 + 4331 ], "owner_steam_id": [ - 264 + 269 ], "ranks": [ - 5872 + 6156 ], "reputation": [ - 5892 + 6176 ], "role": [ - 80 + 84 ], "roster": [ - 4379, + 4663, { "distinct_on": [ - 4402, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4400, + 4684, "[team_roster_order_by!]" ], "where": [ - 4390 + 4674 ] } ], "roster_aggregate": [ - 4380, + 4664, { "distinct_on": [ - 4402, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4400, + 4684, "[team_roster_order_by!]" ], "where": [ - 4390 + 4674 ] } ], "scrim_availability": [ - 4451, + 4735, { "distinct_on": [ - 4471, + 4755, "[team_scrim_availability_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4469, + 4753, "[team_scrim_availability_order_by!]" ], "where": [ - 4460 + 4744 ] } ], "scrim_availability_aggregate": [ - 4452, + 4736, { "distinct_on": [ - 4471, + 4755, "[team_scrim_availability_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4469, + 4753, "[team_scrim_availability_order_by!]" ], "where": [ - 4460 + 4744 ] } ], "scrim_settings": [ - 4566 + 4850 ], "short_name": [ - 80 + 84 ], "tournament_teams": [ - 5064, + 5348, { "distinct_on": [ - 5086, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5084, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5357 ] } ], "tournament_teams_aggregate": [ - 5065, + 5349, { "distinct_on": [ - 5086, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5084, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5357 ] } ], "__typename": [ - 80 + 84 ] }, "teams_aggregate": { "aggregate": [ - 4627 + 4911 ], "nodes": [ - 4621 + 4905 ], "__typename": [ - 80 + 84 ] }, "teams_aggregate_bool_exp": { "bool_and": [ - 4624 + 4908 ], "bool_or": [ - 4625 + 4909 ], "count": [ - 4626 + 4910 ], "__typename": [ - 80 + 84 ] }, "teams_aggregate_bool_exp_bool_and": { "arguments": [ - 4646 + 4930 ], "distinct": [ - 5 + 6 ], "filter": [ - 4632 + 4916 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "teams_aggregate_bool_exp_bool_or": { "arguments": [ - 4647 + 4931 ], "distinct": [ - 5 + 6 ], "filter": [ - 4632 + 4916 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4645 + 4929 ], "distinct": [ - 5 + 6 ], "filter": [ - 4632 + 4916 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "teams_aggregate_fields": { "avg": [ - 4630 + 4914 ], "count": [ - 40, + 41, { "columns": [ - 4645, + 4929, "[teams_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4636 + 4920 ], "min": [ - 4638 + 4922 ], "stddev": [ - 4649 + 4933 ], "stddev_pop": [ - 4651 + 4935 ], "stddev_samp": [ - 4653 + 4937 ], "sum": [ - 4657 + 4941 ], "var_pop": [ - 4661 + 4945 ], "var_samp": [ - 4663 + 4947 ], "variance": [ - 4665 + 4949 ], "__typename": [ - 80 + 84 ] }, "teams_aggregate_order_by": { "avg": [ - 4631 + 4915 ], "count": [ - 3094 + 3373 ], "max": [ - 4637 + 4921 ], "min": [ - 4639 + 4923 ], "stddev": [ - 4650 + 4934 ], "stddev_pop": [ - 4652 + 4936 ], "stddev_samp": [ - 4654 + 4938 ], "sum": [ - 4658 + 4942 ], "var_pop": [ - 4662 + 4946 ], "var_samp": [ - 4664 + 4948 ], "variance": [ - 4666 + 4950 ], "__typename": [ - 80 + 84 ] }, "teams_arr_rel_insert_input": { "data": [ - 4635 + 4919 ], "on_conflict": [ - 4642 + 4926 ], "__typename": [ - 80 + 84 ] }, "teams_avg_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "teams_avg_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "teams_bool_exp": { "_and": [ - 4632 + 4916 ], "_not": [ - 4632 + 4916 ], "_or": [ - 4632 + 4916 ], "avatar_url": [ - 82 + 86 ], "awards": [ - 204 + 209 ], "awards_aggregate": [ - 197 + 202 ], "can_change_role": [ - 6 + 7 ], "can_invite": [ - 6 + 7 ], "can_manage_scrims": [ - 6 + 7 ], "can_remove": [ - 6 + 7 ], "captain": [ - 4056 + 4335 ], "captain_steam_id": [ - 266 + 271 ], "id": [ - 5172 + 5456 ], "invites": [ - 4347 + 4631 ], "invites_aggregate": [ - 4340 + 4624 ], "is_organization": [ - 6 + 7 ], "match_lineups": [ - 2563 + 2820 ], "match_lineups_aggregate": [ - 2556 + 2813 ], "matches": [ - 2891 + 3168 ], "name": [ - 82 + 86 ], "owner": [ - 4056 + 4335 ], "owner_steam_id": [ - 266 + 271 ], "ranks": [ - 5876 + 6160 ], "reputation": [ - 5896 + 6180 ], "role": [ - 82 + 86 ], "roster": [ - 4390 + 4674 ], "roster_aggregate": [ - 4381 + 4665 ], "scrim_availability": [ - 4460 + 4744 ], "scrim_availability_aggregate": [ - 4453 + 4737 ], "scrim_settings": [ - 4570 + 4854 ], "short_name": [ - 82 + 86 ], "tournament_teams": [ - 5073 + 5357 ], "tournament_teams_aggregate": [ - 5066 + 5350 ], "__typename": [ - 80 + 84 ] }, "teams_constraint": {}, "teams_inc_input": { "captain_steam_id": [ - 264 + 269 ], "owner_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "teams_insert_input": { "avatar_url": [ - 80 + 84 ], "awards": [ - 201 + 206 ], "captain": [ - 4063 + 4342 ], "captain_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "invites": [ - 4344 + 4628 ], "is_organization": [ - 5 + 6 ], "match_lineups": [ - 2560 + 2817 ], "name": [ - 80 + 84 ], "owner": [ - 4063 + 4342 ], "owner_steam_id": [ - 264 + 269 ], "ranks": [ - 5880 + 6164 ], "reputation": [ - 5900 + 6184 ], "roster": [ - 4387 + 4671 ], "scrim_availability": [ - 4459 + 4743 ], "scrim_settings": [ - 4577 + 4861 ], "short_name": [ - 80 + 84 ], "tournament_teams": [ - 5070 + 5354 ], "__typename": [ - 80 + 84 ] }, "teams_max_fields": { "avatar_url": [ - 80 + 84 ], "captain_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "owner_steam_id": [ - 264 + 269 ], "role": [ - 80 + 84 ], "short_name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "teams_max_order_by": { "avatar_url": [ - 3094 + 3373 ], "captain_steam_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "short_name": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "teams_min_fields": { "avatar_url": [ - 80 + 84 ], "captain_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "owner_steam_id": [ - 264 + 269 ], "role": [ - 80 + 84 ], "short_name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "teams_min_order_by": { "avatar_url": [ - 3094 + 3373 ], "captain_steam_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "short_name": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "teams_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4621 + 4905 ], "__typename": [ - 80 + 84 ] }, "teams_obj_rel_insert_input": { "data": [ - 4635 + 4919 ], "on_conflict": [ - 4642 + 4926 ], "__typename": [ - 80 + 84 ] }, "teams_on_conflict": { "constraint": [ - 4633 + 4917 ], "update_columns": [ - 4659 + 4943 ], "where": [ - 4632 + 4916 ], "__typename": [ - 80 + 84 ] }, "teams_order_by": { "avatar_url": [ - 3094 + 3373 ], "awards_aggregate": [ - 200 + 205 ], "can_change_role": [ - 3094 + 3373 ], "can_invite": [ - 3094 + 3373 ], "can_manage_scrims": [ - 3094 + 3373 ], "can_remove": [ - 3094 + 3373 ], "captain": [ - 4065 + 4344 ], "captain_steam_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "invites_aggregate": [ - 4343 + 4627 ], "is_organization": [ - 3094 + 3373 ], "match_lineups_aggregate": [ - 2559 + 2816 ], "matches_aggregate": [ - 2887 + 3164 ], "name": [ - 3094 + 3373 ], "owner": [ - 4065 + 4344 ], "owner_steam_id": [ - 3094 + 3373 ], "ranks": [ - 5881 + 6165 ], "reputation": [ - 5901 + 6185 ], "role": [ - 3094 + 3373 ], "roster_aggregate": [ - 4386 + 4670 ], "scrim_availability_aggregate": [ - 4458 + 4742 ], "scrim_settings": [ - 4579 + 4863 ], "short_name": [ - 3094 + 3373 ], "tournament_teams_aggregate": [ - 5069 + 5353 ], "__typename": [ - 80 + 84 ] }, "teams_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "teams_select_column": {}, @@ -105562,1971 +110998,1971 @@ export default { "teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns": {}, "teams_set_input": { "avatar_url": [ - 80 + 84 ], "captain_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "is_organization": [ - 5 + 6 ], "name": [ - 80 + 84 ], "owner_steam_id": [ - 264 + 269 ], "short_name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "teams_stddev_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "teams_stddev_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "teams_stddev_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "teams_stddev_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "teams_stream_cursor_input": { "initial_value": [ - 4656 + 4940 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "teams_stream_cursor_value_input": { "avatar_url": [ - 80 + 84 ], "captain_steam_id": [ - 264 + 269 ], "id": [ - 5170 + 5454 ], "is_organization": [ - 5 + 6 ], "name": [ - 80 + 84 ], "owner_steam_id": [ - 264 + 269 ], "short_name": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "teams_sum_fields": { "captain_steam_id": [ - 264 + 269 ], "owner_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "teams_sum_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "teams_update_column": {}, "teams_updates": { "_inc": [ - 4634 + 4918 ], "_set": [ - 4648 + 4932 ], "where": [ - 4632 + 4916 ], "__typename": [ - 80 + 84 ] }, "teams_var_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "teams_var_pop_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "teams_var_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "teams_var_samp_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "teams_variance_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "teams_variance_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "time": {}, "time_comparison_exp": { "_eq": [ - 4667 + 4951 ], "_gt": [ - 4667 + 4951 ], "_gte": [ - 4667 + 4951 ], "_in": [ - 4667 + 4951 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 4667 + 4951 ], "_lte": [ - 4667 + 4951 ], "_neq": [ - 4667 + 4951 ], "_nin": [ - 4667 + 4951 ], "__typename": [ - 80 + 84 ] }, "timestamp": {}, "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4670 + 4954 ], "_gt": [ - 4670 + 4954 ], "_gte": [ - 4670 + 4954 ], "_in": [ - 4670 + 4954 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 4670 + 4954 ], "_lte": [ - 4670 + 4954 ], "_neq": [ - 4670 + 4954 ], "_nin": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "tournament_awards": { "award": [ - 236 + 241 ], "award_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "custom_name": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "image_url": [ - 80 + 84 ], "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "tournament": [ - 5106 + 5390 ], "tournament_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_aggregate": { "aggregate": [ - 4676 + 4960 ], "nodes": [ - 4672 + 4956 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_aggregate_bool_exp": { "count": [ - 4675 + 4959 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_aggregate_bool_exp_count": { "arguments": [ - 4694 + 4978 ], "distinct": [ - 5 + 6 ], "filter": [ - 4681 + 4965 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_aggregate_fields": { "avg": [ - 4679 + 4963 ], "count": [ - 40, + 41, { "columns": [ - 4694, + 4978, "[tournament_awards_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4685 + 4969 ], "min": [ - 4687 + 4971 ], "stddev": [ - 4696 + 4980 ], "stddev_pop": [ - 4698 + 4982 ], "stddev_samp": [ - 4700 + 4984 ], "sum": [ - 4704 + 4988 ], "var_pop": [ - 4708 + 4992 ], "var_samp": [ - 4710 + 4994 ], "variance": [ - 4712 + 4996 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_aggregate_order_by": { "avg": [ - 4680 + 4964 ], "count": [ - 3094 + 3373 ], "max": [ - 4686 + 4970 ], "min": [ - 4688 + 4972 ], "stddev": [ - 4697 + 4981 ], "stddev_pop": [ - 4699 + 4983 ], "stddev_samp": [ - 4701 + 4985 ], "sum": [ - 4705 + 4989 ], "var_pop": [ - 4709 + 4993 ], "var_samp": [ - 4711 + 4995 ], "variance": [ - 4713 + 4997 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_arr_rel_insert_input": { "data": [ - 4684 + 4968 ], "on_conflict": [ - 4691 + 4975 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_avg_fields": { "placement": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_avg_order_by": { "placement": [ - 3094 + 3373 ], "silhouette": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_bool_exp": { "_and": [ - 4681 + 4965 ], "_not": [ - 4681 + 4965 ], "_or": [ - 4681 + 4965 ], "award": [ - 240 + 245 ], "award_id": [ - 5172 + 5456 ], "created_at": [ - 4671 + 4955 ], "custom_name": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "image_url": [ - 82 + 86 ], "placement": [ - 41 + 42 ], "silhouette": [ - 41 + 42 ], "tournament": [ - 5127 + 5411 ], "tournament_id": [ - 5172 + 5456 ], "updated_at": [ - 4671 + 4955 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_constraint": {}, "tournament_awards_inc_input": { "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_insert_input": { "award": [ - 247 + 252 ], "award_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "custom_name": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "image_url": [ - 80 + 84 ], "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "tournament": [ - 5136 + 5420 ], "tournament_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_max_fields": { "award_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "custom_name": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "image_url": [ - 80 + 84 ], "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "tournament_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_max_order_by": { "award_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "custom_name": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "image_url": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "silhouette": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_min_fields": { "award_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "custom_name": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "image_url": [ - 80 + 84 ], "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "tournament_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_min_order_by": { "award_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "custom_name": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "image_url": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "silhouette": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4672 + 4956 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_obj_rel_insert_input": { "data": [ - 4684 + 4968 ], "on_conflict": [ - 4691 + 4975 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_on_conflict": { "constraint": [ - 4682 + 4966 ], "update_columns": [ - 4706 + 4990 ], "where": [ - 4681 + 4965 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_order_by": { "award": [ - 249 + 254 ], "award_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "custom_name": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "image_url": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "silhouette": [ - 3094 + 3373 ], "tournament": [ - 5138 + 5422 ], "tournament_id": [ - 3094 + 3373 ], "updated_at": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_select_column": {}, "tournament_awards_set_input": { "award_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "custom_name": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "image_url": [ - 80 + 84 ], "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "tournament_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_stddev_fields": { "placement": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_stddev_order_by": { "placement": [ - 3094 + 3373 ], "silhouette": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_stddev_pop_fields": { "placement": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_stddev_pop_order_by": { "placement": [ - 3094 + 3373 ], "silhouette": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_stddev_samp_fields": { "placement": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_stddev_samp_order_by": { "placement": [ - 3094 + 3373 ], "silhouette": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_stream_cursor_input": { "initial_value": [ - 4703 + 4987 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_stream_cursor_value_input": { "award_id": [ - 5170 + 5454 ], "created_at": [ - 4670 + 4954 ], "custom_name": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "image_url": [ - 80 + 84 ], "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "tournament_id": [ - 5170 + 5454 ], "updated_at": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_sum_fields": { "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_sum_order_by": { "placement": [ - 3094 + 3373 ], "silhouette": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_update_column": {}, "tournament_awards_updates": { "_inc": [ - 4683 + 4967 ], "_set": [ - 4695 + 4979 ], "where": [ - 4681 + 4965 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_var_pop_fields": { "placement": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_var_pop_order_by": { "placement": [ - 3094 + 3373 ], "silhouette": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_var_samp_fields": { "placement": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_var_samp_order_by": { "placement": [ - 3094 + 3373 ], "silhouette": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_variance_fields": { "placement": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_awards_variance_order_by": { "placement": [ - 3094 + 3373 ], "silhouette": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets": { "bye": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "feeding_brackets": [ - 4714, + 4998, { "distinct_on": [ - 4738, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4736, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5009 ] } ], "finished": [ - 5 + 6 ], "group": [ - 3092 + 3371 ], "id": [ - 5170 + 5454 ], "loser_bracket": [ - 4714 + 4998 ], "loser_parent_bracket_id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_number": [ - 40 + 41 ], "match_options_id": [ - 5170 + 5454 ], "options": [ - 2758 + 3015 ], "parent_bracket": [ - 4714 + 4998 ], "parent_bracket_id": [ - 5170 + 5454 ], "path": [ - 80 + 84 ], "round": [ - 40 + 41 ], "scheduled_at": [ - 4670 + 4954 ], "scheduled_eta": [ - 4670 + 4954 ], "scheduling_proposals": [ - 2067, + 2324, { "distinct_on": [ - 2088, + 2345, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2086, + 2343, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2076 + 2333 ] } ], "scheduling_proposals_aggregate": [ - 2068, + 2325, { "distinct_on": [ - 2088, + 2345, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2086, + 2343, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2076 + 2333 ] } ], "stage": [ - 4931 + 5215 ], "team_1": [ - 5064 + 5348 ], "team_1_seed": [ - 40 + 41 ], "team_2": [ - 5064 + 5348 ], "team_2_seed": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "tournament_team_id_1": [ - 5170 + 5454 ], "tournament_team_id_2": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_aggregate": { "aggregate": [ - 4720 + 5004 ], "nodes": [ - 4714 + 4998 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4717 + 5001 ], "bool_or": [ - 4718 + 5002 ], "count": [ - 4719 + 5003 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4739 + 5023 ], "distinct": [ - 5 + 6 ], "filter": [ - 4725 + 5009 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4740 + 5024 ], "distinct": [ - 5 + 6 ], "filter": [ - 4725 + 5009 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4738 + 5022 ], "distinct": [ - 5 + 6 ], "filter": [ - 4725 + 5009 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_aggregate_fields": { "avg": [ - 4723 + 5007 ], "count": [ - 40, + 41, { "columns": [ - 4738, + 5022, "[tournament_brackets_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4729 + 5013 ], "min": [ - 4731 + 5015 ], "stddev": [ - 4742 + 5026 ], "stddev_pop": [ - 4744 + 5028 ], "stddev_samp": [ - 4746 + 5030 ], "sum": [ - 4750 + 5034 ], "var_pop": [ - 4754 + 5038 ], "var_samp": [ - 4756 + 5040 ], "variance": [ - 4758 + 5042 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4724 + 5008 ], "count": [ - 3094 + 3373 ], "max": [ - 4730 + 5014 ], "min": [ - 4732 + 5016 ], "stddev": [ - 4743 + 5027 ], "stddev_pop": [ - 4745 + 5029 ], "stddev_samp": [ - 4747 + 5031 ], "sum": [ - 4751 + 5035 ], "var_pop": [ - 4755 + 5039 ], "var_samp": [ - 4757 + 5041 ], "variance": [ - 4759 + 5043 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4728 + 5012 ], "on_conflict": [ - 4735 + 5019 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_avg_fields": { "group": [ - 31 + 32 ], "match_number": [ - 31 + 32 ], "round": [ - 31 + 32 ], "team_1_seed": [ - 31 + 32 ], "team_2_seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_avg_order_by": { "group": [ - 3094 + 3373 ], "match_number": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "team_1_seed": [ - 3094 + 3373 ], "team_2_seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_bool_exp": { "_and": [ - 4725 + 5009 ], "_not": [ - 4725 + 5009 ], "_or": [ - 4725 + 5009 ], "bye": [ - 6 + 7 ], "created_at": [ - 4671 + 4955 ], "feeding_brackets": [ - 4725 + 5009 ], "finished": [ - 6 + 7 ], "group": [ - 3093 + 3372 ], "id": [ - 5172 + 5456 ], "loser_bracket": [ - 4725 + 5009 ], "loser_parent_bracket_id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_number": [ - 41 + 42 ], "match_options_id": [ - 5172 + 5456 ], "options": [ - 2762 + 3026 ], "parent_bracket": [ - 4725 + 5009 ], "parent_bracket_id": [ - 5172 + 5456 ], "path": [ - 82 + 86 ], "round": [ - 41 + 42 ], "scheduled_at": [ - 4671 + 4955 ], "scheduled_eta": [ - 4671 + 4955 ], "scheduling_proposals": [ - 2076 + 2333 ], "scheduling_proposals_aggregate": [ - 2069 + 2326 ], "stage": [ - 4943 + 5227 ], "team_1": [ - 5073 + 5357 ], "team_1_seed": [ - 41 + 42 ], "team_2": [ - 5073 + 5357 ], "team_2_seed": [ - 41 + 42 ], "tournament_stage_id": [ - 5172 + 5456 ], "tournament_team_id_1": [ - 5172 + 5456 ], "tournament_team_id_2": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 3092 + 3371 ], "match_number": [ - 40 + 41 ], "round": [ - 40 + 41 ], "team_1_seed": [ - 40 + 41 ], "team_2_seed": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_insert_input": { "bye": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "finished": [ - 5 + 6 ], "group": [ - 3092 + 3371 ], "id": [ - 5170 + 5454 ], "loser_bracket": [ - 4734 + 5018 ], "loser_parent_bracket_id": [ - 5170 + 5454 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_number": [ - 40 + 41 ], "match_options_id": [ - 5170 + 5454 ], "options": [ - 2769 + 3035 ], "parent_bracket": [ - 4734 + 5018 ], "parent_bracket_id": [ - 5170 + 5454 ], "path": [ - 80 + 84 ], "round": [ - 40 + 41 ], "scheduled_at": [ - 4670 + 4954 ], "scheduled_eta": [ - 4670 + 4954 ], "scheduling_proposals": [ - 2073 + 2330 ], "stage": [ - 4955 + 5239 ], "team_1": [ - 5082 + 5366 ], "team_1_seed": [ - 40 + 41 ], "team_2": [ - 5082 + 5366 ], "team_2_seed": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "tournament_team_id_1": [ - 5170 + 5454 ], "tournament_team_id_2": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_max_fields": { "created_at": [ - 4670 + 4954 ], "group": [ - 3092 + 3371 ], "id": [ - 5170 + 5454 ], "loser_parent_bracket_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_number": [ - 40 + 41 ], "match_options_id": [ - 5170 + 5454 ], "parent_bracket_id": [ - 5170 + 5454 ], "path": [ - 80 + 84 ], "round": [ - 40 + 41 ], "scheduled_at": [ - 4670 + 4954 ], "scheduled_eta": [ - 4670 + 4954 ], "team_1_seed": [ - 40 + 41 ], "team_2_seed": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "tournament_team_id_1": [ - 5170 + 5454 ], "tournament_team_id_2": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_max_order_by": { "created_at": [ - 3094 + 3373 ], "group": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "loser_parent_bracket_id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_number": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "parent_bracket_id": [ - 3094 + 3373 ], "path": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "scheduled_at": [ - 3094 + 3373 ], "scheduled_eta": [ - 3094 + 3373 ], "team_1_seed": [ - 3094 + 3373 ], "team_2_seed": [ - 3094 + 3373 ], "tournament_stage_id": [ - 3094 + 3373 ], "tournament_team_id_1": [ - 3094 + 3373 ], "tournament_team_id_2": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_min_fields": { "created_at": [ - 4670 + 4954 ], "group": [ - 3092 + 3371 ], "id": [ - 5170 + 5454 ], "loser_parent_bracket_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_number": [ - 40 + 41 ], "match_options_id": [ - 5170 + 5454 ], "parent_bracket_id": [ - 5170 + 5454 ], "path": [ - 80 + 84 ], "round": [ - 40 + 41 ], "scheduled_at": [ - 4670 + 4954 ], "scheduled_eta": [ - 4670 + 4954 ], "team_1_seed": [ - 40 + 41 ], "team_2_seed": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "tournament_team_id_1": [ - 5170 + 5454 ], "tournament_team_id_2": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_min_order_by": { "created_at": [ - 3094 + 3373 ], "group": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "loser_parent_bracket_id": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_number": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "parent_bracket_id": [ - 3094 + 3373 ], "path": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "scheduled_at": [ - 3094 + 3373 ], "scheduled_eta": [ - 3094 + 3373 ], "team_1_seed": [ - 3094 + 3373 ], "team_2_seed": [ - 3094 + 3373 ], "tournament_stage_id": [ - 3094 + 3373 ], "tournament_team_id_1": [ - 3094 + 3373 ], "tournament_team_id_2": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4714 + 4998 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4728 + 5012 ], "on_conflict": [ - 4735 + 5019 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_on_conflict": { "constraint": [ - 4726 + 5010 ], "update_columns": [ - 4752 + 5036 ], "where": [ - 4725 + 5009 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_order_by": { "bye": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "feeding_brackets_aggregate": [ - 4721 + 5005 ], "finished": [ - 3094 + 3373 ], "group": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "loser_bracket": [ - 4736 + 5020 ], "loser_parent_bracket_id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_number": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "options": [ - 2771 + 3037 ], "parent_bracket": [ - 4736 + 5020 ], "parent_bracket_id": [ - 3094 + 3373 ], "path": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "scheduled_at": [ - 3094 + 3373 ], "scheduled_eta": [ - 3094 + 3373 ], "scheduling_proposals_aggregate": [ - 2072 + 2329 ], "stage": [ - 4957 + 5241 ], "team_1": [ - 5084 + 5368 ], "team_1_seed": [ - 3094 + 3373 ], "team_2": [ - 5084 + 5368 ], "team_2_seed": [ - 3094 + 3373 ], "tournament_stage_id": [ - 3094 + 3373 ], "tournament_team_id_1": [ - 3094 + 3373 ], "tournament_team_id_2": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_select_column": {}, @@ -107534,3647 +112970,3647 @@ export default { "tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_brackets_set_input": { "bye": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "finished": [ - 5 + 6 ], "group": [ - 3092 + 3371 ], "id": [ - 5170 + 5454 ], "loser_parent_bracket_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_number": [ - 40 + 41 ], "match_options_id": [ - 5170 + 5454 ], "parent_bracket_id": [ - 5170 + 5454 ], "path": [ - 80 + 84 ], "round": [ - 40 + 41 ], "scheduled_at": [ - 4670 + 4954 ], "scheduled_eta": [ - 4670 + 4954 ], "team_1_seed": [ - 40 + 41 ], "team_2_seed": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "tournament_team_id_1": [ - 5170 + 5454 ], "tournament_team_id_2": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_stddev_fields": { "group": [ - 31 + 32 ], "match_number": [ - 31 + 32 ], "round": [ - 31 + 32 ], "team_1_seed": [ - 31 + 32 ], "team_2_seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_stddev_order_by": { "group": [ - 3094 + 3373 ], "match_number": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "team_1_seed": [ - 3094 + 3373 ], "team_2_seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_stddev_pop_fields": { "group": [ - 31 + 32 ], "match_number": [ - 31 + 32 ], "round": [ - 31 + 32 ], "team_1_seed": [ - 31 + 32 ], "team_2_seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 3094 + 3373 ], "match_number": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "team_1_seed": [ - 3094 + 3373 ], "team_2_seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_stddev_samp_fields": { "group": [ - 31 + 32 ], "match_number": [ - 31 + 32 ], "round": [ - 31 + 32 ], "team_1_seed": [ - 31 + 32 ], "team_2_seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 3094 + 3373 ], "match_number": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "team_1_seed": [ - 3094 + 3373 ], "team_2_seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4749 + 5033 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_stream_cursor_value_input": { "bye": [ - 5 + 6 ], "created_at": [ - 4670 + 4954 ], "finished": [ - 5 + 6 ], "group": [ - 3092 + 3371 ], "id": [ - 5170 + 5454 ], "loser_parent_bracket_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_number": [ - 40 + 41 ], "match_options_id": [ - 5170 + 5454 ], "parent_bracket_id": [ - 5170 + 5454 ], "path": [ - 80 + 84 ], "round": [ - 40 + 41 ], "scheduled_at": [ - 4670 + 4954 ], "scheduled_eta": [ - 4670 + 4954 ], "team_1_seed": [ - 40 + 41 ], "team_2_seed": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "tournament_team_id_1": [ - 5170 + 5454 ], "tournament_team_id_2": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_sum_fields": { "group": [ - 3092 + 3371 ], "match_number": [ - 40 + 41 ], "round": [ - 40 + 41 ], "team_1_seed": [ - 40 + 41 ], "team_2_seed": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_sum_order_by": { "group": [ - 3094 + 3373 ], "match_number": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "team_1_seed": [ - 3094 + 3373 ], "team_2_seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4727 + 5011 ], "_set": [ - 4741 + 5025 ], "where": [ - 4725 + 5009 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_var_pop_fields": { "group": [ - 31 + 32 ], "match_number": [ - 31 + 32 ], "round": [ - 31 + 32 ], "team_1_seed": [ - 31 + 32 ], "team_2_seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_var_pop_order_by": { "group": [ - 3094 + 3373 ], "match_number": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "team_1_seed": [ - 3094 + 3373 ], "team_2_seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_var_samp_fields": { "group": [ - 31 + 32 ], "match_number": [ - 31 + 32 ], "round": [ - 31 + 32 ], "team_1_seed": [ - 31 + 32 ], "team_2_seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_var_samp_order_by": { "group": [ - 3094 + 3373 ], "match_number": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "team_1_seed": [ - 3094 + 3373 ], "team_2_seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_variance_fields": { "group": [ - 31 + 32 ], "match_number": [ - 31 + 32 ], "round": [ - 31 + 32 ], "team_1_seed": [ - 31 + 32 ], "team_2_seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_brackets_variance_order_by": { "group": [ - 3094 + 3373 ], "match_number": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "team_1_seed": [ - 3094 + 3373 ], "team_2_seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_categories": { "category": [ - 1400 + 1465 ], "e_tournament_category": [ - 1395 + 1460 ], "tournament": [ - 5106 + 5390 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_aggregate": { "aggregate": [ - 4764 + 5048 ], "nodes": [ - 4760 + 5044 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_aggregate_bool_exp": { "count": [ - 4763 + 5047 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_aggregate_bool_exp_count": { "arguments": [ - 4778 + 5062 ], "distinct": [ - 5 + 6 ], "filter": [ - 4767 + 5051 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 4778, + 5062, "[tournament_categories_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4770 + 5054 ], "min": [ - 4772 + 5056 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_aggregate_order_by": { "count": [ - 3094 + 3373 ], "max": [ - 4771 + 5055 ], "min": [ - 4773 + 5057 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_arr_rel_insert_input": { "data": [ - 4769 + 5053 ], "on_conflict": [ - 4775 + 5059 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_bool_exp": { "_and": [ - 4767 + 5051 ], "_not": [ - 4767 + 5051 ], "_or": [ - 4767 + 5051 ], "category": [ - 1401 + 1466 ], "e_tournament_category": [ - 1398 + 1463 ], "tournament": [ - 5127 + 5411 ], "tournament_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_constraint": {}, "tournament_categories_insert_input": { "category": [ - 1400 + 1465 ], "e_tournament_category": [ - 1406 + 1471 ], "tournament": [ - 5136 + 5420 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_max_fields": { "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_max_order_by": { "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_min_fields": { "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_min_order_by": { "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4760 + 5044 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_on_conflict": { "constraint": [ - 4768 + 5052 ], "update_columns": [ - 4782 + 5066 ], "where": [ - 4767 + 5051 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_order_by": { "category": [ - 3094 + 3373 ], "e_tournament_category": [ - 1408 + 1473 ], "tournament": [ - 5138 + 5422 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_pk_columns_input": { "category": [ - 1400 + 1465 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_select_column": {}, "tournament_categories_set_input": { "category": [ - 1400 + 1465 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_stream_cursor_input": { "initial_value": [ - 4781 + 5065 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_stream_cursor_value_input": { "category": [ - 1400 + 1465 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_categories_update_column": {}, "tournament_categories_updates": { "_set": [ - 4779 + 5063 ], "where": [ - 4767 + 5051 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams": { "created_at": [ - 4670 + 4954 ], "team": [ - 4621 + 4905 ], "team_id": [ - 5170 + 5454 ], "tournament": [ - 5106 + 5390 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_aggregate": { "aggregate": [ - 4788 + 5072 ], "nodes": [ - 4784 + 5068 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_aggregate_bool_exp": { "count": [ - 4787 + 5071 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_aggregate_bool_exp_count": { "arguments": [ - 4802 + 5086 ], "distinct": [ - 5 + 6 ], "filter": [ - 4791 + 5075 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 4802, + 5086, "[tournament_organizer_teams_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4794 + 5078 ], "min": [ - 4796 + 5080 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_aggregate_order_by": { "count": [ - 3094 + 3373 ], "max": [ - 4795 + 5079 ], "min": [ - 4797 + 5081 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_arr_rel_insert_input": { "data": [ - 4793 + 5077 ], "on_conflict": [ - 4799 + 5083 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_bool_exp": { "_and": [ - 4791 + 5075 ], "_not": [ - 4791 + 5075 ], "_or": [ - 4791 + 5075 ], "created_at": [ - 4671 + 4955 ], "team": [ - 4632 + 4916 ], "team_id": [ - 5172 + 5456 ], "tournament": [ - 5127 + 5411 ], "tournament_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_constraint": {}, "tournament_organizer_teams_insert_input": { "created_at": [ - 4670 + 4954 ], "team": [ - 4641 + 4925 ], "team_id": [ - 5170 + 5454 ], "tournament": [ - 5136 + 5420 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_max_fields": { "created_at": [ - 4670 + 4954 ], "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_max_order_by": { "created_at": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_min_fields": { "created_at": [ - 4670 + 4954 ], "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_min_order_by": { "created_at": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4784 + 5068 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_on_conflict": { "constraint": [ - 4792 + 5076 ], "update_columns": [ - 4806 + 5090 ], "where": [ - 4791 + 5075 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_order_by": { "created_at": [ - 3094 + 3373 ], "team": [ - 4643 + 4927 ], "team_id": [ - 3094 + 3373 ], "tournament": [ - 5138 + 5422 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_pk_columns_input": { "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_select_column": {}, "tournament_organizer_teams_set_input": { "created_at": [ - 4670 + 4954 ], "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_stream_cursor_input": { "initial_value": [ - 4805 + 5089 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_organizer_teams_update_column": {}, "tournament_organizer_teams_updates": { "_set": [ - 4803 + 5087 ], "where": [ - 4791 + 5075 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers": { "organization_team": [ - 4621 + 4905 ], "organization_team_id": [ - 5170 + 5454 ], "organizer": [ - 4052 + 4331 ], "steam_id": [ - 264 + 269 ], "tournament": [ - 5106 + 5390 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_aggregate": { "aggregate": [ - 4812 + 5096 ], "nodes": [ - 4808 + 5092 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4811 + 5095 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4829 + 5113 ], "distinct": [ - 5 + 6 ], "filter": [ - 4817 + 5101 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_aggregate_fields": { "avg": [ - 4815 + 5099 ], "count": [ - 40, + 41, { "columns": [ - 4829, + 5113, "[tournament_organizers_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4821 + 5105 ], "min": [ - 4823 + 5107 ], "stddev": [ - 4831 + 5115 ], "stddev_pop": [ - 4833 + 5117 ], "stddev_samp": [ - 4835 + 5119 ], "sum": [ - 4839 + 5123 ], "var_pop": [ - 4843 + 5127 ], "var_samp": [ - 4845 + 5129 ], "variance": [ - 4847 + 5131 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4816 + 5100 ], "count": [ - 3094 + 3373 ], "max": [ - 4822 + 5106 ], "min": [ - 4824 + 5108 ], "stddev": [ - 4832 + 5116 ], "stddev_pop": [ - 4834 + 5118 ], "stddev_samp": [ - 4836 + 5120 ], "sum": [ - 4840 + 5124 ], "var_pop": [ - 4844 + 5128 ], "var_samp": [ - 4846 + 5130 ], "variance": [ - 4848 + 5132 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4820 + 5104 ], "on_conflict": [ - 4826 + 5110 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_avg_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_bool_exp": { "_and": [ - 4817 + 5101 ], "_not": [ - 4817 + 5101 ], "_or": [ - 4817 + 5101 ], "organization_team": [ - 4632 + 4916 ], "organization_team_id": [ - 5172 + 5456 ], "organizer": [ - 4056 + 4335 ], "steam_id": [ - 266 + 271 ], "tournament": [ - 5127 + 5411 ], "tournament_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_constraint": {}, "tournament_organizers_inc_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_insert_input": { "organization_team": [ - 4641 + 4925 ], "organization_team_id": [ - 5170 + 5454 ], "organizer": [ - 4063 + 4342 ], "steam_id": [ - 264 + 269 ], "tournament": [ - 5136 + 5420 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_max_fields": { "organization_team_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_max_order_by": { "organization_team_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_min_fields": { "organization_team_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_min_order_by": { "organization_team_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4808 + 5092 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_on_conflict": { "constraint": [ - 4818 + 5102 ], "update_columns": [ - 4841 + 5125 ], "where": [ - 4817 + 5101 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_order_by": { "organization_team": [ - 4643 + 4927 ], "organization_team_id": [ - 3094 + 3373 ], "organizer": [ - 4065 + 4344 ], "steam_id": [ - 3094 + 3373 ], "tournament": [ - 5138 + 5422 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_pk_columns_input": { "steam_id": [ - 264 + 269 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "organization_team_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4838 + 5122 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_stream_cursor_value_input": { "organization_team_id": [ - 5170 + 5454 ], "steam_id": [ - 264 + 269 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_sum_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4819 + 5103 ], "_set": [ - 4830 + 5114 ], "where": [ - 4817 + 5101 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_organizers_variance_order_by": { "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "order": [ - 40 + 41 ], "place": [ - 80 + 84 ], "prize": [ - 80 + 84 ], "tournament": [ - 5106 + 5390 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_aggregate": { "aggregate": [ - 4853 + 5137 ], "nodes": [ - 4849 + 5133 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_aggregate_bool_exp": { "count": [ - 4852 + 5136 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_aggregate_bool_exp_count": { "arguments": [ - 4870 + 5154 ], "distinct": [ - 5 + 6 ], "filter": [ - 4858 + 5142 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_aggregate_fields": { "avg": [ - 4856 + 5140 ], "count": [ - 40, + 41, { "columns": [ - 4870, + 5154, "[tournament_prizes_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4862 + 5146 ], "min": [ - 4864 + 5148 ], "stddev": [ - 4872 + 5156 ], "stddev_pop": [ - 4874 + 5158 ], "stddev_samp": [ - 4876 + 5160 ], "sum": [ - 4880 + 5164 ], "var_pop": [ - 4884 + 5168 ], "var_samp": [ - 4886 + 5170 ], "variance": [ - 4888 + 5172 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_aggregate_order_by": { "avg": [ - 4857 + 5141 ], "count": [ - 3094 + 3373 ], "max": [ - 4863 + 5147 ], "min": [ - 4865 + 5149 ], "stddev": [ - 4873 + 5157 ], "stddev_pop": [ - 4875 + 5159 ], "stddev_samp": [ - 4877 + 5161 ], "sum": [ - 4881 + 5165 ], "var_pop": [ - 4885 + 5169 ], "var_samp": [ - 4887 + 5171 ], "variance": [ - 4889 + 5173 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_arr_rel_insert_input": { "data": [ - 4861 + 5145 ], "on_conflict": [ - 4867 + 5151 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_avg_fields": { "order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_avg_order_by": { "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_bool_exp": { "_and": [ - 4858 + 5142 ], "_not": [ - 4858 + 5142 ], "_or": [ - 4858 + 5142 ], "created_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "order": [ - 41 + 42 ], "place": [ - 82 + 86 ], "prize": [ - 82 + 86 ], "tournament": [ - 5127 + 5411 ], "tournament_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_constraint": {}, "tournament_prizes_inc_input": { "order": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_insert_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "order": [ - 40 + 41 ], "place": [ - 80 + 84 ], "prize": [ - 80 + 84 ], "tournament": [ - 5136 + 5420 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_max_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "order": [ - 40 + 41 ], "place": [ - 80 + 84 ], "prize": [ - 80 + 84 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_max_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "place": [ - 3094 + 3373 ], "prize": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_min_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "order": [ - 40 + 41 ], "place": [ - 80 + 84 ], "prize": [ - 80 + 84 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_min_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "place": [ - 3094 + 3373 ], "prize": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4849 + 5133 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_on_conflict": { "constraint": [ - 4859 + 5143 ], "update_columns": [ - 4882 + 5166 ], "where": [ - 4858 + 5142 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "place": [ - 3094 + 3373 ], "prize": [ - 3094 + 3373 ], "tournament": [ - 5138 + 5422 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_select_column": {}, "tournament_prizes_set_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "order": [ - 40 + 41 ], "place": [ - 80 + 84 ], "prize": [ - 80 + 84 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_stddev_fields": { "order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_stddev_order_by": { "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_stddev_pop_fields": { "order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_stddev_pop_order_by": { "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_stddev_samp_fields": { "order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_stddev_samp_order_by": { "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_stream_cursor_input": { "initial_value": [ - 4879 + 5163 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "order": [ - 40 + 41 ], "place": [ - 80 + 84 ], "prize": [ - 80 + 84 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_sum_fields": { "order": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_sum_order_by": { "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_update_column": {}, "tournament_prizes_updates": { "_inc": [ - 4860 + 5144 ], "_set": [ - 4871 + 5155 ], "where": [ - 4858 + 5142 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_var_pop_fields": { "order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_var_pop_order_by": { "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_var_samp_fields": { "order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_var_samp_order_by": { "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_variance_fields": { "order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_prizes_variance_order_by": { "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows": { "closes_at": [ - 4670 + 4954 ], "created_at": [ - 4670 + 4954 ], "default_match_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "opens_at": [ - 4670 + 4954 ], "round": [ - 40 + 41 ], "stage": [ - 4931 + 5215 ], "tournament_stage_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4894 + 5178 ], "nodes": [ - 4890 + 5174 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4893 + 5177 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4911 + 5195 ], "distinct": [ - 5 + 6 ], "filter": [ - 4899 + 5183 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4897 + 5181 ], "count": [ - 40, + 41, { "columns": [ - 4911, + 5195, "[tournament_stage_windows_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4903 + 5187 ], "min": [ - 4905 + 5189 ], "stddev": [ - 4913 + 5197 ], "stddev_pop": [ - 4915 + 5199 ], "stddev_samp": [ - 4917 + 5201 ], "sum": [ - 4921 + 5205 ], "var_pop": [ - 4925 + 5209 ], "var_samp": [ - 4927 + 5211 ], "variance": [ - 4929 + 5213 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4898 + 5182 ], "count": [ - 3094 + 3373 ], "max": [ - 4904 + 5188 ], "min": [ - 4906 + 5190 ], "stddev": [ - 4914 + 5198 ], "stddev_pop": [ - 4916 + 5200 ], "stddev_samp": [ - 4918 + 5202 ], "sum": [ - 4922 + 5206 ], "var_pop": [ - 4926 + 5210 ], "var_samp": [ - 4928 + 5212 ], "variance": [ - 4930 + 5214 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4902 + 5186 ], "on_conflict": [ - 4908 + 5192 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_avg_fields": { "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_avg_order_by": { "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_bool_exp": { "_and": [ - 4899 + 5183 ], "_not": [ - 4899 + 5183 ], "_or": [ - 4899 + 5183 ], "closes_at": [ - 4671 + 4955 ], "created_at": [ - 4671 + 4955 ], "default_match_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "opens_at": [ - 4671 + 4955 ], "round": [ - 41 + 42 ], "stage": [ - 4943 + 5227 ], "tournament_stage_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_constraint": {}, "tournament_stage_windows_inc_input": { "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4670 + 4954 ], "created_at": [ - 4670 + 4954 ], "default_match_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "opens_at": [ - 4670 + 4954 ], "round": [ - 40 + 41 ], "stage": [ - 4955 + 5239 ], "tournament_stage_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4670 + 4954 ], "created_at": [ - 4670 + 4954 ], "default_match_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "opens_at": [ - 4670 + 4954 ], "round": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "default_match_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "opens_at": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "tournament_stage_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4670 + 4954 ], "created_at": [ - 4670 + 4954 ], "default_match_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "opens_at": [ - 4670 + 4954 ], "round": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "default_match_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "opens_at": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "tournament_stage_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4890 + 5174 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4900 + 5184 ], "update_columns": [ - 4923 + 5207 ], "where": [ - 4899 + 5183 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_order_by": { "closes_at": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "default_match_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "opens_at": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "stage": [ - 4957 + 5241 ], "tournament_stage_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4670 + 4954 ], "created_at": [ - 4670 + 4954 ], "default_match_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "opens_at": [ - 4670 + 4954 ], "round": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_stddev_fields": { "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_stddev_order_by": { "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_stddev_pop_fields": { "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_stddev_samp_fields": { "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4920 + 5204 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4670 + 4954 ], "created_at": [ - 4670 + 4954 ], "default_match_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "opens_at": [ - 4670 + 4954 ], "round": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_sum_fields": { "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_sum_order_by": { "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4901 + 5185 ], "_set": [ - 4912 + 5196 ], "where": [ - 4899 + 5183 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_var_pop_fields": { "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_var_samp_fields": { "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_variance_fields": { "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_stage_windows_variance_order_by": { "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stages": { "brackets": [ - 4714, + 4998, { "distinct_on": [ - 4738, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4736, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5009 ] } ], "brackets_aggregate": [ - 4715, + 4999, { "distinct_on": [ - 4738, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4736, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5009 ] } ], "decider_best_of": [ - 40 + 41 ], "default_best_of": [ - 40 + 41 ], "e_tournament_stage_type": [ - 1416 + 1481 ], "final_map_advantage": [ - 40 + 41 ], "groups": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "max_rounds": [ - 40 + 41 ], "max_teams": [ - 40 + 41 ], "min_teams": [ - 40 + 41 ], "options": [ - 2758 + 3015 ], "order": [ - 40 + 41 ], "results": [ - 5912, + 6196, { "distinct_on": [ - 5944, + 6228, "[v_team_stage_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5942, + 6226, "[v_team_stage_results_order_by!]" ], "where": [ - 5931 + 6215 ] } ], "results_aggregate": [ - 5913, + 6197, { "distinct_on": [ - 5944, + 6228, "[v_team_stage_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5942, + 6226, "[v_team_stage_results_order_by!]" ], "where": [ - 5931 + 6215 ] } ], "settings": [ - 1930, + 2187, { "path": [ - 80 + 84 ] } ], "swiss_no_elimination": [ - 5 + 6 ], "third_place_match": [ - 5 + 6 ], "tournament": [ - 5106 + 5390 ], "tournament_id": [ - 5170 + 5454 ], "type": [ - 1421 + 1486 ], "windows": [ - 4890, + 5174, { "distinct_on": [ - 4911, + 5195, "[tournament_stage_windows_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4909, + 5193, "[tournament_stage_windows_order_by!]" ], "where": [ - 4899 + 5183 ] } ], "windows_aggregate": [ - 4891, + 5175, { "distinct_on": [ - 4911, + 5195, "[tournament_stage_windows_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4909, + 5193, "[tournament_stage_windows_order_by!]" ], "where": [ - 4899 + 5183 ] } ], "__typename": [ - 80 + 84 ] }, "tournament_stages_aggregate": { "aggregate": [ - 4937 + 5221 ], "nodes": [ - 4931 + 5215 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4934 + 5218 ], "bool_or": [ - 4935 + 5219 ], "count": [ - 4936 + 5220 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4961 + 5245 ], "distinct": [ - 5 + 6 ], "filter": [ - 4943 + 5227 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4962 + 5246 ], "distinct": [ - 5 + 6 ], "filter": [ - 4943 + 5227 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4960 + 5244 ], "distinct": [ - 5 + 6 ], "filter": [ - 4943 + 5227 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_aggregate_fields": { "avg": [ - 4941 + 5225 ], "count": [ - 40, + 41, { "columns": [ - 4960, + 5244, "[tournament_stages_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4950 + 5234 ], "min": [ - 4952 + 5236 ], "stddev": [ - 4964 + 5248 ], "stddev_pop": [ - 4966 + 5250 ], "stddev_samp": [ - 4968 + 5252 ], "sum": [ - 4972 + 5256 ], "var_pop": [ - 4976 + 5260 ], "var_samp": [ - 4978 + 5262 ], "variance": [ - 4980 + 5264 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_aggregate_order_by": { "avg": [ - 4942 + 5226 ], "count": [ - 3094 + 3373 ], "max": [ - 4951 + 5235 ], "min": [ - 4953 + 5237 ], "stddev": [ - 4965 + 5249 ], "stddev_pop": [ - 4967 + 5251 ], "stddev_samp": [ - 4969 + 5253 ], "sum": [ - 4973 + 5257 ], "var_pop": [ - 4977 + 5261 ], "var_samp": [ - 4979 + 5263 ], "variance": [ - 4981 + 5265 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_append_input": { "settings": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4949 + 5233 ], "on_conflict": [ - 4956 + 5240 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_avg_fields": { "decider_best_of": [ - 31 + 32 ], "default_best_of": [ - 31 + 32 ], "final_map_advantage": [ - 31 + 32 ], "groups": [ - 31 + 32 ], "max_rounds": [ - 31 + 32 ], "max_teams": [ - 31 + 32 ], "min_teams": [ - 31 + 32 ], "order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 3094 + 3373 ], "default_best_of": [ - 3094 + 3373 ], "final_map_advantage": [ - 3094 + 3373 ], "groups": [ - 3094 + 3373 ], "max_rounds": [ - 3094 + 3373 ], "max_teams": [ - 3094 + 3373 ], "min_teams": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_bool_exp": { "_and": [ - 4943 + 5227 ], "_not": [ - 4943 + 5227 ], "_or": [ - 4943 + 5227 ], "brackets": [ - 4725 + 5009 ], "brackets_aggregate": [ - 4716 + 5000 ], "decider_best_of": [ - 41 + 42 ], "default_best_of": [ - 41 + 42 ], "e_tournament_stage_type": [ - 1419 + 1484 ], "final_map_advantage": [ - 41 + 42 ], "groups": [ - 41 + 42 ], "id": [ - 5172 + 5456 ], "match_options_id": [ - 5172 + 5456 ], "max_rounds": [ - 41 + 42 ], "max_teams": [ - 41 + 42 ], "min_teams": [ - 41 + 42 ], "options": [ - 2762 + 3026 ], "order": [ - 41 + 42 ], "results": [ - 5931 + 6215 ], "results_aggregate": [ - 5914 + 6198 ], "settings": [ - 1932 + 2189 ], "swiss_no_elimination": [ - 6 + 7 ], "third_place_match": [ - 6 + 7 ], "tournament": [ - 5127 + 5411 ], "tournament_id": [ - 5172 + 5456 ], "type": [ - 1422 + 1487 ], "windows": [ - 4899 + 5183 ], "windows_aggregate": [ - 4892 + 5176 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_constraint": {}, "tournament_stages_delete_at_path_input": { "settings": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_delete_elem_input": { "settings": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_delete_key_input": { "settings": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_inc_input": { "decider_best_of": [ - 40 + 41 ], "default_best_of": [ - 40 + 41 ], "final_map_advantage": [ - 40 + 41 ], "groups": [ - 40 + 41 ], "max_rounds": [ - 40 + 41 ], "max_teams": [ - 40 + 41 ], "min_teams": [ - 40 + 41 ], "order": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_insert_input": { "brackets": [ - 4722 + 5006 ], "decider_best_of": [ - 40 + 41 ], "default_best_of": [ - 40 + 41 ], "e_tournament_stage_type": [ - 1427 + 1492 ], "final_map_advantage": [ - 40 + 41 ], "groups": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "max_rounds": [ - 40 + 41 ], "max_teams": [ - 40 + 41 ], "min_teams": [ - 40 + 41 ], "options": [ - 2769 + 3035 ], "order": [ - 40 + 41 ], "results": [ - 5928 + 6212 ], "settings": [ - 1930 + 2187 ], "swiss_no_elimination": [ - 5 + 6 ], "third_place_match": [ - 5 + 6 ], "tournament": [ - 5136 + 5420 ], "tournament_id": [ - 5170 + 5454 ], "type": [ - 1421 + 1486 ], "windows": [ - 4896 + 5180 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_max_fields": { "decider_best_of": [ - 40 + 41 ], "default_best_of": [ - 40 + 41 ], "final_map_advantage": [ - 40 + 41 ], "groups": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "max_rounds": [ - 40 + 41 ], "max_teams": [ - 40 + 41 ], "min_teams": [ - 40 + 41 ], "order": [ - 40 + 41 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_max_order_by": { "decider_best_of": [ - 3094 + 3373 ], "default_best_of": [ - 3094 + 3373 ], "final_map_advantage": [ - 3094 + 3373 ], "groups": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "max_rounds": [ - 3094 + 3373 ], "max_teams": [ - 3094 + 3373 ], "min_teams": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_min_fields": { "decider_best_of": [ - 40 + 41 ], "default_best_of": [ - 40 + 41 ], "final_map_advantage": [ - 40 + 41 ], "groups": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "max_rounds": [ - 40 + 41 ], "max_teams": [ - 40 + 41 ], "min_teams": [ - 40 + 41 ], "order": [ - 40 + 41 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_min_order_by": { "decider_best_of": [ - 3094 + 3373 ], "default_best_of": [ - 3094 + 3373 ], "final_map_advantage": [ - 3094 + 3373 ], "groups": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "max_rounds": [ - 3094 + 3373 ], "max_teams": [ - 3094 + 3373 ], "min_teams": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4931 + 5215 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4949 + 5233 ], "on_conflict": [ - 4956 + 5240 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_on_conflict": { "constraint": [ - 4944 + 5228 ], "update_columns": [ - 4974 + 5258 ], "where": [ - 4943 + 5227 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4721 + 5005 ], "decider_best_of": [ - 3094 + 3373 ], "default_best_of": [ - 3094 + 3373 ], "e_tournament_stage_type": [ - 1429 + 1494 ], "final_map_advantage": [ - 3094 + 3373 ], "groups": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "max_rounds": [ - 3094 + 3373 ], "max_teams": [ - 3094 + 3373 ], "min_teams": [ - 3094 + 3373 ], "options": [ - 2771 + 3037 ], "order": [ - 3094 + 3373 ], "results_aggregate": [ - 5927 + 6211 ], "settings": [ - 3094 + 3373 ], "swiss_no_elimination": [ - 3094 + 3373 ], "third_place_match": [ - 3094 + 3373 ], "tournament": [ - 5138 + 5422 ], "tournament_id": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "windows_aggregate": [ - 4895 + 5179 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_prepend_input": { "settings": [ - 1930 + 2187 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_select_column": {}, @@ -111182,4616 +116618,4616 @@ export default { "tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_stages_set_input": { "decider_best_of": [ - 40 + 41 ], "default_best_of": [ - 40 + 41 ], "final_map_advantage": [ - 40 + 41 ], "groups": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "max_rounds": [ - 40 + 41 ], "max_teams": [ - 40 + 41 ], "min_teams": [ - 40 + 41 ], "order": [ - 40 + 41 ], "settings": [ - 1930 + 2187 ], "swiss_no_elimination": [ - 5 + 6 ], "third_place_match": [ - 5 + 6 ], "tournament_id": [ - 5170 + 5454 ], "type": [ - 1421 + 1486 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_stddev_fields": { "decider_best_of": [ - 31 + 32 ], "default_best_of": [ - 31 + 32 ], "final_map_advantage": [ - 31 + 32 ], "groups": [ - 31 + 32 ], "max_rounds": [ - 31 + 32 ], "max_teams": [ - 31 + 32 ], "min_teams": [ - 31 + 32 ], "order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 3094 + 3373 ], "default_best_of": [ - 3094 + 3373 ], "final_map_advantage": [ - 3094 + 3373 ], "groups": [ - 3094 + 3373 ], "max_rounds": [ - 3094 + 3373 ], "max_teams": [ - 3094 + 3373 ], "min_teams": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_stddev_pop_fields": { "decider_best_of": [ - 31 + 32 ], "default_best_of": [ - 31 + 32 ], "final_map_advantage": [ - 31 + 32 ], "groups": [ - 31 + 32 ], "max_rounds": [ - 31 + 32 ], "max_teams": [ - 31 + 32 ], "min_teams": [ - 31 + 32 ], "order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 3094 + 3373 ], "default_best_of": [ - 3094 + 3373 ], "final_map_advantage": [ - 3094 + 3373 ], "groups": [ - 3094 + 3373 ], "max_rounds": [ - 3094 + 3373 ], "max_teams": [ - 3094 + 3373 ], "min_teams": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_stddev_samp_fields": { "decider_best_of": [ - 31 + 32 ], "default_best_of": [ - 31 + 32 ], "final_map_advantage": [ - 31 + 32 ], "groups": [ - 31 + 32 ], "max_rounds": [ - 31 + 32 ], "max_teams": [ - 31 + 32 ], "min_teams": [ - 31 + 32 ], "order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 3094 + 3373 ], "default_best_of": [ - 3094 + 3373 ], "final_map_advantage": [ - 3094 + 3373 ], "groups": [ - 3094 + 3373 ], "max_rounds": [ - 3094 + 3373 ], "max_teams": [ - 3094 + 3373 ], "min_teams": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4971 + 5255 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_stream_cursor_value_input": { "decider_best_of": [ - 40 + 41 ], "default_best_of": [ - 40 + 41 ], "final_map_advantage": [ - 40 + 41 ], "groups": [ - 40 + 41 ], "id": [ - 5170 + 5454 ], "match_options_id": [ - 5170 + 5454 ], "max_rounds": [ - 40 + 41 ], "max_teams": [ - 40 + 41 ], "min_teams": [ - 40 + 41 ], "order": [ - 40 + 41 ], "settings": [ - 1930 + 2187 ], "swiss_no_elimination": [ - 5 + 6 ], "third_place_match": [ - 5 + 6 ], "tournament_id": [ - 5170 + 5454 ], "type": [ - 1421 + 1486 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_sum_fields": { "decider_best_of": [ - 40 + 41 ], "default_best_of": [ - 40 + 41 ], "final_map_advantage": [ - 40 + 41 ], "groups": [ - 40 + 41 ], "max_rounds": [ - 40 + 41 ], "max_teams": [ - 40 + 41 ], "min_teams": [ - 40 + 41 ], "order": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 3094 + 3373 ], "default_best_of": [ - 3094 + 3373 ], "final_map_advantage": [ - 3094 + 3373 ], "groups": [ - 3094 + 3373 ], "max_rounds": [ - 3094 + 3373 ], "max_teams": [ - 3094 + 3373 ], "min_teams": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4939 + 5223 ], "_delete_at_path": [ - 4945 + 5229 ], "_delete_elem": [ - 4946 + 5230 ], "_delete_key": [ - 4947 + 5231 ], "_inc": [ - 4948 + 5232 ], "_prepend": [ - 4959 + 5243 ], "_set": [ - 4963 + 5247 ], "where": [ - 4943 + 5227 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_var_pop_fields": { "decider_best_of": [ - 31 + 32 ], "default_best_of": [ - 31 + 32 ], "final_map_advantage": [ - 31 + 32 ], "groups": [ - 31 + 32 ], "max_rounds": [ - 31 + 32 ], "max_teams": [ - 31 + 32 ], "min_teams": [ - 31 + 32 ], "order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 3094 + 3373 ], "default_best_of": [ - 3094 + 3373 ], "final_map_advantage": [ - 3094 + 3373 ], "groups": [ - 3094 + 3373 ], "max_rounds": [ - 3094 + 3373 ], "max_teams": [ - 3094 + 3373 ], "min_teams": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_var_samp_fields": { "decider_best_of": [ - 31 + 32 ], "default_best_of": [ - 31 + 32 ], "final_map_advantage": [ - 31 + 32 ], "groups": [ - 31 + 32 ], "max_rounds": [ - 31 + 32 ], "max_teams": [ - 31 + 32 ], "min_teams": [ - 31 + 32 ], "order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 3094 + 3373 ], "default_best_of": [ - 3094 + 3373 ], "final_map_advantage": [ - 3094 + 3373 ], "groups": [ - 3094 + 3373 ], "max_rounds": [ - 3094 + 3373 ], "max_teams": [ - 3094 + 3373 ], "min_teams": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_variance_fields": { "decider_best_of": [ - 31 + 32 ], "default_best_of": [ - 31 + 32 ], "final_map_advantage": [ - 31 + 32 ], "groups": [ - 31 + 32 ], "max_rounds": [ - 31 + 32 ], "max_teams": [ - 31 + 32 ], "min_teams": [ - 31 + 32 ], "order": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 3094 + 3373 ], "default_best_of": [ - 3094 + 3373 ], "final_map_advantage": [ - 3094 + 3373 ], "groups": [ - 3094 + 3373 ], "max_rounds": [ - 3094 + 3373 ], "max_teams": [ - 3094 + 3373 ], "min_teams": [ - 3094 + 3373 ], "order": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "invited_by": [ - 4052 + 4331 ], "invited_by_player_steam_id": [ - 264 + 269 ], "player": [ - 4052 + 4331 ], "steam_id": [ - 264 + 269 ], "team": [ - 5064 + 5348 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_aggregate": { "aggregate": [ - 4986 + 5270 ], "nodes": [ - 4982 + 5266 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4985 + 5269 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 5003 + 5287 ], "distinct": [ - 5 + 6 ], "filter": [ - 4991 + 5275 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4989 + 5273 ], "count": [ - 40, + 41, { "columns": [ - 5003, + 5287, "[tournament_team_invites_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4995 + 5279 ], "min": [ - 4997 + 5281 ], "stddev": [ - 5005 + 5289 ], "stddev_pop": [ - 5007 + 5291 ], "stddev_samp": [ - 5009 + 5293 ], "sum": [ - 5013 + 5297 ], "var_pop": [ - 5017 + 5301 ], "var_samp": [ - 5019 + 5303 ], "variance": [ - 5021 + 5305 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4990 + 5274 ], "count": [ - 3094 + 3373 ], "max": [ - 4996 + 5280 ], "min": [ - 4998 + 5282 ], "stddev": [ - 5006 + 5290 ], "stddev_pop": [ - 5008 + 5292 ], "stddev_samp": [ - 5010 + 5294 ], "sum": [ - 5014 + 5298 ], "var_pop": [ - 5018 + 5302 ], "var_samp": [ - 5020 + 5304 ], "variance": [ - 5022 + 5306 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4994 + 5278 ], "on_conflict": [ - 5000 + 5284 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_avg_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_bool_exp": { "_and": [ - 4991 + 5275 ], "_not": [ - 4991 + 5275 ], "_or": [ - 4991 + 5275 ], "created_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "invited_by": [ - 4056 + 4335 ], "invited_by_player_steam_id": [ - 266 + 271 ], "player": [ - 4056 + 4335 ], "steam_id": [ - 266 + 271 ], "team": [ - 5073 + 5357 ], "tournament_team_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_constraint": {}, "tournament_team_invites_inc_input": { "invited_by_player_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_insert_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "invited_by": [ - 4063 + 4342 ], "invited_by_player_steam_id": [ - 264 + 269 ], "player": [ - 4063 + 4342 ], "steam_id": [ - 264 + 269 ], "team": [ - 5082 + 5366 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_max_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "invited_by_player_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_max_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_min_fields": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "invited_by_player_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_min_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4982 + 5266 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_on_conflict": { "constraint": [ - 4992 + 5276 ], "update_columns": [ - 5015 + 5299 ], "where": [ - 4991 + 5275 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_order_by": { "created_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "invited_by": [ - 4065 + 4344 ], "invited_by_player_steam_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "steam_id": [ - 3094 + 3373 ], "team": [ - 5084 + 5368 ], "tournament_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "invited_by_player_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_stddev_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_stddev_pop_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_stddev_samp_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 5012 + 5296 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "invited_by_player_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_sum_fields": { "invited_by_player_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4993 + 5277 ], "_set": [ - 5004 + 5288 ], "where": [ - 4991 + 5275 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_var_pop_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_var_samp_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_variance_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster": { "e_team_role": [ - 1334 + 1399 ], "player": [ - 4052 + 4331 ], "player_steam_id": [ - 264 + 269 ], "role": [ - 1339 + 1404 ], "tournament": [ - 5106 + 5390 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team": [ - 5064 + 5348 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_aggregate": { "aggregate": [ - 5027 + 5311 ], "nodes": [ - 5023 + 5307 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 5026 + 5310 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 5044 + 5328 ], "distinct": [ - 5 + 6 ], "filter": [ - 5032 + 5316 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_aggregate_fields": { "avg": [ - 5030 + 5314 ], "count": [ - 40, + 41, { "columns": [ - 5044, + 5328, "[tournament_team_roster_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5036 + 5320 ], "min": [ - 5038 + 5322 ], "stddev": [ - 5046 + 5330 ], "stddev_pop": [ - 5048 + 5332 ], "stddev_samp": [ - 5050 + 5334 ], "sum": [ - 5054 + 5338 ], "var_pop": [ - 5058 + 5342 ], "var_samp": [ - 5060 + 5344 ], "variance": [ - 5062 + 5346 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 5031 + 5315 ], "count": [ - 3094 + 3373 ], "max": [ - 5037 + 5321 ], "min": [ - 5039 + 5323 ], "stddev": [ - 5047 + 5331 ], "stddev_pop": [ - 5049 + 5333 ], "stddev_samp": [ - 5051 + 5335 ], "sum": [ - 5055 + 5339 ], "var_pop": [ - 5059 + 5343 ], "var_samp": [ - 5061 + 5345 ], "variance": [ - 5063 + 5347 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 5035 + 5319 ], "on_conflict": [ - 5041 + 5325 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_avg_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_bool_exp": { "_and": [ - 5032 + 5316 ], "_not": [ - 5032 + 5316 ], "_or": [ - 5032 + 5316 ], "e_team_role": [ - 1337 + 1402 ], "player": [ - 4056 + 4335 ], "player_steam_id": [ - 266 + 271 ], "role": [ - 1340 + 1405 ], "tournament": [ - 5127 + 5411 ], "tournament_id": [ - 5172 + 5456 ], "tournament_team": [ - 5073 + 5357 ], "tournament_team_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_constraint": {}, "tournament_team_roster_inc_input": { "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_insert_input": { "e_team_role": [ - 1345 + 1410 ], "player": [ - 4063 + 4342 ], "player_steam_id": [ - 264 + 269 ], "role": [ - 1339 + 1404 ], "tournament": [ - 5136 + 5420 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team": [ - 5082 + 5366 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_max_fields": { "player_steam_id": [ - 264 + 269 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_min_fields": { "player_steam_id": [ - 264 + 269 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5023 + 5307 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_on_conflict": { "constraint": [ - 5033 + 5317 ], "update_columns": [ - 5056 + 5340 ], "where": [ - 5032 + 5316 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_order_by": { "e_team_role": [ - 1347 + 1412 ], "player": [ - 4065 + 4344 ], "player_steam_id": [ - 3094 + 3373 ], "role": [ - 3094 + 3373 ], "tournament": [ - 5138 + 5422 ], "tournament_id": [ - 3094 + 3373 ], "tournament_team": [ - 5084 + 5368 ], "tournament_team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_pk_columns_input": { "player_steam_id": [ - 264 + 269 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_select_column": {}, "tournament_team_roster_set_input": { "player_steam_id": [ - 264 + 269 ], "role": [ - 1339 + 1404 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_stddev_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_stddev_pop_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_stddev_samp_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 5053 + 5337 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_stream_cursor_value_input": { "player_steam_id": [ - 264 + 269 ], "role": [ - 1339 + 1404 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_sum_fields": { "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 5034 + 5318 ], "_set": [ - 5045 + 5329 ], "where": [ - 5032 + 5316 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_var_pop_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_var_samp_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_variance_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_teams": { "can_manage": [ - 5 + 6 ], "captain": [ - 4052 + 4331 ], "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "creator": [ - 4052 + 4331 ], "eligible_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "invites": [ - 4982, + 5266, { "distinct_on": [ - 5003, + 5287, "[tournament_team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5001, + 5285, "[tournament_team_invites_order_by!]" ], "where": [ - 4991 + 5275 ] } ], "invites_aggregate": [ - 4983, + 5267, { "distinct_on": [ - 5003, + 5287, "[tournament_team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5001, + 5285, "[tournament_team_invites_order_by!]" ], "where": [ - 4991 + 5275 ] } ], "name": [ - 80 + 84 ], "owner_steam_id": [ - 264 + 269 ], "results": [ - 5912 + 6196 ], "roster": [ - 5023, + 5307, { "distinct_on": [ - 5044, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5042, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5316 ] } ], "roster_aggregate": [ - 5024, + 5308, { "distinct_on": [ - 5044, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5042, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5316 ] } ], "seed": [ - 40 + 41 ], "short_name": [ - 80 + 84 ], "team": [ - 4621 + 4905 ], "team_id": [ - 5170 + 5454 ], "tournament": [ - 5106 + 5390 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_aggregate": { "aggregate": [ - 5068 + 5352 ], "nodes": [ - 5064 + 5348 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_aggregate_bool_exp": { "count": [ - 5067 + 5351 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 5086 + 5370 ], "distinct": [ - 5 + 6 ], "filter": [ - 5073 + 5357 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_aggregate_fields": { "avg": [ - 5071 + 5355 ], "count": [ - 40, + 41, { "columns": [ - 5086, + 5370, "[tournament_teams_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5077 + 5361 ], "min": [ - 5079 + 5363 ], "stddev": [ - 5088 + 5372 ], "stddev_pop": [ - 5090 + 5374 ], "stddev_samp": [ - 5092 + 5376 ], "sum": [ - 5096 + 5380 ], "var_pop": [ - 5100 + 5384 ], "var_samp": [ - 5102 + 5386 ], "variance": [ - 5104 + 5388 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_aggregate_order_by": { "avg": [ - 5072 + 5356 ], "count": [ - 3094 + 3373 ], "max": [ - 5078 + 5362 ], "min": [ - 5080 + 5364 ], "stddev": [ - 5089 + 5373 ], "stddev_pop": [ - 5091 + 5375 ], "stddev_samp": [ - 5093 + 5377 ], "sum": [ - 5097 + 5381 ], "var_pop": [ - 5101 + 5385 ], "var_samp": [ - 5103 + 5387 ], "variance": [ - 5105 + 5389 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_arr_rel_insert_input": { "data": [ - 5076 + 5360 ], "on_conflict": [ - 5083 + 5367 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_avg_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_bool_exp": { "_and": [ - 5073 + 5357 ], "_not": [ - 5073 + 5357 ], "_or": [ - 5073 + 5357 ], "can_manage": [ - 6 + 7 ], "captain": [ - 4056 + 4335 ], "captain_steam_id": [ - 266 + 271 ], "created_at": [ - 4671 + 4955 ], "creator": [ - 4056 + 4335 ], "eligible_at": [ - 4671 + 4955 ], "id": [ - 5172 + 5456 ], "invites": [ - 4991 + 5275 ], "invites_aggregate": [ - 4984 + 5268 ], "name": [ - 82 + 86 ], "owner_steam_id": [ - 266 + 271 ], "results": [ - 5931 + 6215 ], "roster": [ - 5032 + 5316 ], "roster_aggregate": [ - 5025 + 5309 ], "seed": [ - 41 + 42 ], "short_name": [ - 82 + 86 ], "team": [ - 4632 + 4916 ], "team_id": [ - 5172 + 5456 ], "tournament": [ - 5127 + 5411 ], "tournament_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_constraint": {}, "tournament_teams_inc_input": { "captain_steam_id": [ - 264 + 269 ], "owner_steam_id": [ - 264 + 269 ], "seed": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_insert_input": { "captain": [ - 4063 + 4342 ], "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "creator": [ - 4063 + 4342 ], "eligible_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "invites": [ - 4988 + 5272 ], "name": [ - 80 + 84 ], "owner_steam_id": [ - 264 + 269 ], "results": [ - 5940 + 6224 ], "roster": [ - 5029 + 5313 ], "seed": [ - 40 + 41 ], "short_name": [ - 80 + 84 ], "team": [ - 4641 + 4925 ], "team_id": [ - 5170 + 5454 ], "tournament": [ - 5136 + 5420 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_max_fields": { "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "eligible_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "owner_steam_id": [ - 264 + 269 ], "seed": [ - 40 + 41 ], "short_name": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "eligible_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "short_name": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_min_fields": { "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "eligible_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "owner_steam_id": [ - 264 + 269 ], "seed": [ - 40 + 41 ], "short_name": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "eligible_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "short_name": [ - 3094 + 3373 ], "team_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5064 + 5348 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_obj_rel_insert_input": { "data": [ - 5076 + 5360 ], "on_conflict": [ - 5083 + 5367 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_on_conflict": { "constraint": [ - 5074 + 5358 ], "update_columns": [ - 5098 + 5382 ], "where": [ - 5073 + 5357 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_order_by": { "can_manage": [ - 3094 + 3373 ], "captain": [ - 4065 + 4344 ], "captain_steam_id": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "creator": [ - 4065 + 4344 ], "eligible_at": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "invites_aggregate": [ - 4987 + 5271 ], "name": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "results": [ - 5942 + 6226 ], "roster_aggregate": [ - 5028 + 5312 ], "seed": [ - 3094 + 3373 ], "short_name": [ - 3094 + 3373 ], "team": [ - 4643 + 4927 ], "team_id": [ - 3094 + 3373 ], "tournament": [ - 5138 + 5422 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_select_column": {}, "tournament_teams_set_input": { "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "eligible_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "owner_steam_id": [ - 264 + 269 ], "seed": [ - 40 + 41 ], "short_name": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_stddev_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_stddev_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_stddev_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 5095 + 5379 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_stream_cursor_value_input": { "captain_steam_id": [ - 264 + 269 ], "created_at": [ - 4670 + 4954 ], "eligible_at": [ - 4670 + 4954 ], "id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "owner_steam_id": [ - 264 + 269 ], "seed": [ - 40 + 41 ], "short_name": [ - 80 + 84 ], "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_sum_fields": { "captain_steam_id": [ - 264 + 269 ], "owner_steam_id": [ - 264 + 269 ], "seed": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 5075 + 5359 ], "_set": [ - 5087 + 5371 ], "where": [ - 5073 + 5357 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_var_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_var_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_variance_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 3094 + 3373 ], "owner_steam_id": [ - 3094 + 3373 ], "seed": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournaments": { "admin": [ - 4052 + 4331 ], "auto_start": [ - 5 + 6 ], "award_configs": [ - 4672, + 4956, { "distinct_on": [ - 4694, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4692, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4965 ] } ], "award_configs_aggregate": [ - 4673, + 4957, { "distinct_on": [ - 4694, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4692, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4965 ] } ], "awards": [ - 195, + 200, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "awards_aggregate": [ - 196, + 201, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "awards_enabled": [ - 5 + 6 ], "banner": [ - 80 + 84 ], "can_cancel": [ - 5 + 6 ], "can_close_registration": [ - 5 + 6 ], "can_join": [ - 5 + 6 ], "can_open_registration": [ - 5 + 6 ], "can_pause": [ - 5 + 6 ], "can_resume": [ - 5 + 6 ], "can_setup": [ - 5 + 6 ], "can_start": [ - 5 + 6 ], "categories": [ - 4760, + 5044, { "distinct_on": [ - 4778, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4776, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5051 ] } ], "categories_aggregate": [ - 4761, + 5045, { "distinct_on": [ - 4778, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4776, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5051 ] } ], "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "discord_guild_id": [ - 80 + 84 ], "discord_notifications_enabled": [ - 5 + 6 ], "discord_notify_Canceled": [ - 5 + 6 ], "discord_notify_Finished": [ - 5 + 6 ], "discord_notify_Forfeit": [ - 5 + 6 ], "discord_notify_Live": [ - 5 + 6 ], "discord_notify_MapPaused": [ - 5 + 6 ], "discord_notify_PickingPlayers": [ - 5 + 6 ], "discord_notify_Scheduled": [ - 5 + 6 ], "discord_notify_Surrendered": [ - 5 + 6 ], "discord_notify_Tie": [ - 5 + 6 ], "discord_notify_Veto": [ - 5 + 6 ], "discord_notify_WaitingForCheckIn": [ - 5 + 6 ], "discord_notify_WaitingForServer": [ - 5 + 6 ], "discord_role_id": [ - 80 + 84 ], "discord_voice_enabled": [ - 5 + 6 ], "discord_webhook": [ - 80 + 84 ], "e_tournament_status": [ - 1437 + 1502 ], "has_min_teams": [ - 5 + 6 ], "homepage": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_league": [ - 5 + 6 ], "is_organizer": [ - 5 + 6 ], "joined_tournament": [ - 5 + 6 ], "latitude": [ - 1777 + 1842 ], "league_season_division": [ - 2108 + 2365 ], "location": [ - 80 + 84 ], "logo": [ - 80 + 84 ], "longitude": [ - 1777 + 1842 ], "match_options_id": [ - 5170 + 5454 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "name": [ - 80 + 84 ], "options": [ - 2758 + 3015 ], "organizer_steam_id": [ - 264 + 269 ], "organizer_teams": [ - 4784, + 5068, { "distinct_on": [ - 4802, + 5086, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4800, + 5084, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4791 + 5075 ] } ], "organizer_teams_aggregate": [ - 4785, + 5069, { "distinct_on": [ - 4802, + 5086, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4800, + 5084, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4791 + 5075 ] } ], "organizers": [ - 4808, + 5092, { "distinct_on": [ - 4829, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4827, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5101 ] } ], "organizers_aggregate": [ - 4809, + 5093, { "distinct_on": [ - 4829, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4827, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5101 ] } ], "player_stats": [ - 6023, + 6307, { "distinct_on": [ - 6049, + 6333, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6048, + 6332, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6042 + 6326 ] } ], "player_stats_aggregate": [ - 6024, + 6308, { "distinct_on": [ - 6049, + 6333, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6048, + 6332, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6042 + 6326 ] } ], "prizes": [ - 4849, + 5133, { "distinct_on": [ - 4870, + 5154, "[tournament_prizes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4868, + 5152, "[tournament_prizes_order_by!]" ], "where": [ - 4858 + 5142 ] } ], "prizes_aggregate": [ - 4850, + 5134, { "distinct_on": [ - 4870, + 5154, "[tournament_prizes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4868, + 5152, "[tournament_prizes_order_by!]" ], "where": [ - 4858 + 5142 ] } ], "results": [ - 5972, + 6256, { "distinct_on": [ - 5998, + 6282, "[v_team_tournament_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5997, + 6281, "[v_team_tournament_results_order_by!]" ], "where": [ - 5991 + 6275 ] } ], "results_aggregate": [ - 5973, + 6257, { "distinct_on": [ - 5998, + 6282, "[v_team_tournament_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5997, + 6281, "[v_team_tournament_results_order_by!]" ], "where": [ - 5991 + 6275 ] } ], "rosters": [ - 5023, + 5307, { "distinct_on": [ - 5044, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5042, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5316 ] } ], "rosters_aggregate": [ - 5024, + 5308, { "distinct_on": [ - 5044, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5042, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5316 ] } ], "scheduling_mode": [ - 80 + 84 ], "stages": [ - 4931, + 5215, { "distinct_on": [ - 4960, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4957, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5227 ] } ], "stages_aggregate": [ - 4932, + 5216, { "distinct_on": [ - 4960, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4957, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5227 ] } ], "start": [ - 4670 + 4954 ], "status": [ - 1442 + 1507 ], "teams": [ - 5064, + 5348, { "distinct_on": [ - 5086, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5084, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5357 ] } ], "teams_aggregate": [ - 5065, + 5349, { "distinct_on": [ - 5086, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5084, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5357 ] } ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate": { "aggregate": [ - 5122 + 5406 ], "nodes": [ - 5106 + 5390 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_bool_exp": { "avg": [ - 5109 + 5393 ], "bool_and": [ - 5110 + 5394 ], "bool_or": [ - 5111 + 5395 ], "corr": [ - 5112 + 5396 ], "count": [ - 5114 + 5398 ], "covar_samp": [ - 5115 + 5399 ], "max": [ - 5117 + 5401 ], "min": [ - 5118 + 5402 ], "stddev_samp": [ - 5119 + 5403 ], "sum": [ - 5120 + 5404 ], "var_samp": [ - 5121 + 5405 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_bool_exp_avg": { "arguments": [ - 5141 + 5425 ], "distinct": [ - 5 + 6 ], "filter": [ - 5127 + 5411 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 5142 + 5426 ], "distinct": [ - 5 + 6 ], "filter": [ - 5127 + 5411 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 5143 + 5427 ], "distinct": [ - 5 + 6 ], "filter": [ - 5127 + 5411 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_bool_exp_corr": { "arguments": [ - 5113 + 5397 ], "distinct": [ - 5 + 6 ], "filter": [ - 5127 + 5411 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_bool_exp_corr_arguments": { "X": [ - 5144 + 5428 ], "Y": [ - 5144 + 5428 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 5140 + 5424 ], "distinct": [ - 5 + 6 ], "filter": [ - 5127 + 5411 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_bool_exp_covar_samp": { "arguments": [ - 5116 + 5400 ], "distinct": [ - 5 + 6 ], "filter": [ - 5127 + 5411 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5145 + 5429 ], "Y": [ - 5145 + 5429 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_bool_exp_max": { "arguments": [ - 5146 + 5430 ], "distinct": [ - 5 + 6 ], "filter": [ - 5127 + 5411 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_bool_exp_min": { "arguments": [ - 5147 + 5431 ], "distinct": [ - 5 + 6 ], "filter": [ - 5127 + 5411 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5148 + 5432 ], "distinct": [ - 5 + 6 ], "filter": [ - 5127 + 5411 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_bool_exp_sum": { "arguments": [ - 5149 + 5433 ], "distinct": [ - 5 + 6 ], "filter": [ - 5127 + 5411 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_bool_exp_var_samp": { "arguments": [ - 5150 + 5434 ], "distinct": [ - 5 + 6 ], "filter": [ - 5127 + 5411 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_fields": { "avg": [ - 5125 + 5409 ], "count": [ - 40, + 41, { "columns": [ - 5140, + 5424, "[tournaments_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5131 + 5415 ], "min": [ - 5133 + 5417 ], "stddev": [ - 5152 + 5436 ], "stddev_pop": [ - 5154 + 5438 ], "stddev_samp": [ - 5156 + 5440 ], "sum": [ - 5160 + 5444 ], "var_pop": [ - 5164 + 5448 ], "var_samp": [ - 5166 + 5450 ], "variance": [ - 5168 + 5452 ], "__typename": [ - 80 + 84 ] }, "tournaments_aggregate_order_by": { "avg": [ - 5126 + 5410 ], "count": [ - 3094 + 3373 ], "max": [ - 5132 + 5416 ], "min": [ - 5134 + 5418 ], "stddev": [ - 5153 + 5437 ], "stddev_pop": [ - 5155 + 5439 ], "stddev_samp": [ - 5157 + 5441 ], "sum": [ - 5161 + 5445 ], "var_pop": [ - 5165 + 5449 ], "var_samp": [ - 5167 + 5451 ], "variance": [ - 5169 + 5453 ], "__typename": [ - 80 + 84 ] }, "tournaments_arr_rel_insert_input": { "data": [ - 5130 + 5414 ], "on_conflict": [ - 5137 + 5421 ], "__typename": [ - 80 + 84 ] }, "tournaments_avg_fields": { "latitude": [ - 31 + 32 ], "longitude": [ - 31 + 32 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournaments_avg_order_by": { "latitude": [ - 3094 + 3373 ], "longitude": [ - 3094 + 3373 ], "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournaments_bool_exp": { "_and": [ - 5127 + 5411 ], "_not": [ - 5127 + 5411 ], "_or": [ - 5127 + 5411 ], "admin": [ - 4056 + 4335 ], "auto_start": [ - 6 + 7 ], "award_configs": [ - 4681 + 4965 ], "award_configs_aggregate": [ - 4674 + 4958 ], "awards": [ - 204 + 209 ], "awards_aggregate": [ - 197 + 202 ], "awards_enabled": [ - 6 + 7 ], "banner": [ - 82 + 86 ], "can_cancel": [ - 6 + 7 ], "can_close_registration": [ - 6 + 7 ], "can_join": [ - 6 + 7 ], "can_open_registration": [ - 6 + 7 ], "can_pause": [ - 6 + 7 ], "can_resume": [ - 6 + 7 ], "can_setup": [ - 6 + 7 ], "can_start": [ - 6 + 7 ], "categories": [ - 4767 + 5051 ], "categories_aggregate": [ - 4762 + 5046 ], "created_at": [ - 4671 + 4955 ], "description": [ - 82 + 86 ], "discord_guild_id": [ - 82 + 86 ], "discord_notifications_enabled": [ - 6 + 7 ], "discord_notify_Canceled": [ - 6 + 7 ], "discord_notify_Finished": [ - 6 + 7 ], "discord_notify_Forfeit": [ - 6 + 7 ], "discord_notify_Live": [ - 6 + 7 ], "discord_notify_MapPaused": [ - 6 + 7 ], "discord_notify_PickingPlayers": [ - 6 + 7 ], "discord_notify_Scheduled": [ - 6 + 7 ], "discord_notify_Surrendered": [ - 6 + 7 ], "discord_notify_Tie": [ - 6 + 7 ], "discord_notify_Veto": [ - 6 + 7 ], "discord_notify_WaitingForCheckIn": [ - 6 + 7 ], "discord_notify_WaitingForServer": [ - 6 + 7 ], "discord_role_id": [ - 82 + 86 ], "discord_voice_enabled": [ - 6 + 7 ], "discord_webhook": [ - 82 + 86 ], "e_tournament_status": [ - 1440 + 1505 ], "has_min_teams": [ - 6 + 7 ], "homepage": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "is_league": [ - 6 + 7 ], "is_organizer": [ - 6 + 7 ], "joined_tournament": [ - 6 + 7 ], "latitude": [ - 1778 + 1843 ], "league_season_division": [ - 2115 + 2372 ], "location": [ - 82 + 86 ], "logo": [ - 82 + 86 ], "longitude": [ - 1778 + 1843 ], "match_options_id": [ - 5172 + 5456 ], "max_players_per_lineup": [ - 41 + 42 ], "min_players_per_lineup": [ - 41 + 42 ], "name": [ - 82 + 86 ], "options": [ - 2762 + 3026 ], "organizer_steam_id": [ - 266 + 271 ], "organizer_teams": [ - 4791 + 5075 ], "organizer_teams_aggregate": [ - 4786 + 5070 ], "organizers": [ - 4817 + 5101 ], "organizers_aggregate": [ - 4810 + 5094 ], "player_stats": [ - 6042 + 6326 ], "player_stats_aggregate": [ - 6025 + 6309 ], "prizes": [ - 4858 + 5142 ], "prizes_aggregate": [ - 4851 + 5135 ], "results": [ - 5991 + 6275 ], "results_aggregate": [ - 5974 + 6258 ], "rosters": [ - 5032 + 5316 ], "rosters_aggregate": [ - 5025 + 5309 ], "scheduling_mode": [ - 82 + 86 ], "stages": [ - 4943 + 5227 ], "stages_aggregate": [ - 4933 + 5217 ], "start": [ - 4671 + 4955 ], "status": [ - 1443 + 1508 ], "teams": [ - 5073 + 5357 ], "teams_aggregate": [ - 5066 + 5350 ], "__typename": [ - 80 + 84 ] }, "tournaments_constraint": {}, "tournaments_inc_input": { "latitude": [ - 1777 + 1842 ], "longitude": [ - 1777 + 1842 ], "organizer_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "tournaments_insert_input": { "admin": [ - 4063 + 4342 ], "auto_start": [ - 5 + 6 ], "award_configs": [ - 4678 + 4962 ], "awards": [ - 201 + 206 ], "awards_enabled": [ - 5 + 6 ], "banner": [ - 80 + 84 ], "categories": [ - 4766 + 5050 ], "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "discord_guild_id": [ - 80 + 84 ], "discord_notifications_enabled": [ - 5 + 6 ], "discord_notify_Canceled": [ - 5 + 6 ], "discord_notify_Finished": [ - 5 + 6 ], "discord_notify_Forfeit": [ - 5 + 6 ], "discord_notify_Live": [ - 5 + 6 ], "discord_notify_MapPaused": [ - 5 + 6 ], "discord_notify_PickingPlayers": [ - 5 + 6 ], "discord_notify_Scheduled": [ - 5 + 6 ], "discord_notify_Surrendered": [ - 5 + 6 ], "discord_notify_Tie": [ - 5 + 6 ], "discord_notify_Veto": [ - 5 + 6 ], "discord_notify_WaitingForCheckIn": [ - 5 + 6 ], "discord_notify_WaitingForServer": [ - 5 + 6 ], "discord_role_id": [ - 80 + 84 ], "discord_voice_enabled": [ - 5 + 6 ], "discord_webhook": [ - 80 + 84 ], "e_tournament_status": [ - 1448 + 1513 ], "homepage": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_league": [ - 5 + 6 ], "latitude": [ - 1777 + 1842 ], "league_season_division": [ - 2123 + 2380 ], "location": [ - 80 + 84 ], "logo": [ - 80 + 84 ], "longitude": [ - 1777 + 1842 ], "match_options_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "options": [ - 2769 + 3035 ], "organizer_steam_id": [ - 264 + 269 ], "organizer_teams": [ - 4790 + 5074 ], "organizers": [ - 4814 + 5098 ], "player_stats": [ - 6039 + 6323 ], "prizes": [ - 4855 + 5139 ], "results": [ - 5988 + 6272 ], "rosters": [ - 5029 + 5313 ], "scheduling_mode": [ - 80 + 84 ], "stages": [ - 4940 + 5224 ], "start": [ - 4670 + 4954 ], "status": [ - 1442 + 1507 ], "teams": [ - 5070 + 5354 ], "__typename": [ - 80 + 84 ] }, "tournaments_max_fields": { "banner": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "discord_guild_id": [ - 80 + 84 ], "discord_role_id": [ - 80 + 84 ], "discord_webhook": [ - 80 + 84 ], "homepage": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "latitude": [ - 1777 + 1842 ], "location": [ - 80 + 84 ], "logo": [ - 80 + 84 ], "longitude": [ - 1777 + 1842 ], "match_options_id": [ - 5170 + 5454 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "name": [ - 80 + 84 ], "organizer_steam_id": [ - 264 + 269 ], "scheduling_mode": [ - 80 + 84 ], "start": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "tournaments_max_order_by": { "banner": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "description": [ - 3094 + 3373 ], "discord_guild_id": [ - 3094 + 3373 ], "discord_role_id": [ - 3094 + 3373 ], "discord_webhook": [ - 3094 + 3373 ], "homepage": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "latitude": [ - 3094 + 3373 ], "location": [ - 3094 + 3373 ], "logo": [ - 3094 + 3373 ], "longitude": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "organizer_steam_id": [ - 3094 + 3373 ], "scheduling_mode": [ - 3094 + 3373 ], "start": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournaments_min_fields": { "banner": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "discord_guild_id": [ - 80 + 84 ], "discord_role_id": [ - 80 + 84 ], "discord_webhook": [ - 80 + 84 ], "homepage": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "latitude": [ - 1777 + 1842 ], "location": [ - 80 + 84 ], "logo": [ - 80 + 84 ], "longitude": [ - 1777 + 1842 ], "match_options_id": [ - 5170 + 5454 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "name": [ - 80 + 84 ], "organizer_steam_id": [ - 264 + 269 ], "scheduling_mode": [ - 80 + 84 ], "start": [ - 4670 + 4954 ], "__typename": [ - 80 + 84 ] }, "tournaments_min_order_by": { "banner": [ - 3094 + 3373 ], "created_at": [ - 3094 + 3373 ], "description": [ - 3094 + 3373 ], "discord_guild_id": [ - 3094 + 3373 ], "discord_role_id": [ - 3094 + 3373 ], "discord_webhook": [ - 3094 + 3373 ], "homepage": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "latitude": [ - 3094 + 3373 ], "location": [ - 3094 + 3373 ], "logo": [ - 3094 + 3373 ], "longitude": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "organizer_steam_id": [ - 3094 + 3373 ], "scheduling_mode": [ - 3094 + 3373 ], "start": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournaments_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5106 + 5390 ], "__typename": [ - 80 + 84 ] }, "tournaments_obj_rel_insert_input": { "data": [ - 5130 + 5414 ], "on_conflict": [ - 5137 + 5421 ], "__typename": [ - 80 + 84 ] }, "tournaments_on_conflict": { "constraint": [ - 5128 + 5412 ], "update_columns": [ - 5162 + 5446 ], "where": [ - 5127 + 5411 ], "__typename": [ - 80 + 84 ] }, "tournaments_order_by": { "admin": [ - 4065 + 4344 ], "auto_start": [ - 3094 + 3373 ], "award_configs_aggregate": [ - 4677 + 4961 ], "awards_aggregate": [ - 200 + 205 ], "awards_enabled": [ - 3094 + 3373 ], "banner": [ - 3094 + 3373 ], "can_cancel": [ - 3094 + 3373 ], "can_close_registration": [ - 3094 + 3373 ], "can_join": [ - 3094 + 3373 ], "can_open_registration": [ - 3094 + 3373 ], "can_pause": [ - 3094 + 3373 ], "can_resume": [ - 3094 + 3373 ], "can_setup": [ - 3094 + 3373 ], "can_start": [ - 3094 + 3373 ], "categories_aggregate": [ - 4765 + 5049 ], "created_at": [ - 3094 + 3373 ], "description": [ - 3094 + 3373 ], "discord_guild_id": [ - 3094 + 3373 ], "discord_notifications_enabled": [ - 3094 + 3373 ], "discord_notify_Canceled": [ - 3094 + 3373 ], "discord_notify_Finished": [ - 3094 + 3373 ], "discord_notify_Forfeit": [ - 3094 + 3373 ], "discord_notify_Live": [ - 3094 + 3373 ], "discord_notify_MapPaused": [ - 3094 + 3373 ], "discord_notify_PickingPlayers": [ - 3094 + 3373 ], "discord_notify_Scheduled": [ - 3094 + 3373 ], "discord_notify_Surrendered": [ - 3094 + 3373 ], "discord_notify_Tie": [ - 3094 + 3373 ], "discord_notify_Veto": [ - 3094 + 3373 ], "discord_notify_WaitingForCheckIn": [ - 3094 + 3373 ], "discord_notify_WaitingForServer": [ - 3094 + 3373 ], "discord_role_id": [ - 3094 + 3373 ], "discord_voice_enabled": [ - 3094 + 3373 ], "discord_webhook": [ - 3094 + 3373 ], "e_tournament_status": [ - 1450 + 1515 ], "has_min_teams": [ - 3094 + 3373 ], "homepage": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "is_league": [ - 3094 + 3373 ], "is_organizer": [ - 3094 + 3373 ], "joined_tournament": [ - 3094 + 3373 ], "latitude": [ - 3094 + 3373 ], "league_season_division": [ - 2125 + 2382 ], "location": [ - 3094 + 3373 ], "logo": [ - 3094 + 3373 ], "longitude": [ - 3094 + 3373 ], "match_options_id": [ - 3094 + 3373 ], "max_players_per_lineup": [ - 3094 + 3373 ], "min_players_per_lineup": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "options": [ - 2771 + 3037 ], "organizer_steam_id": [ - 3094 + 3373 ], "organizer_teams_aggregate": [ - 4789 + 5073 ], "organizers_aggregate": [ - 4813 + 5097 ], "player_stats_aggregate": [ - 6038 + 6322 ], "prizes_aggregate": [ - 4854 + 5138 ], "results_aggregate": [ - 5987 + 6271 ], "rosters_aggregate": [ - 5028 + 5312 ], "scheduling_mode": [ - 3094 + 3373 ], "stages_aggregate": [ - 4938 + 5222 ], "start": [ - 3094 + 3373 ], "status": [ - 3094 + 3373 ], "teams_aggregate": [ - 5069 + 5353 ], "__typename": [ - 80 + 84 ] }, "tournaments_pk_columns_input": { "id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "tournaments_select_column": {}, @@ -115807,1215 +121243,1215 @@ export default { "tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns": {}, "tournaments_set_input": { "auto_start": [ - 5 + 6 ], "awards_enabled": [ - 5 + 6 ], "banner": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "discord_guild_id": [ - 80 + 84 ], "discord_notifications_enabled": [ - 5 + 6 ], "discord_notify_Canceled": [ - 5 + 6 ], "discord_notify_Finished": [ - 5 + 6 ], "discord_notify_Forfeit": [ - 5 + 6 ], "discord_notify_Live": [ - 5 + 6 ], "discord_notify_MapPaused": [ - 5 + 6 ], "discord_notify_PickingPlayers": [ - 5 + 6 ], "discord_notify_Scheduled": [ - 5 + 6 ], "discord_notify_Surrendered": [ - 5 + 6 ], "discord_notify_Tie": [ - 5 + 6 ], "discord_notify_Veto": [ - 5 + 6 ], "discord_notify_WaitingForCheckIn": [ - 5 + 6 ], "discord_notify_WaitingForServer": [ - 5 + 6 ], "discord_role_id": [ - 80 + 84 ], "discord_voice_enabled": [ - 5 + 6 ], "discord_webhook": [ - 80 + 84 ], "homepage": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_league": [ - 5 + 6 ], "latitude": [ - 1777 + 1842 ], "location": [ - 80 + 84 ], "logo": [ - 80 + 84 ], "longitude": [ - 1777 + 1842 ], "match_options_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "organizer_steam_id": [ - 264 + 269 ], "scheduling_mode": [ - 80 + 84 ], "start": [ - 4670 + 4954 ], "status": [ - 1442 + 1507 ], "__typename": [ - 80 + 84 ] }, "tournaments_stddev_fields": { "latitude": [ - 31 + 32 ], "longitude": [ - 31 + 32 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournaments_stddev_order_by": { "latitude": [ - 3094 + 3373 ], "longitude": [ - 3094 + 3373 ], "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournaments_stddev_pop_fields": { "latitude": [ - 31 + 32 ], "longitude": [ - 31 + 32 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournaments_stddev_pop_order_by": { "latitude": [ - 3094 + 3373 ], "longitude": [ - 3094 + 3373 ], "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournaments_stddev_samp_fields": { "latitude": [ - 31 + 32 ], "longitude": [ - 31 + 32 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournaments_stddev_samp_order_by": { "latitude": [ - 3094 + 3373 ], "longitude": [ - 3094 + 3373 ], "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournaments_stream_cursor_input": { "initial_value": [ - 5159 + 5443 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "tournaments_stream_cursor_value_input": { "auto_start": [ - 5 + 6 ], "awards_enabled": [ - 5 + 6 ], "banner": [ - 80 + 84 ], "created_at": [ - 4670 + 4954 ], "description": [ - 80 + 84 ], "discord_guild_id": [ - 80 + 84 ], "discord_notifications_enabled": [ - 5 + 6 ], "discord_notify_Canceled": [ - 5 + 6 ], "discord_notify_Finished": [ - 5 + 6 ], "discord_notify_Forfeit": [ - 5 + 6 ], "discord_notify_Live": [ - 5 + 6 ], "discord_notify_MapPaused": [ - 5 + 6 ], "discord_notify_PickingPlayers": [ - 5 + 6 ], "discord_notify_Scheduled": [ - 5 + 6 ], "discord_notify_Surrendered": [ - 5 + 6 ], "discord_notify_Tie": [ - 5 + 6 ], "discord_notify_Veto": [ - 5 + 6 ], "discord_notify_WaitingForCheckIn": [ - 5 + 6 ], "discord_notify_WaitingForServer": [ - 5 + 6 ], "discord_role_id": [ - 80 + 84 ], "discord_voice_enabled": [ - 5 + 6 ], "discord_webhook": [ - 80 + 84 ], "homepage": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "is_league": [ - 5 + 6 ], "latitude": [ - 1777 + 1842 ], "location": [ - 80 + 84 ], "logo": [ - 80 + 84 ], "longitude": [ - 1777 + 1842 ], "match_options_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "organizer_steam_id": [ - 264 + 269 ], "scheduling_mode": [ - 80 + 84 ], "start": [ - 4670 + 4954 ], "status": [ - 1442 + 1507 ], "__typename": [ - 80 + 84 ] }, "tournaments_sum_fields": { "latitude": [ - 1777 + 1842 ], "longitude": [ - 1777 + 1842 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "tournaments_sum_order_by": { "latitude": [ - 3094 + 3373 ], "longitude": [ - 3094 + 3373 ], "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 5129 + 5413 ], "_set": [ - 5151 + 5435 ], "where": [ - 5127 + 5411 ], "__typename": [ - 80 + 84 ] }, "tournaments_var_pop_fields": { "latitude": [ - 31 + 32 ], "longitude": [ - 31 + 32 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournaments_var_pop_order_by": { "latitude": [ - 3094 + 3373 ], "longitude": [ - 3094 + 3373 ], "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournaments_var_samp_fields": { "latitude": [ - 31 + 32 ], "longitude": [ - 31 + 32 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournaments_var_samp_order_by": { "latitude": [ - 3094 + 3373 ], "longitude": [ - 3094 + 3373 ], "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "tournaments_variance_fields": { "latitude": [ - 31 + 32 ], "longitude": [ - 31 + 32 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "tournaments_variance_order_by": { "latitude": [ - 3094 + 3373 ], "longitude": [ - 3094 + 3373 ], "organizer_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 5170 + 5454 ], "_contains": [ - 5170 + 5454 ], "_eq": [ - 5170 + 5454 ], "_gt": [ - 5170 + 5454 ], "_gte": [ - 5170 + 5454 ], "_in": [ - 5170 + 5454 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 5170 + 5454 ], "_lte": [ - 5170 + 5454 ], "_neq": [ - 5170 + 5454 ], "_nin": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "uuid_comparison_exp": { "_eq": [ - 5170 + 5454 ], "_gt": [ - 5170 + 5454 ], "_gte": [ - 5170 + 5454 ], "_in": [ - 5170 + 5454 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 5170 + 5454 ], "_lte": [ - 5170 + 5454 ], "_neq": [ - 5170 + 5454 ], "_nin": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "event": [ - 1749 + 1814 ], "event_id": [ - 5170 + 5454 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player": [ - 4052 + 4331 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate": { "aggregate": [ - 5187 + 5471 ], "nodes": [ - 5173 + 5457 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate_bool_exp": { "avg": [ - 5176 + 5460 ], "corr": [ - 5177 + 5461 ], "count": [ - 5179 + 5463 ], "covar_samp": [ - 5180 + 5464 ], "max": [ - 5182 + 5466 ], "min": [ - 5183 + 5467 ], "stddev_samp": [ - 5184 + 5468 ], "sum": [ - 5185 + 5469 ], "var_samp": [ - 5186 + 5470 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5200 + 5484 ], "distinct": [ - 5 + 6 ], "filter": [ - 5192 + 5476 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5178 + 5462 ], "distinct": [ - 5 + 6 ], "filter": [ - 5192 + 5476 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5201 + 5485 ], "Y": [ - 5201 + 5485 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5199 + 5483 ], "distinct": [ - 5 + 6 ], "filter": [ - 5192 + 5476 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5181 + 5465 ], "distinct": [ - 5 + 6 ], "filter": [ - 5192 + 5476 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5202 + 5486 ], "Y": [ - 5202 + 5486 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5203 + 5487 ], "distinct": [ - 5 + 6 ], "filter": [ - 5192 + 5476 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5204 + 5488 ], "distinct": [ - 5 + 6 ], "filter": [ - 5192 + 5476 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5205 + 5489 ], "distinct": [ - 5 + 6 ], "filter": [ - 5192 + 5476 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5206 + 5490 ], "distinct": [ - 5 + 6 ], "filter": [ - 5192 + 5476 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5207 + 5491 ], "distinct": [ - 5 + 6 ], "filter": [ - 5192 + 5476 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate_fields": { "avg": [ - 5190 + 5474 ], "count": [ - 40, + 41, { "columns": [ - 5199, + 5483, "[v_event_player_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5194 + 5478 ], "min": [ - 5196 + 5480 ], "stddev": [ - 5208 + 5492 ], "stddev_pop": [ - 5210 + 5494 ], "stddev_samp": [ - 5212 + 5496 ], "sum": [ - 5216 + 5500 ], "var_pop": [ - 5218 + 5502 ], "var_samp": [ - 5220 + 5504 ], "variance": [ - 5222 + 5506 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_aggregate_order_by": { "avg": [ - 5191 + 5475 ], "count": [ - 3094 + 3373 ], "max": [ - 5195 + 5479 ], "min": [ - 5197 + 5481 ], "stddev": [ - 5209 + 5493 ], "stddev_pop": [ - 5211 + 5495 ], "stddev_samp": [ - 5213 + 5497 ], "sum": [ - 5217 + 5501 ], "var_pop": [ - 5219 + 5503 ], "var_samp": [ - 5221 + 5505 ], "variance": [ - 5223 + 5507 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_arr_rel_insert_input": { "data": [ - 5193 + 5477 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_avg_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_avg_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_bool_exp": { "_and": [ - 5192 + 5476 ], "_not": [ - 5192 + 5476 ], "_or": [ - 5192 + 5476 ], "assists": [ - 41 + 42 ], "deaths": [ - 41 + 42 ], "event": [ - 1753 + 1818 ], "event_id": [ - 5172 + 5456 ], "headshot_percentage": [ - 1778 + 1843 ], "headshots": [ - 41 + 42 ], "kdr": [ - 1778 + 1843 ], "kills": [ - 41 + 42 ], "matches_played": [ - 41 + 42 ], "player": [ - 4056 + 4335 ], "player_steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_insert_input": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "event": [ - 1760 + 1825 ], "event_id": [ - 5170 + 5454 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player": [ - 4063 + 4342 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_max_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "event_id": [ - 5170 + 5454 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_max_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "event_id": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_min_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "event_id": [ - 5170 + 5454 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_min_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "event_id": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "event": [ - 1762 + 1827 ], "event_id": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_select_column": {}, @@ -117029,3195 +122465,3195 @@ export default { "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, "v_event_player_stats_stddev_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_stddev_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_stddev_pop_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_stddev_pop_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_stddev_samp_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_stddev_samp_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 5215 + 5499 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_stream_cursor_value_input": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "event_id": [ - 5170 + 5454 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_sum_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_sum_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_var_pop_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_var_pop_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_var_samp_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_var_samp_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_variance_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_event_player_stats_variance_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status": { "demo_free_gpu_nodes": [ - 40 + 41 ], "demo_in_progress": [ - 5 + 6 ], "demo_total_gpu_nodes": [ - 40 + 41 ], "free_gpu_nodes": [ - 40 + 41 ], "free_gpu_nodes_for_batch": [ - 40 + 41 ], "highlights_in_progress": [ - 5 + 6 ], "id": [ - 40 + 41 ], "live_in_progress": [ - 5 + 6 ], "registered_gpu_nodes": [ - 40 + 41 ], "rendering_total_gpu_nodes": [ - 40 + 41 ], "renders_paused_for_active_match": [ - 5 + 6 ], "streaming_free_gpu_nodes": [ - 40 + 41 ], "streaming_total_gpu_nodes": [ - 40 + 41 ], "total_gpu_nodes": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 5226 + 5510 ], "nodes": [ - 5224 + 5508 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 5227 + 5511 ], "count": [ - 40, + 41, { "columns": [ - 5232, + 5516, "[v_gpu_pool_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5229 + 5513 ], "min": [ - 5230 + 5514 ], "stddev": [ - 5233 + 5517 ], "stddev_pop": [ - 5234 + 5518 ], "stddev_samp": [ - 5235 + 5519 ], "sum": [ - 5238 + 5522 ], "var_pop": [ - 5239 + 5523 ], "var_samp": [ - 5240 + 5524 ], "variance": [ - 5241 + 5525 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_avg_fields": { "demo_free_gpu_nodes": [ - 31 + 32 ], "demo_total_gpu_nodes": [ - 31 + 32 ], "free_gpu_nodes": [ - 31 + 32 ], "free_gpu_nodes_for_batch": [ - 31 + 32 ], "id": [ - 31 + 32 ], "registered_gpu_nodes": [ - 31 + 32 ], "rendering_total_gpu_nodes": [ - 31 + 32 ], "streaming_free_gpu_nodes": [ - 31 + 32 ], "streaming_total_gpu_nodes": [ - 31 + 32 ], "total_gpu_nodes": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_bool_exp": { "_and": [ - 5228 + 5512 ], "_not": [ - 5228 + 5512 ], "_or": [ - 5228 + 5512 ], "demo_free_gpu_nodes": [ - 41 + 42 ], "demo_in_progress": [ - 6 + 7 ], "demo_total_gpu_nodes": [ - 41 + 42 ], "free_gpu_nodes": [ - 41 + 42 ], "free_gpu_nodes_for_batch": [ - 41 + 42 ], "highlights_in_progress": [ - 6 + 7 ], "id": [ - 41 + 42 ], "live_in_progress": [ - 6 + 7 ], "registered_gpu_nodes": [ - 41 + 42 ], "rendering_total_gpu_nodes": [ - 41 + 42 ], "renders_paused_for_active_match": [ - 6 + 7 ], "streaming_free_gpu_nodes": [ - 41 + 42 ], "streaming_total_gpu_nodes": [ - 41 + 42 ], "total_gpu_nodes": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_max_fields": { "demo_free_gpu_nodes": [ - 40 + 41 ], "demo_total_gpu_nodes": [ - 40 + 41 ], "free_gpu_nodes": [ - 40 + 41 ], "free_gpu_nodes_for_batch": [ - 40 + 41 ], "id": [ - 40 + 41 ], "registered_gpu_nodes": [ - 40 + 41 ], "rendering_total_gpu_nodes": [ - 40 + 41 ], "streaming_free_gpu_nodes": [ - 40 + 41 ], "streaming_total_gpu_nodes": [ - 40 + 41 ], "total_gpu_nodes": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_min_fields": { "demo_free_gpu_nodes": [ - 40 + 41 ], "demo_total_gpu_nodes": [ - 40 + 41 ], "free_gpu_nodes": [ - 40 + 41 ], "free_gpu_nodes_for_batch": [ - 40 + 41 ], "id": [ - 40 + 41 ], "registered_gpu_nodes": [ - 40 + 41 ], "rendering_total_gpu_nodes": [ - 40 + 41 ], "streaming_free_gpu_nodes": [ - 40 + 41 ], "streaming_total_gpu_nodes": [ - 40 + 41 ], "total_gpu_nodes": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 3094 + 3373 ], "demo_in_progress": [ - 3094 + 3373 ], "demo_total_gpu_nodes": [ - 3094 + 3373 ], "free_gpu_nodes": [ - 3094 + 3373 ], "free_gpu_nodes_for_batch": [ - 3094 + 3373 ], "highlights_in_progress": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "live_in_progress": [ - 3094 + 3373 ], "registered_gpu_nodes": [ - 3094 + 3373 ], "rendering_total_gpu_nodes": [ - 3094 + 3373 ], "renders_paused_for_active_match": [ - 3094 + 3373 ], "streaming_free_gpu_nodes": [ - 3094 + 3373 ], "streaming_total_gpu_nodes": [ - 3094 + 3373 ], "total_gpu_nodes": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_select_column": {}, "v_gpu_pool_status_stddev_fields": { "demo_free_gpu_nodes": [ - 31 + 32 ], "demo_total_gpu_nodes": [ - 31 + 32 ], "free_gpu_nodes": [ - 31 + 32 ], "free_gpu_nodes_for_batch": [ - 31 + 32 ], "id": [ - 31 + 32 ], "registered_gpu_nodes": [ - 31 + 32 ], "rendering_total_gpu_nodes": [ - 31 + 32 ], "streaming_free_gpu_nodes": [ - 31 + 32 ], "streaming_total_gpu_nodes": [ - 31 + 32 ], "total_gpu_nodes": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_stddev_pop_fields": { "demo_free_gpu_nodes": [ - 31 + 32 ], "demo_total_gpu_nodes": [ - 31 + 32 ], "free_gpu_nodes": [ - 31 + 32 ], "free_gpu_nodes_for_batch": [ - 31 + 32 ], "id": [ - 31 + 32 ], "registered_gpu_nodes": [ - 31 + 32 ], "rendering_total_gpu_nodes": [ - 31 + 32 ], "streaming_free_gpu_nodes": [ - 31 + 32 ], "streaming_total_gpu_nodes": [ - 31 + 32 ], "total_gpu_nodes": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_stddev_samp_fields": { "demo_free_gpu_nodes": [ - 31 + 32 ], "demo_total_gpu_nodes": [ - 31 + 32 ], "free_gpu_nodes": [ - 31 + 32 ], "free_gpu_nodes_for_batch": [ - 31 + 32 ], "id": [ - 31 + 32 ], "registered_gpu_nodes": [ - 31 + 32 ], "rendering_total_gpu_nodes": [ - 31 + 32 ], "streaming_free_gpu_nodes": [ - 31 + 32 ], "streaming_total_gpu_nodes": [ - 31 + 32 ], "total_gpu_nodes": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 5237 + 5521 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_stream_cursor_value_input": { "demo_free_gpu_nodes": [ - 40 + 41 ], "demo_in_progress": [ - 5 + 6 ], "demo_total_gpu_nodes": [ - 40 + 41 ], "free_gpu_nodes": [ - 40 + 41 ], "free_gpu_nodes_for_batch": [ - 40 + 41 ], "highlights_in_progress": [ - 5 + 6 ], "id": [ - 40 + 41 ], "live_in_progress": [ - 5 + 6 ], "registered_gpu_nodes": [ - 40 + 41 ], "rendering_total_gpu_nodes": [ - 40 + 41 ], "renders_paused_for_active_match": [ - 5 + 6 ], "streaming_free_gpu_nodes": [ - 40 + 41 ], "streaming_total_gpu_nodes": [ - 40 + 41 ], "total_gpu_nodes": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_sum_fields": { "demo_free_gpu_nodes": [ - 40 + 41 ], "demo_total_gpu_nodes": [ - 40 + 41 ], "free_gpu_nodes": [ - 40 + 41 ], "free_gpu_nodes_for_batch": [ - 40 + 41 ], "id": [ - 40 + 41 ], "registered_gpu_nodes": [ - 40 + 41 ], "rendering_total_gpu_nodes": [ - 40 + 41 ], "streaming_free_gpu_nodes": [ - 40 + 41 ], "streaming_total_gpu_nodes": [ - 40 + 41 ], "total_gpu_nodes": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_var_pop_fields": { "demo_free_gpu_nodes": [ - 31 + 32 ], "demo_total_gpu_nodes": [ - 31 + 32 ], "free_gpu_nodes": [ - 31 + 32 ], "free_gpu_nodes_for_batch": [ - 31 + 32 ], "id": [ - 31 + 32 ], "registered_gpu_nodes": [ - 31 + 32 ], "rendering_total_gpu_nodes": [ - 31 + 32 ], "streaming_free_gpu_nodes": [ - 31 + 32 ], "streaming_total_gpu_nodes": [ - 31 + 32 ], "total_gpu_nodes": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_var_samp_fields": { "demo_free_gpu_nodes": [ - 31 + 32 ], "demo_total_gpu_nodes": [ - 31 + 32 ], "free_gpu_nodes": [ - 31 + 32 ], "free_gpu_nodes_for_batch": [ - 31 + 32 ], "id": [ - 31 + 32 ], "registered_gpu_nodes": [ - 31 + 32 ], "rendering_total_gpu_nodes": [ - 31 + 32 ], "streaming_free_gpu_nodes": [ - 31 + 32 ], "streaming_total_gpu_nodes": [ - 31 + 32 ], "total_gpu_nodes": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_gpu_pool_status_variance_fields": { "demo_free_gpu_nodes": [ - 31 + 32 ], "demo_total_gpu_nodes": [ - 31 + 32 ], "free_gpu_nodes": [ - 31 + 32 ], "free_gpu_nodes_for_batch": [ - 31 + 32 ], "id": [ - 31 + 32 ], "registered_gpu_nodes": [ - 31 + 32 ], "rendering_total_gpu_nodes": [ - 31 + 32 ], "streaming_free_gpu_nodes": [ - 31 + 32 ], "streaming_total_gpu_nodes": [ - 31 + 32 ], "total_gpu_nodes": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "league_division_id": [ - 5170 + 5454 ], "league_season_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team": [ - 2290 + 2547 ], "league_team_id": [ - 5170 + 5454 ], "league_team_season_id": [ - 5170 + 5454 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "round_diff": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "season_division": [ - 2108 + 2365 ], "team_season": [ - 2248 + 2505 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_aggregate": { "aggregate": [ - 5246 + 5530 ], "nodes": [ - 5242 + 5526 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 5245 + 5529 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 5258 + 5542 ], "distinct": [ - 5 + 6 ], "filter": [ - 5251 + 5535 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_aggregate_fields": { "avg": [ - 5249 + 5533 ], "count": [ - 40, + 41, { "columns": [ - 5258, + 5542, "[v_league_division_standings_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5253 + 5537 ], "min": [ - 5255 + 5539 ], "stddev": [ - 5259 + 5543 ], "stddev_pop": [ - 5261 + 5545 ], "stddev_samp": [ - 5263 + 5547 ], "sum": [ - 5267 + 5551 ], "var_pop": [ - 5269 + 5553 ], "var_samp": [ - 5271 + 5555 ], "variance": [ - 5273 + 5557 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 5250 + 5534 ], "count": [ - 3094 + 3373 ], "max": [ - 5254 + 5538 ], "min": [ - 5256 + 5540 ], "stddev": [ - 5260 + 5544 ], "stddev_pop": [ - 5262 + 5546 ], "stddev_samp": [ - 5264 + 5548 ], "sum": [ - 5268 + 5552 ], "var_pop": [ - 5270 + 5554 ], "var_samp": [ - 5272 + 5556 ], "variance": [ - 5274 + 5558 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 5252 + 5536 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_avg_fields": { "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "round_diff": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "round_diff": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_bool_exp": { "_and": [ - 5251 + 5535 ], "_not": [ - 5251 + 5535 ], "_or": [ - 5251 + 5535 ], "head_to_head_match_wins": [ - 41 + 42 ], "head_to_head_rounds_won": [ - 41 + 42 ], "league_division_id": [ - 5172 + 5456 ], "league_season_division_id": [ - 5172 + 5456 ], "league_season_id": [ - 5172 + 5456 ], "league_team": [ - 2293 + 2550 ], "league_team_id": [ - 5172 + 5456 ], "league_team_season_id": [ - 5172 + 5456 ], "losses": [ - 41 + 42 ], "maps_lost": [ - 41 + 42 ], "maps_won": [ - 41 + 42 ], "matches_played": [ - 41 + 42 ], "matches_remaining": [ - 41 + 42 ], "rank": [ - 41 + 42 ], "round_diff": [ - 41 + 42 ], "rounds_lost": [ - 41 + 42 ], "rounds_won": [ - 41 + 42 ], "season_division": [ - 2115 + 2372 ], "team_season": [ - 2257 + 2514 ], "tournament_team_id": [ - 5172 + 5456 ], "wins": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_insert_input": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "league_division_id": [ - 5170 + 5454 ], "league_season_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team": [ - 2299 + 2556 ], "league_team_id": [ - 5170 + 5454 ], "league_team_season_id": [ - 5170 + 5454 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "round_diff": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "season_division": [ - 2123 + 2380 ], "team_season": [ - 2266 + 2523 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_max_fields": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "league_division_id": [ - 5170 + 5454 ], "league_season_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team_id": [ - 5170 + 5454 ], "league_team_season_id": [ - 5170 + 5454 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "round_diff": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "league_division_id": [ - 3094 + 3373 ], "league_season_division_id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "league_team_id": [ - 3094 + 3373 ], "league_team_season_id": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "round_diff": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_min_fields": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "league_division_id": [ - 5170 + 5454 ], "league_season_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team_id": [ - 5170 + 5454 ], "league_team_season_id": [ - 5170 + 5454 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "round_diff": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "league_division_id": [ - 3094 + 3373 ], "league_season_division_id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "league_team_id": [ - 3094 + 3373 ], "league_team_season_id": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "round_diff": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "league_division_id": [ - 3094 + 3373 ], "league_season_division_id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "league_team": [ - 2301 + 2558 ], "league_team_id": [ - 3094 + 3373 ], "league_team_season_id": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "round_diff": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "season_division": [ - 2125 + 2382 ], "team_season": [ - 2268 + 2525 ], "tournament_team_id": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_select_column": {}, "v_league_division_standings_stddev_fields": { "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "round_diff": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "round_diff": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_stddev_pop_fields": { "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "round_diff": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "round_diff": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_stddev_samp_fields": { "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "round_diff": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "round_diff": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 5266 + 5550 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_stream_cursor_value_input": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "league_division_id": [ - 5170 + 5454 ], "league_season_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team_id": [ - 5170 + 5454 ], "league_team_season_id": [ - 5170 + 5454 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "round_diff": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_sum_fields": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "round_diff": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "round_diff": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_var_pop_fields": { "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "round_diff": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "round_diff": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_var_samp_fields": { "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "round_diff": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "round_diff": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_variance_fields": { "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "round_diff": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "round_diff": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "league_division_id": [ - 5170 + 5454 ], "league_season_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team": [ - 2290 + 2547 ], "league_team_id": [ - 5170 + 5454 ], "league_team_season_id": [ - 5170 + 5454 ], "matches_played": [ - 40 + 41 ], "player": [ - 4052 + 4331 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 5289 + 5573 ], "nodes": [ - 5275 + 5559 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 5278 + 5562 ], "corr": [ - 5279 + 5563 ], "count": [ - 5281 + 5565 ], "covar_samp": [ - 5282 + 5566 ], "max": [ - 5284 + 5568 ], "min": [ - 5285 + 5569 ], "stddev_samp": [ - 5286 + 5570 ], "sum": [ - 5287 + 5571 ], "var_samp": [ - 5288 + 5572 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5302 + 5586 ], "distinct": [ - 5 + 6 ], "filter": [ - 5294 + 5578 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5280 + 5564 ], "distinct": [ - 5 + 6 ], "filter": [ - 5294 + 5578 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5303 + 5587 ], "Y": [ - 5303 + 5587 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5301 + 5585 ], "distinct": [ - 5 + 6 ], "filter": [ - 5294 + 5578 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5283 + 5567 ], "distinct": [ - 5 + 6 ], "filter": [ - 5294 + 5578 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5304 + 5588 ], "Y": [ - 5304 + 5588 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5305 + 5589 ], "distinct": [ - 5 + 6 ], "filter": [ - 5294 + 5578 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5306 + 5590 ], "distinct": [ - 5 + 6 ], "filter": [ - 5294 + 5578 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5307 + 5591 ], "distinct": [ - 5 + 6 ], "filter": [ - 5294 + 5578 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5308 + 5592 ], "distinct": [ - 5 + 6 ], "filter": [ - 5294 + 5578 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5309 + 5593 ], "distinct": [ - 5 + 6 ], "filter": [ - 5294 + 5578 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 5292 + 5576 ], "count": [ - 40, + 41, { "columns": [ - 5301, + 5585, "[v_league_season_player_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5296 + 5580 ], "min": [ - 5298 + 5582 ], "stddev": [ - 5310 + 5594 ], "stddev_pop": [ - 5312 + 5596 ], "stddev_samp": [ - 5314 + 5598 ], "sum": [ - 5318 + 5602 ], "var_pop": [ - 5320 + 5604 ], "var_samp": [ - 5322 + 5606 ], "variance": [ - 5324 + 5608 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 5293 + 5577 ], "count": [ - 3094 + 3373 ], "max": [ - 5297 + 5581 ], "min": [ - 5299 + 5583 ], "stddev": [ - 5311 + 5595 ], "stddev_pop": [ - 5313 + 5597 ], "stddev_samp": [ - 5315 + 5599 ], "sum": [ - 5319 + 5603 ], "var_pop": [ - 5321 + 5605 ], "var_samp": [ - 5323 + 5607 ], "variance": [ - 5325 + 5609 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 5295 + 5579 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_avg_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_bool_exp": { "_and": [ - 5294 + 5578 ], "_not": [ - 5294 + 5578 ], "_or": [ - 5294 + 5578 ], "assists": [ - 41 + 42 ], "deaths": [ - 41 + 42 ], "headshot_percentage": [ - 1778 + 1843 ], "headshots": [ - 41 + 42 ], "kdr": [ - 1778 + 1843 ], "kills": [ - 41 + 42 ], "league_division_id": [ - 5172 + 5456 ], "league_season_division_id": [ - 5172 + 5456 ], "league_season_id": [ - 5172 + 5456 ], "league_team": [ - 2293 + 2550 ], "league_team_id": [ - 5172 + 5456 ], "league_team_season_id": [ - 5172 + 5456 ], "matches_played": [ - 41 + 42 ], "player": [ - 4056 + 4335 ], "player_steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_insert_input": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "league_division_id": [ - 5170 + 5454 ], "league_season_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team": [ - 2299 + 2556 ], "league_team_id": [ - 5170 + 5454 ], "league_team_season_id": [ - 5170 + 5454 ], "matches_played": [ - 40 + 41 ], "player": [ - 4063 + 4342 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_max_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "league_division_id": [ - 5170 + 5454 ], "league_season_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team_id": [ - 5170 + 5454 ], "league_team_season_id": [ - 5170 + 5454 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_max_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "league_division_id": [ - 3094 + 3373 ], "league_season_division_id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "league_team_id": [ - 3094 + 3373 ], "league_team_season_id": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_min_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "league_division_id": [ - 5170 + 5454 ], "league_season_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team_id": [ - 5170 + 5454 ], "league_team_season_id": [ - 5170 + 5454 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_min_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "league_division_id": [ - 3094 + 3373 ], "league_season_division_id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "league_team_id": [ - 3094 + 3373 ], "league_team_season_id": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "league_division_id": [ - 3094 + 3373 ], "league_season_division_id": [ - 3094 + 3373 ], "league_season_id": [ - 3094 + 3373 ], "league_team": [ - 2301 + 2558 ], "league_team_id": [ - 3094 + 3373 ], "league_team_season_id": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_select_column": {}, @@ -120231,6512 +125667,6512 @@ export default { "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, "v_league_season_player_stats_stddev_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_stddev_pop_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_stddev_samp_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 5317 + 5601 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_stream_cursor_value_input": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "league_division_id": [ - 5170 + 5454 ], "league_season_division_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "league_team_id": [ - 5170 + 5454 ], "league_team_season_id": [ - 5170 + 5454 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_sum_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_var_pop_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_var_samp_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_variance_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_captains": { "captain": [ - 5 + 6 ], "discord_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "lineup": [ - 2554 + 2811 ], "match_lineup_id": [ - 5170 + 5454 ], "placeholder_name": [ - 80 + 84 ], "player": [ - 4052 + 4331 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_aggregate": { "aggregate": [ - 5328 + 5612 ], "nodes": [ - 5326 + 5610 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_aggregate_fields": { "avg": [ - 5329 + 5613 ], "count": [ - 40, + 41, { "columns": [ - 5338, + 5622, "[v_match_captains_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5333 + 5617 ], "min": [ - 5334 + 5618 ], "stddev": [ - 5340 + 5624 ], "stddev_pop": [ - 5341 + 5625 ], "stddev_samp": [ - 5342 + 5626 ], "sum": [ - 5345 + 5629 ], "var_pop": [ - 5347 + 5631 ], "var_samp": [ - 5348 + 5632 ], "variance": [ - 5349 + 5633 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_bool_exp": { "_and": [ - 5330 + 5614 ], "_not": [ - 5330 + 5614 ], "_or": [ - 5330 + 5614 ], "captain": [ - 6 + 7 ], "discord_id": [ - 82 + 86 ], "id": [ - 5172 + 5456 ], "lineup": [ - 2563 + 2820 ], "match_lineup_id": [ - 5172 + 5456 ], "placeholder_name": [ - 82 + 86 ], "player": [ - 4056 + 4335 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_inc_input": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_insert_input": { "captain": [ - 5 + 6 ], "discord_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "lineup": [ - 2572 + 2829 ], "match_lineup_id": [ - 5170 + 5454 ], "placeholder_name": [ - 80 + 84 ], "player": [ - 4063 + 4342 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_max_fields": { "discord_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "placeholder_name": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_min_fields": { "discord_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "placeholder_name": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5326 + 5610 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_obj_rel_insert_input": { "data": [ - 5332 + 5616 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_order_by": { "captain": [ - 3094 + 3373 ], "discord_id": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "lineup": [ - 2574 + 2831 ], "match_lineup_id": [ - 3094 + 3373 ], "placeholder_name": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_select_column": {}, "v_match_captains_set_input": { "captain": [ - 5 + 6 ], "discord_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "placeholder_name": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 5344 + 5628 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_stream_cursor_value_input": { "captain": [ - 5 + 6 ], "discord_id": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "placeholder_name": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_updates": { "_inc": [ - 5331 + 5615 ], "_set": [ - 5339 + 5623 ], "where": [ - 5330 + 5614 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_captains_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches": { "against_count": [ - 40 + 41 ], "clutcher": [ - 4052 + 4331 ], "clutcher_steam_id": [ - 264 + 269 ], "kills_in_clutch": [ - 40 + 41 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_lineup": [ - 2554 + 2811 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "outcome": [ - 80 + 84 ], "round": [ - 40 + 41 ], "side": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_aggregate": { "aggregate": [ - 5354 + 5638 ], "nodes": [ - 5350 + 5634 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 5353 + 5637 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 5366 + 5650 ], "distinct": [ - 5 + 6 ], "filter": [ - 5359 + 5643 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_aggregate_fields": { "avg": [ - 5357 + 5641 ], "count": [ - 40, + 41, { "columns": [ - 5366, + 5650, "[v_match_clutches_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5361 + 5645 ], "min": [ - 5363 + 5647 ], "stddev": [ - 5367 + 5651 ], "stddev_pop": [ - 5369 + 5653 ], "stddev_samp": [ - 5371 + 5655 ], "sum": [ - 5375 + 5659 ], "var_pop": [ - 5377 + 5661 ], "var_samp": [ - 5379 + 5663 ], "variance": [ - 5381 + 5665 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_aggregate_order_by": { "avg": [ - 5358 + 5642 ], "count": [ - 3094 + 3373 ], "max": [ - 5362 + 5646 ], "min": [ - 5364 + 5648 ], "stddev": [ - 5368 + 5652 ], "stddev_pop": [ - 5370 + 5654 ], "stddev_samp": [ - 5372 + 5656 ], "sum": [ - 5376 + 5660 ], "var_pop": [ - 5378 + 5662 ], "var_samp": [ - 5380 + 5664 ], "variance": [ - 5382 + 5666 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 5360 + 5644 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_avg_fields": { "against_count": [ - 31 + 32 ], "clutcher_steam_id": [ - 31 + 32 ], "kills_in_clutch": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_avg_order_by": { "against_count": [ - 3094 + 3373 ], "clutcher_steam_id": [ - 3094 + 3373 ], "kills_in_clutch": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_bool_exp": { "_and": [ - 5359 + 5643 ], "_not": [ - 5359 + 5643 ], "_or": [ - 5359 + 5643 ], "against_count": [ - 41 + 42 ], "clutcher": [ - 4056 + 4335 ], "clutcher_steam_id": [ - 266 + 271 ], "kills_in_clutch": [ - 41 + 42 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_lineup": [ - 2563 + 2820 ], "match_lineup_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "outcome": [ - 82 + 86 ], "round": [ - 41 + 42 ], "side": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_insert_input": { "against_count": [ - 40 + 41 ], "clutcher": [ - 4063 + 4342 ], "clutcher_steam_id": [ - 264 + 269 ], "kills_in_clutch": [ - 40 + 41 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_lineup": [ - 2572 + 2829 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "outcome": [ - 80 + 84 ], "round": [ - 40 + 41 ], "side": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_max_fields": { "against_count": [ - 40 + 41 ], "clutcher_steam_id": [ - 264 + 269 ], "kills_in_clutch": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "outcome": [ - 80 + 84 ], "round": [ - 40 + 41 ], "side": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_max_order_by": { "against_count": [ - 3094 + 3373 ], "clutcher_steam_id": [ - 3094 + 3373 ], "kills_in_clutch": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_lineup_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "outcome": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "side": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_min_fields": { "against_count": [ - 40 + 41 ], "clutcher_steam_id": [ - 264 + 269 ], "kills_in_clutch": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "outcome": [ - 80 + 84 ], "round": [ - 40 + 41 ], "side": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_min_order_by": { "against_count": [ - 3094 + 3373 ], "clutcher_steam_id": [ - 3094 + 3373 ], "kills_in_clutch": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_lineup_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "outcome": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "side": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_order_by": { "against_count": [ - 3094 + 3373 ], "clutcher": [ - 4065 + 4344 ], "clutcher_steam_id": [ - 3094 + 3373 ], "kills_in_clutch": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_lineup": [ - 2574 + 2831 ], "match_lineup_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "outcome": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "side": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_select_column": {}, "v_match_clutches_stddev_fields": { "against_count": [ - 31 + 32 ], "clutcher_steam_id": [ - 31 + 32 ], "kills_in_clutch": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_stddev_order_by": { "against_count": [ - 3094 + 3373 ], "clutcher_steam_id": [ - 3094 + 3373 ], "kills_in_clutch": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_stddev_pop_fields": { "against_count": [ - 31 + 32 ], "clutcher_steam_id": [ - 31 + 32 ], "kills_in_clutch": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 3094 + 3373 ], "clutcher_steam_id": [ - 3094 + 3373 ], "kills_in_clutch": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_stddev_samp_fields": { "against_count": [ - 31 + 32 ], "clutcher_steam_id": [ - 31 + 32 ], "kills_in_clutch": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 3094 + 3373 ], "clutcher_steam_id": [ - 3094 + 3373 ], "kills_in_clutch": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 5374 + 5658 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_stream_cursor_value_input": { "against_count": [ - 40 + 41 ], "clutcher_steam_id": [ - 264 + 269 ], "kills_in_clutch": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "outcome": [ - 80 + 84 ], "round": [ - 40 + 41 ], "side": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_sum_fields": { "against_count": [ - 40 + 41 ], "clutcher_steam_id": [ - 264 + 269 ], "kills_in_clutch": [ - 40 + 41 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_sum_order_by": { "against_count": [ - 3094 + 3373 ], "clutcher_steam_id": [ - 3094 + 3373 ], "kills_in_clutch": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_var_pop_fields": { "against_count": [ - 31 + 32 ], "clutcher_steam_id": [ - 31 + 32 ], "kills_in_clutch": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 3094 + 3373 ], "clutcher_steam_id": [ - 3094 + 3373 ], "kills_in_clutch": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_var_samp_fields": { "against_count": [ - 31 + 32 ], "clutcher_steam_id": [ - 31 + 32 ], "kills_in_clutch": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 3094 + 3373 ], "clutcher_steam_id": [ - 3094 + 3373 ], "kills_in_clutch": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_variance_fields": { "against_count": [ - 31 + 32 ], "clutcher_steam_id": [ - 31 + 32 ], "kills_in_clutch": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_clutches_variance_order_by": { "against_count": [ - 3094 + 3373 ], "clutcher_steam_id": [ - 3094 + 3373 ], "kills_in_clutch": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs": { "killer_side": [ - 80 + 84 ], "killer_steam_id": [ - 264 + 269 ], "kills": [ - 40 + 41 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "victim_side": [ - 80 + 84 ], "victim_steam_id": [ - 264 + 269 ], "weapon": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 5385 + 5669 ], "nodes": [ - 5383 + 5667 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 5386 + 5670 ], "count": [ - 40, + 41, { "columns": [ - 5391, + 5675, "[v_match_kill_pairs_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5388 + 5672 ], "min": [ - 5389 + 5673 ], "stddev": [ - 5392 + 5676 ], "stddev_pop": [ - 5393 + 5677 ], "stddev_samp": [ - 5394 + 5678 ], "sum": [ - 5397 + 5681 ], "var_pop": [ - 5398 + 5682 ], "var_samp": [ - 5399 + 5683 ], "variance": [ - 5400 + 5684 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_avg_fields": { "killer_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "victim_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_bool_exp": { "_and": [ - 5387 + 5671 ], "_not": [ - 5387 + 5671 ], "_or": [ - 5387 + 5671 ], "killer_side": [ - 82 + 86 ], "killer_steam_id": [ - 266 + 271 ], "kills": [ - 41 + 42 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "victim_side": [ - 82 + 86 ], "victim_steam_id": [ - 266 + 271 ], "weapon": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_max_fields": { "killer_side": [ - 80 + 84 ], "killer_steam_id": [ - 264 + 269 ], "kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "victim_side": [ - 80 + 84 ], "victim_steam_id": [ - 264 + 269 ], "weapon": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_min_fields": { "killer_side": [ - 80 + 84 ], "killer_steam_id": [ - 264 + 269 ], "kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "victim_side": [ - 80 + 84 ], "victim_steam_id": [ - 264 + 269 ], "weapon": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_order_by": { "killer_side": [ - 3094 + 3373 ], "killer_steam_id": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "victim_side": [ - 3094 + 3373 ], "victim_steam_id": [ - 3094 + 3373 ], "weapon": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_select_column": {}, "v_match_kill_pairs_stddev_fields": { "killer_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "victim_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_stddev_pop_fields": { "killer_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "victim_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_stddev_samp_fields": { "killer_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "victim_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 5396 + 5680 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_stream_cursor_value_input": { "killer_side": [ - 80 + 84 ], "killer_steam_id": [ - 264 + 269 ], "kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "victim_side": [ - 80 + 84 ], "victim_steam_id": [ - 264 + 269 ], "weapon": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_sum_fields": { "killer_steam_id": [ - 264 + 269 ], "kills": [ - 40 + 41 ], "victim_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_var_pop_fields": { "killer_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "victim_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_var_samp_fields": { "killer_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "victim_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_kill_pairs_variance_fields": { "killer_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "victim_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types": { "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_lineup": [ - 2554 + 2811 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "matchup": [ - 80 + 84 ], "rounds": [ - 40 + 41 ], "side": [ - 80 + 84 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 5403 + 5687 ], "nodes": [ - 5401 + 5685 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 5404 + 5688 ], "count": [ - 40, + 41, { "columns": [ - 5409, + 5693, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5406 + 5690 ], "min": [ - 5407 + 5691 ], "stddev": [ - 5410 + 5694 ], "stddev_pop": [ - 5411 + 5695 ], "stddev_samp": [ - 5412 + 5696 ], "sum": [ - 5415 + 5699 ], "var_pop": [ - 5416 + 5700 ], "var_samp": [ - 5417 + 5701 ], "variance": [ - 5418 + 5702 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_avg_fields": { "rounds": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 5405 + 5689 ], "_not": [ - 5405 + 5689 ], "_or": [ - 5405 + 5689 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_lineup": [ - 2563 + 2820 ], "match_lineup_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "matchup": [ - 82 + 86 ], "rounds": [ - 41 + 42 ], "side": [ - 82 + 86 ], "wins": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "matchup": [ - 80 + 84 ], "rounds": [ - 40 + 41 ], "side": [ - 80 + 84 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "matchup": [ - 80 + 84 ], "rounds": [ - 40 + 41 ], "side": [ - 80 + 84 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_order_by": { "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_lineup": [ - 2574 + 2831 ], "match_lineup_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "matchup": [ - 3094 + 3373 ], "rounds": [ - 3094 + 3373 ], "side": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_select_column": {}, "v_match_lineup_buy_types_stddev_fields": { "rounds": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_stddev_pop_fields": { "rounds": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_stddev_samp_fields": { "rounds": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 5414 + 5698 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "matchup": [ - 80 + 84 ], "rounds": [ - 40 + 41 ], "side": [ - 80 + 84 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_sum_fields": { "rounds": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_var_pop_fields": { "rounds": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_var_samp_fields": { "rounds": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_buy_types_variance_fields": { "rounds": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats": { "man_adv_rounds": [ - 40 + 41 ], "man_adv_wins": [ - 40 + 41 ], "man_dis_rounds": [ - 40 + 41 ], "man_dis_wins": [ - 40 + 41 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_lineup": [ - 2554 + 2811 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "opening_attempts": [ - 40 + 41 ], "opening_wins": [ - 40 + 41 ], "pistol_rounds": [ - 40 + 41 ], "pistol_wins": [ - 40 + 41 ], "round_wins": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "side": [ - 80 + 84 ], "won_buy_eco": [ - 40 + 41 ], "won_buy_force": [ - 40 + 41 ], "won_buy_full": [ - 40 + 41 ], "won_buy_pistol": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 5421 + 5705 ], "nodes": [ - 5419 + 5703 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 5422 + 5706 ], "count": [ - 40, + 41, { "columns": [ - 5427, + 5711, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5424 + 5708 ], "min": [ - 5425 + 5709 ], "stddev": [ - 5428 + 5712 ], "stddev_pop": [ - 5429 + 5713 ], "stddev_samp": [ - 5430 + 5714 ], "sum": [ - 5433 + 5717 ], "var_pop": [ - 5434 + 5718 ], "var_samp": [ - 5435 + 5719 ], "variance": [ - 5436 + 5720 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_avg_fields": { "man_adv_rounds": [ - 31 + 32 ], "man_adv_wins": [ - 31 + 32 ], "man_dis_rounds": [ - 31 + 32 ], "man_dis_wins": [ - 31 + 32 ], "opening_attempts": [ - 31 + 32 ], "opening_wins": [ - 31 + 32 ], "pistol_rounds": [ - 31 + 32 ], "pistol_wins": [ - 31 + 32 ], "round_wins": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "won_buy_eco": [ - 31 + 32 ], "won_buy_force": [ - 31 + 32 ], "won_buy_full": [ - 31 + 32 ], "won_buy_pistol": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 5423 + 5707 ], "_not": [ - 5423 + 5707 ], "_or": [ - 5423 + 5707 ], "man_adv_rounds": [ - 41 + 42 ], "man_adv_wins": [ - 41 + 42 ], "man_dis_rounds": [ - 41 + 42 ], "man_dis_wins": [ - 41 + 42 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_lineup": [ - 2563 + 2820 ], "match_lineup_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "opening_attempts": [ - 41 + 42 ], "opening_wins": [ - 41 + 42 ], "pistol_rounds": [ - 41 + 42 ], "pistol_wins": [ - 41 + 42 ], "round_wins": [ - 41 + 42 ], "rounds": [ - 41 + 42 ], "side": [ - 82 + 86 ], "won_buy_eco": [ - 41 + 42 ], "won_buy_force": [ - 41 + 42 ], "won_buy_full": [ - 41 + 42 ], "won_buy_pistol": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_max_fields": { "man_adv_rounds": [ - 40 + 41 ], "man_adv_wins": [ - 40 + 41 ], "man_dis_rounds": [ - 40 + 41 ], "man_dis_wins": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "opening_attempts": [ - 40 + 41 ], "opening_wins": [ - 40 + 41 ], "pistol_rounds": [ - 40 + 41 ], "pistol_wins": [ - 40 + 41 ], "round_wins": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "side": [ - 80 + 84 ], "won_buy_eco": [ - 40 + 41 ], "won_buy_force": [ - 40 + 41 ], "won_buy_full": [ - 40 + 41 ], "won_buy_pistol": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_min_fields": { "man_adv_rounds": [ - 40 + 41 ], "man_adv_wins": [ - 40 + 41 ], "man_dis_rounds": [ - 40 + 41 ], "man_dis_wins": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "opening_attempts": [ - 40 + 41 ], "opening_wins": [ - 40 + 41 ], "pistol_rounds": [ - 40 + 41 ], "pistol_wins": [ - 40 + 41 ], "round_wins": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "side": [ - 80 + 84 ], "won_buy_eco": [ - 40 + 41 ], "won_buy_force": [ - 40 + 41 ], "won_buy_full": [ - 40 + 41 ], "won_buy_pistol": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 3094 + 3373 ], "man_adv_wins": [ - 3094 + 3373 ], "man_dis_rounds": [ - 3094 + 3373 ], "man_dis_wins": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_lineup": [ - 2574 + 2831 ], "match_lineup_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "opening_attempts": [ - 3094 + 3373 ], "opening_wins": [ - 3094 + 3373 ], "pistol_rounds": [ - 3094 + 3373 ], "pistol_wins": [ - 3094 + 3373 ], "round_wins": [ - 3094 + 3373 ], "rounds": [ - 3094 + 3373 ], "side": [ - 3094 + 3373 ], "won_buy_eco": [ - 3094 + 3373 ], "won_buy_force": [ - 3094 + 3373 ], "won_buy_full": [ - 3094 + 3373 ], "won_buy_pistol": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_select_column": {}, "v_match_lineup_map_stats_stddev_fields": { "man_adv_rounds": [ - 31 + 32 ], "man_adv_wins": [ - 31 + 32 ], "man_dis_rounds": [ - 31 + 32 ], "man_dis_wins": [ - 31 + 32 ], "opening_attempts": [ - 31 + 32 ], "opening_wins": [ - 31 + 32 ], "pistol_rounds": [ - 31 + 32 ], "pistol_wins": [ - 31 + 32 ], "round_wins": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "won_buy_eco": [ - 31 + 32 ], "won_buy_force": [ - 31 + 32 ], "won_buy_full": [ - 31 + 32 ], "won_buy_pistol": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_stddev_pop_fields": { "man_adv_rounds": [ - 31 + 32 ], "man_adv_wins": [ - 31 + 32 ], "man_dis_rounds": [ - 31 + 32 ], "man_dis_wins": [ - 31 + 32 ], "opening_attempts": [ - 31 + 32 ], "opening_wins": [ - 31 + 32 ], "pistol_rounds": [ - 31 + 32 ], "pistol_wins": [ - 31 + 32 ], "round_wins": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "won_buy_eco": [ - 31 + 32 ], "won_buy_force": [ - 31 + 32 ], "won_buy_full": [ - 31 + 32 ], "won_buy_pistol": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_stddev_samp_fields": { "man_adv_rounds": [ - 31 + 32 ], "man_adv_wins": [ - 31 + 32 ], "man_dis_rounds": [ - 31 + 32 ], "man_dis_wins": [ - 31 + 32 ], "opening_attempts": [ - 31 + 32 ], "opening_wins": [ - 31 + 32 ], "pistol_rounds": [ - 31 + 32 ], "pistol_wins": [ - 31 + 32 ], "round_wins": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "won_buy_eco": [ - 31 + 32 ], "won_buy_force": [ - 31 + 32 ], "won_buy_full": [ - 31 + 32 ], "won_buy_pistol": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 5432 + 5716 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_stream_cursor_value_input": { "man_adv_rounds": [ - 40 + 41 ], "man_adv_wins": [ - 40 + 41 ], "man_dis_rounds": [ - 40 + 41 ], "man_dis_wins": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "opening_attempts": [ - 40 + 41 ], "opening_wins": [ - 40 + 41 ], "pistol_rounds": [ - 40 + 41 ], "pistol_wins": [ - 40 + 41 ], "round_wins": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "side": [ - 80 + 84 ], "won_buy_eco": [ - 40 + 41 ], "won_buy_force": [ - 40 + 41 ], "won_buy_full": [ - 40 + 41 ], "won_buy_pistol": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_sum_fields": { "man_adv_rounds": [ - 40 + 41 ], "man_adv_wins": [ - 40 + 41 ], "man_dis_rounds": [ - 40 + 41 ], "man_dis_wins": [ - 40 + 41 ], "opening_attempts": [ - 40 + 41 ], "opening_wins": [ - 40 + 41 ], "pistol_rounds": [ - 40 + 41 ], "pistol_wins": [ - 40 + 41 ], "round_wins": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "won_buy_eco": [ - 40 + 41 ], "won_buy_force": [ - 40 + 41 ], "won_buy_full": [ - 40 + 41 ], "won_buy_pistol": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_var_pop_fields": { "man_adv_rounds": [ - 31 + 32 ], "man_adv_wins": [ - 31 + 32 ], "man_dis_rounds": [ - 31 + 32 ], "man_dis_wins": [ - 31 + 32 ], "opening_attempts": [ - 31 + 32 ], "opening_wins": [ - 31 + 32 ], "pistol_rounds": [ - 31 + 32 ], "pistol_wins": [ - 31 + 32 ], "round_wins": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "won_buy_eco": [ - 31 + 32 ], "won_buy_force": [ - 31 + 32 ], "won_buy_full": [ - 31 + 32 ], "won_buy_pistol": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_var_samp_fields": { "man_adv_rounds": [ - 31 + 32 ], "man_adv_wins": [ - 31 + 32 ], "man_dis_rounds": [ - 31 + 32 ], "man_dis_wins": [ - 31 + 32 ], "opening_attempts": [ - 31 + 32 ], "opening_wins": [ - 31 + 32 ], "pistol_rounds": [ - 31 + 32 ], "pistol_wins": [ - 31 + 32 ], "round_wins": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "won_buy_eco": [ - 31 + 32 ], "won_buy_force": [ - 31 + 32 ], "won_buy_full": [ - 31 + 32 ], "won_buy_pistol": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_lineup_map_stats_variance_fields": { "man_adv_rounds": [ - 31 + 32 ], "man_adv_wins": [ - 31 + 32 ], "man_dis_rounds": [ - 31 + 32 ], "man_dis_wins": [ - 31 + 32 ], "opening_attempts": [ - 31 + 32 ], "opening_wins": [ - 31 + 32 ], "pistol_rounds": [ - 31 + 32 ], "pistol_wins": [ - 31 + 32 ], "round_wins": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "won_buy_eco": [ - 31 + 32 ], "won_buy_force": [ - 31 + 32 ], "won_buy_full": [ - 31 + 32 ], "won_buy_pistol": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds": { "has_backup_file": [ - 5 + 6 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 5439 + 5723 ], "nodes": [ - 5437 + 5721 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 5440 + 5724 ], "count": [ - 40, + 41, { "columns": [ - 5448, + 5732, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5444 + 5728 ], "min": [ - 5445 + 5729 ], "stddev": [ - 5450 + 5734 ], "stddev_pop": [ - 5451 + 5735 ], "stddev_samp": [ - 5452 + 5736 ], "sum": [ - 5455 + 5739 ], "var_pop": [ - 5457 + 5741 ], "var_samp": [ - 5458 + 5742 ], "variance": [ - 5459 + 5743 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_avg_fields": { "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 5441 + 5725 ], "_not": [ - 5441 + 5725 ], "_or": [ - 5441 + 5725 ], "has_backup_file": [ - 6 + 7 ], "match_map_id": [ - 5172 + 5456 ], "round": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_inc_input": { "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_insert_input": { "has_backup_file": [ - 5 + 6 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5437 + 5721 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_select_column": {}, "v_match_map_backup_rounds_set_input": { "has_backup_file": [ - 5 + 6 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_stddev_fields": { "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_stddev_pop_fields": { "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_stddev_samp_fields": { "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 5454 + 5738 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_stream_cursor_value_input": { "has_backup_file": [ - 5 + 6 ], "match_map_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_sum_fields": { "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_updates": { "_inc": [ - 5442 + 5726 ], "_set": [ - 5449 + 5733 ], "where": [ - 5441 + 5725 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_var_pop_fields": { "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_var_samp_fields": { "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_map_backup_rounds_variance_fields": { "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types": { "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_lineup": [ - 2554 + 2811 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "matchup": [ - 80 + 84 ], "player": [ - 4052 + 4331 ], "rounds": [ - 40 + 41 ], "side": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 5462 + 5746 ], "nodes": [ - 5460 + 5744 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 5463 + 5747 ], "count": [ - 40, + 41, { "columns": [ - 5468, + 5752, "[v_match_player_buy_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5465 + 5749 ], "min": [ - 5466 + 5750 ], "stddev": [ - 5469 + 5753 ], "stddev_pop": [ - 5470 + 5754 ], "stddev_samp": [ - 5471 + 5755 ], "sum": [ - 5474 + 5758 ], "var_pop": [ - 5475 + 5759 ], "var_samp": [ - 5476 + 5760 ], "variance": [ - 5477 + 5761 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_avg_fields": { "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_bool_exp": { "_and": [ - 5464 + 5748 ], "_not": [ - 5464 + 5748 ], "_or": [ - 5464 + 5748 ], "deaths": [ - 41 + 42 ], "kills": [ - 41 + 42 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_lineup": [ - 2563 + 2820 ], "match_lineup_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "matchup": [ - 82 + 86 ], "player": [ - 4056 + 4335 ], "rounds": [ - 41 + 42 ], "side": [ - 82 + 86 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_max_fields": { "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "matchup": [ - 80 + 84 ], "rounds": [ - 40 + 41 ], "side": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_min_fields": { "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "matchup": [ - 80 + 84 ], "rounds": [ - 40 + 41 ], "side": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_order_by": { "deaths": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_lineup": [ - 2574 + 2831 ], "match_lineup_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "matchup": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "rounds": [ - 3094 + 3373 ], "side": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_select_column": {}, "v_match_player_buy_types_stddev_fields": { "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_stddev_pop_fields": { "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_stddev_samp_fields": { "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 5473 + 5757 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_stream_cursor_value_input": { "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "matchup": [ - 80 + 84 ], "rounds": [ - 40 + 41 ], "side": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_sum_fields": { "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_var_pop_fields": { "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_var_samp_fields": { "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_buy_types_variance_fields": { "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels": { "attempts": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_lineup": [ - 2554 + 2811 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4052 + 4331 ], "side": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "traded_deaths": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 5482 + 5766 ], "nodes": [ - 5478 + 5762 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 5481 + 5765 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 5494 + 5778 ], "distinct": [ - 5 + 6 ], "filter": [ - 5487 + 5771 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 5485 + 5769 ], "count": [ - 40, + 41, { "columns": [ - 5494, + 5778, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5489 + 5773 ], "min": [ - 5491 + 5775 ], "stddev": [ - 5495 + 5779 ], "stddev_pop": [ - 5497 + 5781 ], "stddev_samp": [ - 5499 + 5783 ], "sum": [ - 5503 + 5787 ], "var_pop": [ - 5505 + 5789 ], "var_samp": [ - 5507 + 5791 ], "variance": [ - 5509 + 5793 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 5486 + 5770 ], "count": [ - 3094 + 3373 ], "max": [ - 5490 + 5774 ], "min": [ - 5492 + 5776 ], "stddev": [ - 5496 + 5780 ], "stddev_pop": [ - 5498 + 5782 ], "stddev_samp": [ - 5500 + 5784 ], "sum": [ - 5504 + 5788 ], "var_pop": [ - 5506 + 5790 ], "var_samp": [ - 5508 + 5792 ], "variance": [ - 5510 + 5794 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 5488 + 5772 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_avg_fields": { "attempts": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "traded_deaths": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "traded_deaths": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 5487 + 5771 ], "_not": [ - 5487 + 5771 ], "_or": [ - 5487 + 5771 ], "attempts": [ - 41 + 42 ], "deaths": [ - 41 + 42 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_lineup": [ - 2563 + 2820 ], "match_lineup_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "player": [ - 4056 + 4335 ], "side": [ - 82 + 86 ], "steam_id": [ - 266 + 271 ], "traded_deaths": [ - 41 + 42 ], "wins": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_insert_input": { "attempts": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_lineup": [ - 2572 + 2829 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4063 + 4342 ], "side": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "traded_deaths": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_max_fields": { "attempts": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "side": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "traded_deaths": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_lineup_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "side": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "traded_deaths": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_min_fields": { "attempts": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "side": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "traded_deaths": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_lineup_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "side": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "traded_deaths": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_order_by": { "attempts": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_lineup": [ - 2574 + 2831 ], "match_lineup_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "side": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "traded_deaths": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_select_column": {}, "v_match_player_opening_duels_stddev_fields": { "attempts": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "traded_deaths": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "traded_deaths": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_stddev_pop_fields": { "attempts": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "traded_deaths": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "traded_deaths": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_stddev_samp_fields": { "attempts": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "traded_deaths": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "traded_deaths": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 5502 + 5786 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_stream_cursor_value_input": { "attempts": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "match_id": [ - 5170 + 5454 ], "match_lineup_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "side": [ - 80 + 84 ], "steam_id": [ - 264 + 269 ], "traded_deaths": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_sum_fields": { "attempts": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "traded_deaths": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "traded_deaths": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_var_pop_fields": { "attempts": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "traded_deaths": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "traded_deaths": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_var_samp_fields": { "attempts": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "traded_deaths": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "traded_deaths": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_variance_fields": { "attempts": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "traded_deaths": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "traded_deaths": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis": { "attacker_id": [ - 264 + 269 ], "kill_count": [ - 264 + 269 ], "nemsis": [ - 4052 + 4331 ], "player": [ - 4052 + 4331 ], "victim_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 5513 + 5797 ], "nodes": [ - 5511 + 5795 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 5514 + 5798 ], "count": [ - 40, + 41, { "columns": [ - 5519, + 5803, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5516 + 5800 ], "min": [ - 5517 + 5801 ], "stddev": [ - 5520 + 5804 ], "stddev_pop": [ - 5521 + 5805 ], "stddev_samp": [ - 5522 + 5806 ], "sum": [ - 5525 + 5809 ], "var_pop": [ - 5526 + 5810 ], "var_samp": [ - 5527 + 5811 ], "variance": [ - 5528 + 5812 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_avg_fields": { "attacker_id": [ - 31 + 32 ], "kill_count": [ - 31 + 32 ], "victim_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 5515 + 5799 ], "_not": [ - 5515 + 5799 ], "_or": [ - 5515 + 5799 ], "attacker_id": [ - 266 + 271 ], "kill_count": [ - 266 + 271 ], "nemsis": [ - 4056 + 4335 ], "player": [ - 4056 + 4335 ], "victim_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_max_fields": { "attacker_id": [ - 264 + 269 ], "kill_count": [ - 264 + 269 ], "victim_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_min_fields": { "attacker_id": [ - 264 + 269 ], "kill_count": [ - 264 + 269 ], "victim_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 3094 + 3373 ], "kill_count": [ - 3094 + 3373 ], "nemsis": [ - 4065 + 4344 ], "player": [ - 4065 + 4344 ], "victim_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_select_column": {}, "v_player_arch_nemesis_stddev_fields": { "attacker_id": [ - 31 + 32 ], "kill_count": [ - 31 + 32 ], "victim_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_stddev_pop_fields": { "attacker_id": [ - 31 + 32 ], "kill_count": [ - 31 + 32 ], "victim_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_stddev_samp_fields": { "attacker_id": [ - 31 + 32 ], "kill_count": [ - 31 + 32 ], "victim_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 5524 + 5808 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_stream_cursor_value_input": { "attacker_id": [ - 264 + 269 ], "kill_count": [ - 264 + 269 ], "victim_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_sum_fields": { "attacker_id": [ - 264 + 269 ], "kill_count": [ - 264 + 269 ], "victim_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_var_pop_fields": { "attacker_id": [ - 31 + 32 ], "kill_count": [ - 31 + 32 ], "victim_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_var_samp_fields": { "attacker_id": [ - 31 + 32 ], "kill_count": [ - 31 + 32 ], "victim_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_arch_nemesis_variance_fields": { "attacker_id": [ - 31 + 32 ], "kill_count": [ - 31 + 32 ], "victim_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_damage": { "avg_damage_per_round": [ - 264 + 269 ], "player": [ - 4052 + 4331 ], "player_steam_id": [ - 264 + 269 ], "total_damage": [ - 264 + 269 ], "total_rounds": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_aggregate": { "aggregate": [ - 5531 + 5815 ], "nodes": [ - 5529 + 5813 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_aggregate_fields": { "avg": [ - 5532 + 5816 ], "count": [ - 40, + 41, { "columns": [ - 5537, + 5821, "[v_player_damage_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5534 + 5818 ], "min": [ - 5535 + 5819 ], "stddev": [ - 5538 + 5822 ], "stddev_pop": [ - 5539 + 5823 ], "stddev_samp": [ - 5540 + 5824 ], "sum": [ - 5543 + 5827 ], "var_pop": [ - 5544 + 5828 ], "var_samp": [ - 5545 + 5829 ], "variance": [ - 5546 + 5830 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_avg_fields": { "avg_damage_per_round": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "total_damage": [ - 31 + 32 ], "total_rounds": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_bool_exp": { "_and": [ - 5533 + 5817 ], "_not": [ - 5533 + 5817 ], "_or": [ - 5533 + 5817 ], "avg_damage_per_round": [ - 266 + 271 ], "player": [ - 4056 + 4335 ], "player_steam_id": [ - 266 + 271 ], "total_damage": [ - 266 + 271 ], "total_rounds": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_max_fields": { "avg_damage_per_round": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "total_damage": [ - 264 + 269 ], "total_rounds": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_min_fields": { "avg_damage_per_round": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "total_damage": [ - 264 + 269 ], "total_rounds": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "player_steam_id": [ - 3094 + 3373 ], "total_damage": [ - 3094 + 3373 ], "total_rounds": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_select_column": {}, "v_player_damage_stddev_fields": { "avg_damage_per_round": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "total_damage": [ - 31 + 32 ], "total_rounds": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_stddev_pop_fields": { "avg_damage_per_round": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "total_damage": [ - 31 + 32 ], "total_rounds": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_stddev_samp_fields": { "avg_damage_per_round": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "total_damage": [ - 31 + 32 ], "total_rounds": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 5542 + 5826 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_stream_cursor_value_input": { "avg_damage_per_round": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "total_damage": [ - 264 + 269 ], "total_rounds": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_sum_fields": { "avg_damage_per_round": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "total_damage": [ - 264 + 269 ], "total_rounds": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_var_pop_fields": { "avg_damage_per_round": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "total_damage": [ - 31 + 32 ], "total_rounds": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_var_samp_fields": { "avg_damage_per_round": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "total_damage": [ - 31 + 32 ], "total_rounds": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_damage_variance_fields": { "avg_damage_per_round": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "total_damage": [ - 31 + 32 ], "total_rounds": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_elo": { "actual_score": [ - 1777 + 1842 ], "assists": [ - 40 + 41 ], "current_elo": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1777 + 1842 ], "deaths": [ - 40 + 41 ], "elo_change": [ - 40 + 41 ], "expected_score": [ - 1777 + 1842 ], "impact": [ - 1777 + 1842 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match": [ - 2882 + 3157 ], "match_created_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_result": [ - 80 + 84 ], "opponent_team_elo_avg": [ - 1777 + 1842 ], "performance_multiplier": [ - 1777 + 1842 ], "player_name": [ - 80 + 84 ], "player_steam_id": [ - 264 + 269 ], "player_team_elo_avg": [ - 1777 + 1842 ], "rating_for_expected": [ - 1777 + 1842 ], "season_id": [ - 5170 + 5454 ], "series_multiplier": [ - 40 + 41 ], "team_avg_kda": [ - 1777 + 1842 ], "type": [ - 80 + 84 ], "updated_elo": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate": { "aggregate": [ - 5561 + 5845 ], "nodes": [ - 5547 + 5831 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 5550 + 5834 ], "corr": [ - 5551 + 5835 ], "count": [ - 5553 + 5837 ], "covar_samp": [ - 5554 + 5838 ], "max": [ - 5556 + 5840 ], "min": [ - 5557 + 5841 ], "stddev_samp": [ - 5558 + 5842 ], "sum": [ - 5559 + 5843 ], "var_samp": [ - 5560 + 5844 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 5574 + 5858 ], "distinct": [ - 5 + 6 ], "filter": [ - 5566 + 5850 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 5552 + 5836 ], "distinct": [ - 5 + 6 ], "filter": [ - 5566 + 5850 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 5575 + 5859 ], "Y": [ - 5575 + 5859 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 5573 + 5857 ], "distinct": [ - 5 + 6 ], "filter": [ - 5566 + 5850 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 5555 + 5839 ], "distinct": [ - 5 + 6 ], "filter": [ - 5566 + 5850 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5576 + 5860 ], "Y": [ - 5576 + 5860 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 5577 + 5861 ], "distinct": [ - 5 + 6 ], "filter": [ - 5566 + 5850 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 5578 + 5862 ], "distinct": [ - 5 + 6 ], "filter": [ - 5566 + 5850 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5579 + 5863 ], "distinct": [ - 5 + 6 ], "filter": [ - 5566 + 5850 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 5580 + 5864 ], "distinct": [ - 5 + 6 ], "filter": [ - 5566 + 5850 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 5581 + 5865 ], "distinct": [ - 5 + 6 ], "filter": [ - 5566 + 5850 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate_fields": { "avg": [ - 5564 + 5848 ], "count": [ - 40, + 41, { "columns": [ - 5573, + 5857, "[v_player_elo_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5568 + 5852 ], "min": [ - 5570 + 5854 ], "stddev": [ - 5582 + 5866 ], "stddev_pop": [ - 5584 + 5868 ], "stddev_samp": [ - 5586 + 5870 ], "sum": [ - 5590 + 5874 ], "var_pop": [ - 5592 + 5876 ], "var_samp": [ - 5594 + 5878 ], "variance": [ - 5596 + 5880 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_aggregate_order_by": { "avg": [ - 5565 + 5849 ], "count": [ - 3094 + 3373 ], "max": [ - 5569 + 5853 ], "min": [ - 5571 + 5855 ], "stddev": [ - 5583 + 5867 ], "stddev_pop": [ - 5585 + 5869 ], "stddev_samp": [ - 5587 + 5871 ], "sum": [ - 5591 + 5875 ], "var_pop": [ - 5593 + 5877 ], "var_samp": [ - 5595 + 5879 ], "variance": [ - 5597 + 5881 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_arr_rel_insert_input": { "data": [ - 5567 + 5851 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_avg_fields": { "actual_score": [ - 31 + 32 ], "assists": [ - 31 + 32 ], "current_elo": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_percent": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "elo_change": [ - 31 + 32 ], "expected_score": [ - 31 + 32 ], "impact": [ - 31 + 32 ], "k_factor": [ - 31 + 32 ], "kda": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "map_losses": [ - 31 + 32 ], "map_wins": [ - 31 + 32 ], "opponent_team_elo_avg": [ - 31 + 32 ], "performance_multiplier": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "player_team_elo_avg": [ - 31 + 32 ], "rating_for_expected": [ - 31 + 32 ], "series_multiplier": [ - 31 + 32 ], "team_avg_kda": [ - 31 + 32 ], "updated_elo": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_avg_order_by": { "actual_score": [ - 3094 + 3373 ], "assists": [ - 3094 + 3373 ], "current_elo": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_percent": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "elo_change": [ - 3094 + 3373 ], "expected_score": [ - 3094 + 3373 ], "impact": [ - 3094 + 3373 ], "k_factor": [ - 3094 + 3373 ], "kda": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "map_losses": [ - 3094 + 3373 ], "map_wins": [ - 3094 + 3373 ], "opponent_team_elo_avg": [ - 3094 + 3373 ], "performance_multiplier": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "player_team_elo_avg": [ - 3094 + 3373 ], "rating_for_expected": [ - 3094 + 3373 ], "series_multiplier": [ - 3094 + 3373 ], "team_avg_kda": [ - 3094 + 3373 ], "updated_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_bool_exp": { "_and": [ - 5566 + 5850 ], "_not": [ - 5566 + 5850 ], "_or": [ - 5566 + 5850 ], "actual_score": [ - 1778 + 1843 ], "assists": [ - 41 + 42 ], "current_elo": [ - 41 + 42 ], "damage": [ - 41 + 42 ], "damage_percent": [ - 1778 + 1843 ], "deaths": [ - 41 + 42 ], "elo_change": [ - 41 + 42 ], "expected_score": [ - 1778 + 1843 ], "impact": [ - 1778 + 1843 ], "k_factor": [ - 41 + 42 ], "kda": [ - 1778 + 1843 ], "kills": [ - 41 + 42 ], "map_losses": [ - 41 + 42 ], "map_wins": [ - 41 + 42 ], "match": [ - 2891 + 3168 ], "match_created_at": [ - 4671 + 4955 ], "match_id": [ - 5172 + 5456 ], "match_result": [ - 82 + 86 ], "opponent_team_elo_avg": [ - 1778 + 1843 ], "performance_multiplier": [ - 1778 + 1843 ], "player_name": [ - 82 + 86 ], "player_steam_id": [ - 266 + 271 ], "player_team_elo_avg": [ - 1778 + 1843 ], "rating_for_expected": [ - 1778 + 1843 ], "season_id": [ - 5172 + 5456 ], "series_multiplier": [ - 41 + 42 ], "team_avg_kda": [ - 1778 + 1843 ], "type": [ - 82 + 86 ], "updated_elo": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_insert_input": { "actual_score": [ - 1777 + 1842 ], "assists": [ - 40 + 41 ], "current_elo": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1777 + 1842 ], "deaths": [ - 40 + 41 ], "elo_change": [ - 40 + 41 ], "expected_score": [ - 1777 + 1842 ], "impact": [ - 1777 + 1842 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match": [ - 2900 + 3177 ], "match_created_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_result": [ - 80 + 84 ], "opponent_team_elo_avg": [ - 1777 + 1842 ], "performance_multiplier": [ - 1777 + 1842 ], "player_name": [ - 80 + 84 ], "player_steam_id": [ - 264 + 269 ], "player_team_elo_avg": [ - 1777 + 1842 ], "rating_for_expected": [ - 1777 + 1842 ], "season_id": [ - 5170 + 5454 ], "series_multiplier": [ - 40 + 41 ], "team_avg_kda": [ - 1777 + 1842 ], "type": [ - 80 + 84 ], "updated_elo": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_max_fields": { "actual_score": [ - 1777 + 1842 ], "assists": [ - 40 + 41 ], "current_elo": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1777 + 1842 ], "deaths": [ - 40 + 41 ], "elo_change": [ - 40 + 41 ], "expected_score": [ - 1777 + 1842 ], "impact": [ - 1777 + 1842 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match_created_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_result": [ - 80 + 84 ], "opponent_team_elo_avg": [ - 1777 + 1842 ], "performance_multiplier": [ - 1777 + 1842 ], "player_name": [ - 80 + 84 ], "player_steam_id": [ - 264 + 269 ], "player_team_elo_avg": [ - 1777 + 1842 ], "rating_for_expected": [ - 1777 + 1842 ], "season_id": [ - 5170 + 5454 ], "series_multiplier": [ - 40 + 41 ], "team_avg_kda": [ - 1777 + 1842 ], "type": [ - 80 + 84 ], "updated_elo": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_max_order_by": { "actual_score": [ - 3094 + 3373 ], "assists": [ - 3094 + 3373 ], "current_elo": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_percent": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "elo_change": [ - 3094 + 3373 ], "expected_score": [ - 3094 + 3373 ], "impact": [ - 3094 + 3373 ], "k_factor": [ - 3094 + 3373 ], "kda": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "map_losses": [ - 3094 + 3373 ], "map_wins": [ - 3094 + 3373 ], "match_created_at": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_result": [ - 3094 + 3373 ], "opponent_team_elo_avg": [ - 3094 + 3373 ], "performance_multiplier": [ - 3094 + 3373 ], "player_name": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "player_team_elo_avg": [ - 3094 + 3373 ], "rating_for_expected": [ - 3094 + 3373 ], "season_id": [ - 3094 + 3373 ], "series_multiplier": [ - 3094 + 3373 ], "team_avg_kda": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "updated_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_min_fields": { "actual_score": [ - 1777 + 1842 ], "assists": [ - 40 + 41 ], "current_elo": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1777 + 1842 ], "deaths": [ - 40 + 41 ], "elo_change": [ - 40 + 41 ], "expected_score": [ - 1777 + 1842 ], "impact": [ - 1777 + 1842 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match_created_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_result": [ - 80 + 84 ], "opponent_team_elo_avg": [ - 1777 + 1842 ], "performance_multiplier": [ - 1777 + 1842 ], "player_name": [ - 80 + 84 ], "player_steam_id": [ - 264 + 269 ], "player_team_elo_avg": [ - 1777 + 1842 ], "rating_for_expected": [ - 1777 + 1842 ], "season_id": [ - 5170 + 5454 ], "series_multiplier": [ - 40 + 41 ], "team_avg_kda": [ - 1777 + 1842 ], "type": [ - 80 + 84 ], "updated_elo": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_min_order_by": { "actual_score": [ - 3094 + 3373 ], "assists": [ - 3094 + 3373 ], "current_elo": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_percent": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "elo_change": [ - 3094 + 3373 ], "expected_score": [ - 3094 + 3373 ], "impact": [ - 3094 + 3373 ], "k_factor": [ - 3094 + 3373 ], "kda": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "map_losses": [ - 3094 + 3373 ], "map_wins": [ - 3094 + 3373 ], "match_created_at": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_result": [ - 3094 + 3373 ], "opponent_team_elo_avg": [ - 3094 + 3373 ], "performance_multiplier": [ - 3094 + 3373 ], "player_name": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "player_team_elo_avg": [ - 3094 + 3373 ], "rating_for_expected": [ - 3094 + 3373 ], "season_id": [ - 3094 + 3373 ], "series_multiplier": [ - 3094 + 3373 ], "team_avg_kda": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "updated_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_order_by": { "actual_score": [ - 3094 + 3373 ], "assists": [ - 3094 + 3373 ], "current_elo": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_percent": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "elo_change": [ - 3094 + 3373 ], "expected_score": [ - 3094 + 3373 ], "impact": [ - 3094 + 3373 ], "k_factor": [ - 3094 + 3373 ], "kda": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "map_losses": [ - 3094 + 3373 ], "map_wins": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_created_at": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_result": [ - 3094 + 3373 ], "opponent_team_elo_avg": [ - 3094 + 3373 ], "performance_multiplier": [ - 3094 + 3373 ], "player_name": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "player_team_elo_avg": [ - 3094 + 3373 ], "rating_for_expected": [ - 3094 + 3373 ], "season_id": [ - 3094 + 3373 ], "series_multiplier": [ - 3094 + 3373 ], "team_avg_kda": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "updated_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_select_column": {}, @@ -126750,7169 +132186,7169 @@ export default { "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_var_samp_arguments_columns": {}, "v_player_elo_stddev_fields": { "actual_score": [ - 31 + 32 ], "assists": [ - 31 + 32 ], "current_elo": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_percent": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "elo_change": [ - 31 + 32 ], "expected_score": [ - 31 + 32 ], "impact": [ - 31 + 32 ], "k_factor": [ - 31 + 32 ], "kda": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "map_losses": [ - 31 + 32 ], "map_wins": [ - 31 + 32 ], "opponent_team_elo_avg": [ - 31 + 32 ], "performance_multiplier": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "player_team_elo_avg": [ - 31 + 32 ], "rating_for_expected": [ - 31 + 32 ], "series_multiplier": [ - 31 + 32 ], "team_avg_kda": [ - 31 + 32 ], "updated_elo": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_stddev_order_by": { "actual_score": [ - 3094 + 3373 ], "assists": [ - 3094 + 3373 ], "current_elo": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_percent": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "elo_change": [ - 3094 + 3373 ], "expected_score": [ - 3094 + 3373 ], "impact": [ - 3094 + 3373 ], "k_factor": [ - 3094 + 3373 ], "kda": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "map_losses": [ - 3094 + 3373 ], "map_wins": [ - 3094 + 3373 ], "opponent_team_elo_avg": [ - 3094 + 3373 ], "performance_multiplier": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "player_team_elo_avg": [ - 3094 + 3373 ], "rating_for_expected": [ - 3094 + 3373 ], "series_multiplier": [ - 3094 + 3373 ], "team_avg_kda": [ - 3094 + 3373 ], "updated_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_stddev_pop_fields": { "actual_score": [ - 31 + 32 ], "assists": [ - 31 + 32 ], "current_elo": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_percent": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "elo_change": [ - 31 + 32 ], "expected_score": [ - 31 + 32 ], "impact": [ - 31 + 32 ], "k_factor": [ - 31 + 32 ], "kda": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "map_losses": [ - 31 + 32 ], "map_wins": [ - 31 + 32 ], "opponent_team_elo_avg": [ - 31 + 32 ], "performance_multiplier": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "player_team_elo_avg": [ - 31 + 32 ], "rating_for_expected": [ - 31 + 32 ], "series_multiplier": [ - 31 + 32 ], "team_avg_kda": [ - 31 + 32 ], "updated_elo": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 3094 + 3373 ], "assists": [ - 3094 + 3373 ], "current_elo": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_percent": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "elo_change": [ - 3094 + 3373 ], "expected_score": [ - 3094 + 3373 ], "impact": [ - 3094 + 3373 ], "k_factor": [ - 3094 + 3373 ], "kda": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "map_losses": [ - 3094 + 3373 ], "map_wins": [ - 3094 + 3373 ], "opponent_team_elo_avg": [ - 3094 + 3373 ], "performance_multiplier": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "player_team_elo_avg": [ - 3094 + 3373 ], "rating_for_expected": [ - 3094 + 3373 ], "series_multiplier": [ - 3094 + 3373 ], "team_avg_kda": [ - 3094 + 3373 ], "updated_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_stddev_samp_fields": { "actual_score": [ - 31 + 32 ], "assists": [ - 31 + 32 ], "current_elo": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_percent": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "elo_change": [ - 31 + 32 ], "expected_score": [ - 31 + 32 ], "impact": [ - 31 + 32 ], "k_factor": [ - 31 + 32 ], "kda": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "map_losses": [ - 31 + 32 ], "map_wins": [ - 31 + 32 ], "opponent_team_elo_avg": [ - 31 + 32 ], "performance_multiplier": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "player_team_elo_avg": [ - 31 + 32 ], "rating_for_expected": [ - 31 + 32 ], "series_multiplier": [ - 31 + 32 ], "team_avg_kda": [ - 31 + 32 ], "updated_elo": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 3094 + 3373 ], "assists": [ - 3094 + 3373 ], "current_elo": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_percent": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "elo_change": [ - 3094 + 3373 ], "expected_score": [ - 3094 + 3373 ], "impact": [ - 3094 + 3373 ], "k_factor": [ - 3094 + 3373 ], "kda": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "map_losses": [ - 3094 + 3373 ], "map_wins": [ - 3094 + 3373 ], "opponent_team_elo_avg": [ - 3094 + 3373 ], "performance_multiplier": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "player_team_elo_avg": [ - 3094 + 3373 ], "rating_for_expected": [ - 3094 + 3373 ], "series_multiplier": [ - 3094 + 3373 ], "team_avg_kda": [ - 3094 + 3373 ], "updated_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 5589 + 5873 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1777 + 1842 ], "assists": [ - 40 + 41 ], "current_elo": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1777 + 1842 ], "deaths": [ - 40 + 41 ], "elo_change": [ - 40 + 41 ], "expected_score": [ - 1777 + 1842 ], "impact": [ - 1777 + 1842 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match_created_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_result": [ - 80 + 84 ], "opponent_team_elo_avg": [ - 1777 + 1842 ], "performance_multiplier": [ - 1777 + 1842 ], "player_name": [ - 80 + 84 ], "player_steam_id": [ - 264 + 269 ], "player_team_elo_avg": [ - 1777 + 1842 ], "rating_for_expected": [ - 1777 + 1842 ], "season_id": [ - 5170 + 5454 ], "series_multiplier": [ - 40 + 41 ], "team_avg_kda": [ - 1777 + 1842 ], "type": [ - 80 + 84 ], "updated_elo": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_sum_fields": { "actual_score": [ - 1777 + 1842 ], "assists": [ - 40 + 41 ], "current_elo": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1777 + 1842 ], "deaths": [ - 40 + 41 ], "elo_change": [ - 40 + 41 ], "expected_score": [ - 1777 + 1842 ], "impact": [ - 1777 + 1842 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "opponent_team_elo_avg": [ - 1777 + 1842 ], "performance_multiplier": [ - 1777 + 1842 ], "player_steam_id": [ - 264 + 269 ], "player_team_elo_avg": [ - 1777 + 1842 ], "rating_for_expected": [ - 1777 + 1842 ], "series_multiplier": [ - 40 + 41 ], "team_avg_kda": [ - 1777 + 1842 ], "updated_elo": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_sum_order_by": { "actual_score": [ - 3094 + 3373 ], "assists": [ - 3094 + 3373 ], "current_elo": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_percent": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "elo_change": [ - 3094 + 3373 ], "expected_score": [ - 3094 + 3373 ], "impact": [ - 3094 + 3373 ], "k_factor": [ - 3094 + 3373 ], "kda": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "map_losses": [ - 3094 + 3373 ], "map_wins": [ - 3094 + 3373 ], "opponent_team_elo_avg": [ - 3094 + 3373 ], "performance_multiplier": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "player_team_elo_avg": [ - 3094 + 3373 ], "rating_for_expected": [ - 3094 + 3373 ], "series_multiplier": [ - 3094 + 3373 ], "team_avg_kda": [ - 3094 + 3373 ], "updated_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_var_pop_fields": { "actual_score": [ - 31 + 32 ], "assists": [ - 31 + 32 ], "current_elo": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_percent": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "elo_change": [ - 31 + 32 ], "expected_score": [ - 31 + 32 ], "impact": [ - 31 + 32 ], "k_factor": [ - 31 + 32 ], "kda": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "map_losses": [ - 31 + 32 ], "map_wins": [ - 31 + 32 ], "opponent_team_elo_avg": [ - 31 + 32 ], "performance_multiplier": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "player_team_elo_avg": [ - 31 + 32 ], "rating_for_expected": [ - 31 + 32 ], "series_multiplier": [ - 31 + 32 ], "team_avg_kda": [ - 31 + 32 ], "updated_elo": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 3094 + 3373 ], "assists": [ - 3094 + 3373 ], "current_elo": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_percent": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "elo_change": [ - 3094 + 3373 ], "expected_score": [ - 3094 + 3373 ], "impact": [ - 3094 + 3373 ], "k_factor": [ - 3094 + 3373 ], "kda": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "map_losses": [ - 3094 + 3373 ], "map_wins": [ - 3094 + 3373 ], "opponent_team_elo_avg": [ - 3094 + 3373 ], "performance_multiplier": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "player_team_elo_avg": [ - 3094 + 3373 ], "rating_for_expected": [ - 3094 + 3373 ], "series_multiplier": [ - 3094 + 3373 ], "team_avg_kda": [ - 3094 + 3373 ], "updated_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_var_samp_fields": { "actual_score": [ - 31 + 32 ], "assists": [ - 31 + 32 ], "current_elo": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_percent": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "elo_change": [ - 31 + 32 ], "expected_score": [ - 31 + 32 ], "impact": [ - 31 + 32 ], "k_factor": [ - 31 + 32 ], "kda": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "map_losses": [ - 31 + 32 ], "map_wins": [ - 31 + 32 ], "opponent_team_elo_avg": [ - 31 + 32 ], "performance_multiplier": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "player_team_elo_avg": [ - 31 + 32 ], "rating_for_expected": [ - 31 + 32 ], "series_multiplier": [ - 31 + 32 ], "team_avg_kda": [ - 31 + 32 ], "updated_elo": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 3094 + 3373 ], "assists": [ - 3094 + 3373 ], "current_elo": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_percent": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "elo_change": [ - 3094 + 3373 ], "expected_score": [ - 3094 + 3373 ], "impact": [ - 3094 + 3373 ], "k_factor": [ - 3094 + 3373 ], "kda": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "map_losses": [ - 3094 + 3373 ], "map_wins": [ - 3094 + 3373 ], "opponent_team_elo_avg": [ - 3094 + 3373 ], "performance_multiplier": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "player_team_elo_avg": [ - 3094 + 3373 ], "rating_for_expected": [ - 3094 + 3373 ], "series_multiplier": [ - 3094 + 3373 ], "team_avg_kda": [ - 3094 + 3373 ], "updated_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_variance_fields": { "actual_score": [ - 31 + 32 ], "assists": [ - 31 + 32 ], "current_elo": [ - 31 + 32 ], "damage": [ - 31 + 32 ], "damage_percent": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "elo_change": [ - 31 + 32 ], "expected_score": [ - 31 + 32 ], "impact": [ - 31 + 32 ], "k_factor": [ - 31 + 32 ], "kda": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "map_losses": [ - 31 + 32 ], "map_wins": [ - 31 + 32 ], "opponent_team_elo_avg": [ - 31 + 32 ], "performance_multiplier": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "player_team_elo_avg": [ - 31 + 32 ], "rating_for_expected": [ - 31 + 32 ], "series_multiplier": [ - 31 + 32 ], "team_avg_kda": [ - 31 + 32 ], "updated_elo": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_elo_variance_order_by": { "actual_score": [ - 3094 + 3373 ], "assists": [ - 3094 + 3373 ], "current_elo": [ - 3094 + 3373 ], "damage": [ - 3094 + 3373 ], "damage_percent": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "elo_change": [ - 3094 + 3373 ], "expected_score": [ - 3094 + 3373 ], "impact": [ - 3094 + 3373 ], "k_factor": [ - 3094 + 3373 ], "kda": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "map_losses": [ - 3094 + 3373 ], "map_wins": [ - 3094 + 3373 ], "opponent_team_elo_avg": [ - 3094 + 3373 ], "performance_multiplier": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "player_team_elo_avg": [ - 3094 + 3373 ], "rating_for_expected": [ - 3094 + 3373 ], "series_multiplier": [ - 3094 + 3373 ], "team_avg_kda": [ - 3094 + 3373 ], "updated_elo": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses": { "map": [ - 2392 + 2649 ], "map_id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "started_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_aggregate": { "aggregate": [ - 5600 + 5884 ], "nodes": [ - 5598 + 5882 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_aggregate_fields": { "avg": [ - 5601 + 5885 ], "count": [ - 40, + 41, { "columns": [ - 5606, + 5890, "[v_player_map_losses_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5603 + 5887 ], "min": [ - 5604 + 5888 ], "stddev": [ - 5607 + 5891 ], "stddev_pop": [ - 5608 + 5892 ], "stddev_samp": [ - 5609 + 5893 ], "sum": [ - 5612 + 5896 ], "var_pop": [ - 5613 + 5897 ], "var_samp": [ - 5614 + 5898 ], "variance": [ - 5615 + 5899 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_bool_exp": { "_and": [ - 5602 + 5886 ], "_not": [ - 5602 + 5886 ], "_or": [ - 5602 + 5886 ], "map": [ - 2401 + 2658 ], "map_id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "started_at": [ - 4671 + 4955 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_max_fields": { "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "started_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_min_fields": { "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "started_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_order_by": { "map": [ - 2411 + 2668 ], "map_id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "started_at": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_select_column": {}, "v_player_map_losses_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 5611 + 5895 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "started_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_map_losses_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins": { "map": [ - 2392 + 2649 ], "map_id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "started_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_aggregate": { "aggregate": [ - 5618 + 5902 ], "nodes": [ - 5616 + 5900 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_aggregate_fields": { "avg": [ - 5619 + 5903 ], "count": [ - 40, + 41, { "columns": [ - 5624, + 5908, "[v_player_map_wins_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5621 + 5905 ], "min": [ - 5622 + 5906 ], "stddev": [ - 5625 + 5909 ], "stddev_pop": [ - 5626 + 5910 ], "stddev_samp": [ - 5627 + 5911 ], "sum": [ - 5630 + 5914 ], "var_pop": [ - 5631 + 5915 ], "var_samp": [ - 5632 + 5916 ], "variance": [ - 5633 + 5917 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_bool_exp": { "_and": [ - 5620 + 5904 ], "_not": [ - 5620 + 5904 ], "_or": [ - 5620 + 5904 ], "map": [ - 2401 + 2658 ], "map_id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "started_at": [ - 4671 + 4955 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_max_fields": { "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "started_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_min_fields": { "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "started_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_order_by": { "map": [ - 2411 + 2668 ], "map_id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "started_at": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_select_column": {}, "v_player_map_wins_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 5629 + 5913 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "started_at": [ - 4670 + 4954 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_sum_fields": { "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_map_wins_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head": { "attacked": [ - 4052 + 4331 ], "attacked_steam_id": [ - 264 + 269 ], "attacker": [ - 4052 + 4331 ], "attacker_steam_id": [ - 264 + 269 ], "damage_dealt": [ - 40 + 41 ], "flash_count": [ - 264 + 269 ], "headshot_kills": [ - 264 + 269 ], "hits": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 5636 + 5920 ], "nodes": [ - 5634 + 5918 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 5637 + 5921 ], "count": [ - 40, + 41, { "columns": [ - 5642, + 5926, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5639 + 5923 ], "min": [ - 5640 + 5924 ], "stddev": [ - 5643 + 5927 ], "stddev_pop": [ - 5644 + 5928 ], "stddev_samp": [ - 5645 + 5929 ], "sum": [ - 5648 + 5932 ], "var_pop": [ - 5649 + 5933 ], "var_samp": [ - 5650 + 5934 ], "variance": [ - 5651 + 5935 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_avg_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "damage_dealt": [ - 31 + 32 ], "flash_count": [ - 31 + 32 ], "headshot_kills": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 5638 + 5922 ], "_not": [ - 5638 + 5922 ], "_or": [ - 5638 + 5922 ], "attacked": [ - 4056 + 4335 ], "attacked_steam_id": [ - 266 + 271 ], "attacker": [ - 4056 + 4335 ], "attacker_steam_id": [ - 266 + 271 ], "damage_dealt": [ - 41 + 42 ], "flash_count": [ - 266 + 271 ], "headshot_kills": [ - 266 + 271 ], "hits": [ - 266 + 271 ], "kills": [ - 266 + 271 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_max_fields": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "damage_dealt": [ - 40 + 41 ], "flash_count": [ - 264 + 269 ], "headshot_kills": [ - 264 + 269 ], "hits": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "match_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_min_fields": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "damage_dealt": [ - 40 + 41 ], "flash_count": [ - 264 + 269 ], "headshot_kills": [ - 264 + 269 ], "hits": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "match_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_order_by": { "attacked": [ - 4065 + 4344 ], "attacked_steam_id": [ - 3094 + 3373 ], "attacker": [ - 4065 + 4344 ], "attacker_steam_id": [ - 3094 + 3373 ], "damage_dealt": [ - 3094 + 3373 ], "flash_count": [ - 3094 + 3373 ], "headshot_kills": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_select_column": {}, "v_player_match_head_to_head_stddev_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "damage_dealt": [ - 31 + 32 ], "flash_count": [ - 31 + 32 ], "headshot_kills": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_stddev_pop_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "damage_dealt": [ - 31 + 32 ], "flash_count": [ - 31 + 32 ], "headshot_kills": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_stddev_samp_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "damage_dealt": [ - 31 + 32 ], "flash_count": [ - 31 + 32 ], "headshot_kills": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 5647 + 5931 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_stream_cursor_value_input": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "damage_dealt": [ - 40 + 41 ], "flash_count": [ - 264 + 269 ], "headshot_kills": [ - 264 + 269 ], "hits": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "match_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_sum_fields": { "attacked_steam_id": [ - 264 + 269 ], "attacker_steam_id": [ - 264 + 269 ], "damage_dealt": [ - 40 + 41 ], "flash_count": [ - 264 + 269 ], "headshot_kills": [ - 264 + 269 ], "hits": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_var_pop_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "damage_dealt": [ - 31 + 32 ], "flash_count": [ - 31 + 32 ], "headshot_kills": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_var_samp_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "damage_dealt": [ - 31 + 32 ], "flash_count": [ - 31 + 32 ], "headshot_kills": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_head_to_head_variance_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "damage_dealt": [ - 31 + 32 ], "flash_count": [ - 31 + 32 ], "headshot_kills": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv": { "adr": [ - 3092 + 3371 ], "apr": [ - 3092 + 3371 ], "dpr": [ - 3092 + 3371 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kpr": [ - 3092 + 3371 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4052 + 4331 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 5656 + 5940 ], "nodes": [ - 5652 + 5936 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 5655 + 5939 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 5670 + 5954 ], "distinct": [ - 5 + 6 ], "filter": [ - 5661 + 5945 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 5659 + 5943 ], "count": [ - 40, + 41, { "columns": [ - 5670, + 5954, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5664 + 5948 ], "min": [ - 5666 + 5950 ], "stddev": [ - 5672 + 5956 ], "stddev_pop": [ - 5674 + 5958 ], "stddev_samp": [ - 5676 + 5960 ], "sum": [ - 5680 + 5964 ], "var_pop": [ - 5683 + 5967 ], "var_samp": [ - 5685 + 5969 ], "variance": [ - 5687 + 5971 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 5660 + 5944 ], "count": [ - 3094 + 3373 ], "max": [ - 5665 + 5949 ], "min": [ - 5667 + 5951 ], "stddev": [ - 5673 + 5957 ], "stddev_pop": [ - 5675 + 5959 ], "stddev_samp": [ - 5677 + 5961 ], "sum": [ - 5681 + 5965 ], "var_pop": [ - 5684 + 5968 ], "var_samp": [ - 5686 + 5970 ], "variance": [ - 5688 + 5972 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 5663 + 5947 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_avg_fields": { "adr": [ - 31 + 32 ], "apr": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 3094 + 3373 ], "apr": [ - 3094 + 3373 ], "dpr": [ - 3094 + 3373 ], "hltv_rating": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "kpr": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 5661 + 5945 ], "_not": [ - 5661 + 5945 ], "_or": [ - 5661 + 5945 ], "adr": [ - 3093 + 3372 ], "apr": [ - 3093 + 3372 ], "dpr": [ - 3093 + 3372 ], "hltv_rating": [ - 3093 + 3372 ], "kast_pct": [ - 3093 + 3372 ], "kpr": [ - 3093 + 3372 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "player": [ - 4056 + 4335 ], "rounds_played": [ - 41 + 42 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_inc_input": { "adr": [ - 3092 + 3371 ], "apr": [ - 3092 + 3371 ], "dpr": [ - 3092 + 3371 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kpr": [ - 3092 + 3371 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_insert_input": { "adr": [ - 3092 + 3371 ], "apr": [ - 3092 + 3371 ], "dpr": [ - 3092 + 3371 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kpr": [ - 3092 + 3371 ], "match": [ - 2900 + 3177 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2734 + 2991 ], "match_map_id": [ - 5170 + 5454 ], "player": [ - 4063 + 4342 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_max_fields": { "adr": [ - 3092 + 3371 ], "apr": [ - 3092 + 3371 ], "dpr": [ - 3092 + 3371 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kpr": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 3094 + 3373 ], "apr": [ - 3094 + 3373 ], "dpr": [ - 3094 + 3373 ], "hltv_rating": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "kpr": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_min_fields": { "adr": [ - 3092 + 3371 ], "apr": [ - 3092 + 3371 ], "dpr": [ - 3092 + 3371 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kpr": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 3094 + 3373 ], "apr": [ - 3094 + 3373 ], "dpr": [ - 3094 + 3373 ], "hltv_rating": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "kpr": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_map_id": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5652 + 5936 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_order_by": { "adr": [ - 3094 + 3373 ], "apr": [ - 3094 + 3373 ], "dpr": [ - 3094 + 3373 ], "hltv_rating": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "kpr": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "rounds_played": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 3092 + 3371 ], "apr": [ - 3092 + 3371 ], "dpr": [ - 3092 + 3371 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kpr": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_stddev_fields": { "adr": [ - 31 + 32 ], "apr": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 3094 + 3373 ], "apr": [ - 3094 + 3373 ], "dpr": [ - 3094 + 3373 ], "hltv_rating": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "kpr": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_stddev_pop_fields": { "adr": [ - 31 + 32 ], "apr": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 3094 + 3373 ], "apr": [ - 3094 + 3373 ], "dpr": [ - 3094 + 3373 ], "hltv_rating": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "kpr": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_stddev_samp_fields": { "adr": [ - 31 + 32 ], "apr": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 3094 + 3373 ], "apr": [ - 3094 + 3373 ], "dpr": [ - 3094 + 3373 ], "hltv_rating": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "kpr": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 5679 + 5963 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 3092 + 3371 ], "apr": [ - 3092 + 3371 ], "dpr": [ - 3092 + 3371 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kpr": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 3092 + 3371 ], "apr": [ - 3092 + 3371 ], "dpr": [ - 3092 + 3371 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kpr": [ - 3092 + 3371 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 3094 + 3373 ], "apr": [ - 3094 + 3373 ], "dpr": [ - 3094 + 3373 ], "hltv_rating": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "kpr": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_updates": { "_inc": [ - 5662 + 5946 ], "_set": [ - 5671 + 5955 ], "where": [ - 5661 + 5945 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_var_pop_fields": { "adr": [ - 31 + 32 ], "apr": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 3094 + 3373 ], "apr": [ - 3094 + 3373 ], "dpr": [ - 3094 + 3373 ], "hltv_rating": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "kpr": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_var_samp_fields": { "adr": [ - 31 + 32 ], "apr": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 3094 + 3373 ], "apr": [ - 3094 + 3373 ], "dpr": [ - 3094 + 3373 ], "hltv_rating": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "kpr": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_variance_fields": { "adr": [ - 31 + 32 ], "apr": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 3094 + 3373 ], "apr": [ - 3094 + 3373 ], "dpr": [ - 3094 + 3373 ], "hltv_rating": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "kpr": [ - 3094 + 3373 ], "rounds_played": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles": { "adr": [ - 3092 + 3371 ], "awp_kills": [ - 40 + 41 ], "awp_share": [ - 3092 + 3371 ], "deaths": [ - 40 + 41 ], "dpr": [ - 3092 + 3371 ], "entry_rate": [ - 3092 + 3371 ], "flash_assists": [ - 40 + 41 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kills": [ - 40 + 41 ], "kpr": [ - 3092 + 3371 ], "lineup_id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "match_map": [ - 2716 + 2973 ], "match_map_id": [ - 5170 + 5454 ], "open_deaths": [ - 40 + 41 ], "open_kills": [ - 40 + 41 ], "opening_attempts": [ - 40 + 41 ], "player": [ - 4052 + 4331 ], "role": [ - 80 + 84 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "support_idx": [ - 3092 + 3371 ], "total_kills": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "util_damage": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 5691 + 5975 ], "nodes": [ - 5689 + 5973 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 5692 + 5976 ], "count": [ - 40, + 41, { "columns": [ - 5697, + 5981, "[v_player_match_map_roles_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5694 + 5978 ], "min": [ - 5695 + 5979 ], "stddev": [ - 5698 + 5982 ], "stddev_pop": [ - 5699 + 5983 ], "stddev_samp": [ - 5700 + 5984 ], "sum": [ - 5703 + 5987 ], "var_pop": [ - 5704 + 5988 ], "var_samp": [ - 5705 + 5989 ], "variance": [ - 5706 + 5990 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_avg_fields": { "adr": [ - 31 + 32 ], "awp_kills": [ - 31 + 32 ], "awp_share": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "entry_rate": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "open_deaths": [ - 31 + 32 ], "open_kills": [ - 31 + 32 ], "opening_attempts": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "support_idx": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "util_damage": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_bool_exp": { "_and": [ - 5693 + 5977 ], "_not": [ - 5693 + 5977 ], "_or": [ - 5693 + 5977 ], "adr": [ - 3093 + 3372 ], "awp_kills": [ - 41 + 42 ], "awp_share": [ - 3093 + 3372 ], "deaths": [ - 41 + 42 ], "dpr": [ - 3093 + 3372 ], "entry_rate": [ - 3093 + 3372 ], "flash_assists": [ - 41 + 42 ], "hltv_rating": [ - 3093 + 3372 ], "kast_pct": [ - 3093 + 3372 ], "kills": [ - 41 + 42 ], "kpr": [ - 3093 + 3372 ], "lineup_id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "match_map": [ - 2725 + 2982 ], "match_map_id": [ - 5172 + 5456 ], "open_deaths": [ - 41 + 42 ], "open_kills": [ - 41 + 42 ], "opening_attempts": [ - 41 + 42 ], "player": [ - 4056 + 4335 ], "role": [ - 82 + 86 ], "rounds": [ - 41 + 42 ], "steam_id": [ - 266 + 271 ], "support_idx": [ - 3093 + 3372 ], "total_kills": [ - 41 + 42 ], "trade_kill_successes": [ - 41 + 42 ], "traded_death_successes": [ - 41 + 42 ], "util_damage": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_max_fields": { "adr": [ - 3092 + 3371 ], "awp_kills": [ - 40 + 41 ], "awp_share": [ - 3092 + 3371 ], "deaths": [ - 40 + 41 ], "dpr": [ - 3092 + 3371 ], "entry_rate": [ - 3092 + 3371 ], "flash_assists": [ - 40 + 41 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kills": [ - 40 + 41 ], "kpr": [ - 3092 + 3371 ], "lineup_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "open_deaths": [ - 40 + 41 ], "open_kills": [ - 40 + 41 ], "opening_attempts": [ - 40 + 41 ], "role": [ - 80 + 84 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "support_idx": [ - 3092 + 3371 ], "total_kills": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "util_damage": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_min_fields": { "adr": [ - 3092 + 3371 ], "awp_kills": [ - 40 + 41 ], "awp_share": [ - 3092 + 3371 ], "deaths": [ - 40 + 41 ], "dpr": [ - 3092 + 3371 ], "entry_rate": [ - 3092 + 3371 ], "flash_assists": [ - 40 + 41 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kills": [ - 40 + 41 ], "kpr": [ - 3092 + 3371 ], "lineup_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "open_deaths": [ - 40 + 41 ], "open_kills": [ - 40 + 41 ], "opening_attempts": [ - 40 + 41 ], "role": [ - 80 + 84 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "support_idx": [ - 3092 + 3371 ], "total_kills": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "util_damage": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_order_by": { "adr": [ - 3094 + 3373 ], "awp_kills": [ - 3094 + 3373 ], "awp_share": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "dpr": [ - 3094 + 3373 ], "entry_rate": [ - 3094 + 3373 ], "flash_assists": [ - 3094 + 3373 ], "hltv_rating": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "kpr": [ - 3094 + 3373 ], "lineup_id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "match_map": [ - 2736 + 2993 ], "match_map_id": [ - 3094 + 3373 ], "open_deaths": [ - 3094 + 3373 ], "open_kills": [ - 3094 + 3373 ], "opening_attempts": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "role": [ - 3094 + 3373 ], "rounds": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "support_idx": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "trade_kill_successes": [ - 3094 + 3373 ], "traded_death_successes": [ - 3094 + 3373 ], "util_damage": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_select_column": {}, "v_player_match_map_roles_stddev_fields": { "adr": [ - 31 + 32 ], "awp_kills": [ - 31 + 32 ], "awp_share": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "entry_rate": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "open_deaths": [ - 31 + 32 ], "open_kills": [ - 31 + 32 ], "opening_attempts": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "support_idx": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "util_damage": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_stddev_pop_fields": { "adr": [ - 31 + 32 ], "awp_kills": [ - 31 + 32 ], "awp_share": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "entry_rate": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "open_deaths": [ - 31 + 32 ], "open_kills": [ - 31 + 32 ], "opening_attempts": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "support_idx": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "util_damage": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_stddev_samp_fields": { "adr": [ - 31 + 32 ], "awp_kills": [ - 31 + 32 ], "awp_share": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "entry_rate": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "open_deaths": [ - 31 + 32 ], "open_kills": [ - 31 + 32 ], "opening_attempts": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "support_idx": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "util_damage": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 5702 + 5986 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 3092 + 3371 ], "awp_kills": [ - 40 + 41 ], "awp_share": [ - 3092 + 3371 ], "deaths": [ - 40 + 41 ], "dpr": [ - 3092 + 3371 ], "entry_rate": [ - 3092 + 3371 ], "flash_assists": [ - 40 + 41 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kills": [ - 40 + 41 ], "kpr": [ - 3092 + 3371 ], "lineup_id": [ - 5170 + 5454 ], "match_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170 + 5454 ], "open_deaths": [ - 40 + 41 ], "open_kills": [ - 40 + 41 ], "opening_attempts": [ - 40 + 41 ], "role": [ - 80 + 84 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "support_idx": [ - 3092 + 3371 ], "total_kills": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "util_damage": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_sum_fields": { "adr": [ - 3092 + 3371 ], "awp_kills": [ - 40 + 41 ], "awp_share": [ - 3092 + 3371 ], "deaths": [ - 40 + 41 ], "dpr": [ - 3092 + 3371 ], "entry_rate": [ - 3092 + 3371 ], "flash_assists": [ - 40 + 41 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kills": [ - 40 + 41 ], "kpr": [ - 3092 + 3371 ], "open_deaths": [ - 40 + 41 ], "open_kills": [ - 40 + 41 ], "opening_attempts": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "support_idx": [ - 3092 + 3371 ], "total_kills": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "util_damage": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_var_pop_fields": { "adr": [ - 31 + 32 ], "awp_kills": [ - 31 + 32 ], "awp_share": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "entry_rate": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "open_deaths": [ - 31 + 32 ], "open_kills": [ - 31 + 32 ], "opening_attempts": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "support_idx": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "util_damage": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_var_samp_fields": { "adr": [ - 31 + 32 ], "awp_kills": [ - 31 + 32 ], "awp_share": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "entry_rate": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "open_deaths": [ - 31 + 32 ], "open_kills": [ - 31 + 32 ], "opening_attempts": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "support_idx": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "util_damage": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_map_roles_variance_fields": { "adr": [ - 31 + 32 ], "awp_kills": [ - 31 + 32 ], "awp_share": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "entry_rate": [ - 31 + 32 ], "flash_assists": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "open_deaths": [ - 31 + 32 ], "open_kills": [ - 31 + 32 ], "opening_attempts": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "support_idx": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "trade_kill_successes": [ - 31 + 32 ], "traded_death_successes": [ - 31 + 32 ], "util_damage": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "map": [ - 2392 + 2649 ], "map_id": [ - 5170 + 5454 ], "match": [ - 2882 + 3157 ], "match_created_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_result": [ - 80 + 84 ], "player_steam_id": [ - 264 + 269 ], "source": [ - 80 + 84 ], "type": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_aggregate": { "aggregate": [ - 5709 + 5993 ], "nodes": [ - 5707 + 5991 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_aggregate_fields": { "avg": [ - 5710 + 5994 ], "count": [ - 40, + 41, { "columns": [ - 5715, + 5999, "[v_player_match_performance_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5712 + 5996 ], "min": [ - 5713 + 5997 ], "stddev": [ - 5716 + 6000 ], "stddev_pop": [ - 5717 + 6001 ], "stddev_samp": [ - 5718 + 6002 ], "sum": [ - 5721 + 6005 ], "var_pop": [ - 5722 + 6006 ], "var_samp": [ - 5723 + 6007 ], "variance": [ - 5724 + 6008 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_avg_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_bool_exp": { "_and": [ - 5711 + 5995 ], "_not": [ - 5711 + 5995 ], "_or": [ - 5711 + 5995 ], "assists": [ - 41 + 42 ], "deaths": [ - 41 + 42 ], "kills": [ - 41 + 42 ], "map": [ - 2401 + 2658 ], "map_id": [ - 5172 + 5456 ], "match": [ - 2891 + 3168 ], "match_created_at": [ - 4671 + 4955 ], "match_id": [ - 5172 + 5456 ], "match_result": [ - 82 + 86 ], "player_steam_id": [ - 266 + 271 ], "source": [ - 82 + 86 ], "type": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_max_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "map_id": [ - 5170 + 5454 ], "match_created_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_result": [ - 80 + 84 ], "player_steam_id": [ - 264 + 269 ], "source": [ - 80 + 84 ], "type": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_min_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "map_id": [ - 5170 + 5454 ], "match_created_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_result": [ - 80 + 84 ], "player_steam_id": [ - 264 + 269 ], "source": [ - 80 + 84 ], "type": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "map": [ - 2411 + 2668 ], "map_id": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_created_at": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "match_result": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "source": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_select_column": {}, "v_player_match_performance_stddev_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_stddev_pop_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_stddev_samp_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 5720 + 6004 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_stream_cursor_value_input": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "map_id": [ - 5170 + 5454 ], "match_created_at": [ - 4670 + 4954 ], "match_id": [ - 5170 + 5454 ], "match_result": [ - 80 + 84 ], "player_steam_id": [ - 264 + 269 ], "source": [ - 80 + 84 ], "type": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_sum_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_var_pop_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_var_samp_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_performance_variance_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating": { "adr": [ - 3092 + 3371 ], "dpr": [ - 3092 + 3371 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kpr": [ - 3092 + 3371 ], "match": [ - 2882 + 3157 ], "match_id": [ - 5170 + 5454 ], "player": [ - 4052 + 4331 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_aggregate": { "aggregate": [ - 5727 + 6011 ], "nodes": [ - 5725 + 6009 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_aggregate_fields": { "avg": [ - 5728 + 6012 ], "count": [ - 40, + 41, { "columns": [ - 5733, + 6017, "[v_player_match_rating_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5730 + 6014 ], "min": [ - 5731 + 6015 ], "stddev": [ - 5734 + 6018 ], "stddev_pop": [ - 5735 + 6019 ], "stddev_samp": [ - 5736 + 6020 ], "sum": [ - 5739 + 6023 ], "var_pop": [ - 5740 + 6024 ], "var_samp": [ - 5741 + 6025 ], "variance": [ - 5742 + 6026 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_avg_fields": { "adr": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_bool_exp": { "_and": [ - 5729 + 6013 ], "_not": [ - 5729 + 6013 ], "_or": [ - 5729 + 6013 ], "adr": [ - 3093 + 3372 ], "dpr": [ - 3093 + 3372 ], "hltv_rating": [ - 3093 + 3372 ], "kast_pct": [ - 3093 + 3372 ], "kpr": [ - 3093 + 3372 ], "match": [ - 2891 + 3168 ], "match_id": [ - 5172 + 5456 ], "player": [ - 4056 + 4335 ], "rounds_played": [ - 41 + 42 ], "steam_id": [ - 266 + 271 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_max_fields": { "adr": [ - 3092 + 3371 ], "dpr": [ - 3092 + 3371 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kpr": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_min_fields": { "adr": [ - 3092 + 3371 ], "dpr": [ - 3092 + 3371 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kpr": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_order_by": { "adr": [ - 3094 + 3373 ], "dpr": [ - 3094 + 3373 ], "hltv_rating": [ - 3094 + 3373 ], "kast_pct": [ - 3094 + 3373 ], "kpr": [ - 3094 + 3373 ], "match": [ - 2902 + 3179 ], "match_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "rounds_played": [ - 3094 + 3373 ], "steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_select_column": {}, "v_player_match_rating_stddev_fields": { "adr": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_stddev_pop_fields": { "adr": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_stddev_samp_fields": { "adr": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 5738 + 6022 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 3092 + 3371 ], "dpr": [ - 3092 + 3371 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kpr": [ - 3092 + 3371 ], "match_id": [ - 5170 + 5454 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_sum_fields": { "adr": [ - 3092 + 3371 ], "dpr": [ - 3092 + 3371 ], "hltv_rating": [ - 3092 + 3371 ], "kast_pct": [ - 3092 + 3371 ], "kpr": [ - 3092 + 3371 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_var_pop_fields": { "adr": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_var_samp_fields": { "adr": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_match_rating_variance_fields": { "adr": [ - 31 + 32 ], "dpr": [ - 31 + 32 ], "hltv_rating": [ - 31 + 32 ], "kast_pct": [ - 31 + 32 ], "kpr": [ - 31 + 32 ], "rounds_played": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills": { "attacker_steam_id": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "match_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_aggregate": { "aggregate": [ - 5747 + 6031 ], "nodes": [ - 5743 + 6027 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 5746 + 6030 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5759 + 6043 ], "distinct": [ - 5 + 6 ], "filter": [ - 5752 + 6036 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 5750 + 6034 ], "count": [ - 40, + 41, { "columns": [ - 5759, + 6043, "[v_player_multi_kills_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5754 + 6038 ], "min": [ - 5756 + 6040 ], "stddev": [ - 5760 + 6044 ], "stddev_pop": [ - 5762 + 6046 ], "stddev_samp": [ - 5764 + 6048 ], "sum": [ - 5768 + 6052 ], "var_pop": [ - 5770 + 6054 ], "var_samp": [ - 5772 + 6056 ], "variance": [ - 5774 + 6058 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 5751 + 6035 ], "count": [ - 3094 + 3373 ], "max": [ - 5755 + 6039 ], "min": [ - 5757 + 6041 ], "stddev": [ - 5761 + 6045 ], "stddev_pop": [ - 5763 + 6047 ], "stddev_samp": [ - 5765 + 6049 ], "sum": [ - 5769 + 6053 ], "var_pop": [ - 5771 + 6055 ], "var_samp": [ - 5773 + 6057 ], "variance": [ - 5775 + 6059 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 5753 + 6037 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_avg_fields": { "attacker_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_bool_exp": { "_and": [ - 5752 + 6036 ], "_not": [ - 5752 + 6036 ], "_or": [ - 5752 + 6036 ], "attacker_steam_id": [ - 266 + 271 ], "kills": [ - 266 + 271 ], "match_id": [ - 5172 + 5456 ], "round": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_insert_input": { "attacker_steam_id": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "match_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_max_fields": { "attacker_steam_id": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "match_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_min_fields": { "attacker_steam_id": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "match_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "match_id": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_select_column": {}, "v_player_multi_kills_stddev_fields": { "attacker_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_stddev_pop_fields": { "attacker_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_stddev_samp_fields": { "attacker_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5767 + 6051 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_stream_cursor_value_input": { "attacker_steam_id": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "match_id": [ - 5170 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_sum_fields": { "attacker_steam_id": [ - 264 + 269 ], "kills": [ - 264 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_var_pop_fields": { "attacker_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_var_samp_fields": { "attacker_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_variance_fields": { "attacker_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "round": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners": { "first_played_at": [ - 4670 + 4954 ], "last_played_at": [ - 4670 + 4954 ], "matches_together": [ - 40 + 41 ], "partner": [ - 4052 + 4331 ], "partner_steam_id": [ - 264 + 269 ], "player": [ - 4052 + 4331 ], "steam_id": [ - 264 + 269 ], "wins_together": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_aggregate": { "aggregate": [ - 5778 + 6062 ], "nodes": [ - 5776 + 6060 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_aggregate_fields": { "avg": [ - 5779 + 6063 ], "count": [ - 40, + 41, { "columns": [ - 5784, + 6068, "[v_player_queue_partners_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5781 + 6065 ], "min": [ - 5782 + 6066 ], "stddev": [ - 5785 + 6069 ], "stddev_pop": [ - 5786 + 6070 ], "stddev_samp": [ - 5787 + 6071 ], "sum": [ - 5790 + 6074 ], "var_pop": [ - 5791 + 6075 ], "var_samp": [ - 5792 + 6076 ], "variance": [ - 5793 + 6077 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_avg_fields": { "matches_together": [ - 31 + 32 ], "partner_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "wins_together": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_bool_exp": { "_and": [ - 5780 + 6064 ], "_not": [ - 5780 + 6064 ], "_or": [ - 5780 + 6064 ], "first_played_at": [ - 4671 + 4955 ], "last_played_at": [ - 4671 + 4955 ], "matches_together": [ - 41 + 42 ], "partner": [ - 4056 + 4335 ], "partner_steam_id": [ - 266 + 271 ], "player": [ - 4056 + 4335 ], "steam_id": [ - 266 + 271 ], "wins_together": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_max_fields": { "first_played_at": [ - 4670 + 4954 ], "last_played_at": [ - 4670 + 4954 ], "matches_together": [ - 40 + 41 ], "partner_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "wins_together": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_min_fields": { "first_played_at": [ - 4670 + 4954 ], "last_played_at": [ - 4670 + 4954 ], "matches_together": [ - 40 + 41 ], "partner_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "wins_together": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_order_by": { "first_played_at": [ - 3094 + 3373 ], "last_played_at": [ - 3094 + 3373 ], "matches_together": [ - 3094 + 3373 ], "partner": [ - 4065 + 4344 ], "partner_steam_id": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "steam_id": [ - 3094 + 3373 ], "wins_together": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_select_column": {}, "v_player_queue_partners_stddev_fields": { "matches_together": [ - 31 + 32 ], "partner_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "wins_together": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_stddev_pop_fields": { "matches_together": [ - 31 + 32 ], "partner_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "wins_together": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_stddev_samp_fields": { "matches_together": [ - 31 + 32 ], "partner_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "wins_together": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_stream_cursor_input": { "initial_value": [ - 5789 + 6073 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_stream_cursor_value_input": { "first_played_at": [ - 4670 + 4954 ], "last_played_at": [ - 4670 + 4954 ], "matches_together": [ - 40 + 41 ], "partner_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "wins_together": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_sum_fields": { "matches_together": [ - 40 + 41 ], "partner_steam_id": [ - 264 + 269 ], "steam_id": [ - 264 + 269 ], "wins_together": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_var_pop_fields": { "matches_together": [ - 31 + 32 ], "partner_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "wins_together": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_var_samp_fields": { "matches_together": [ - 31 + 32 ], "partner_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "wins_together": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_queue_partners_variance_fields": { "matches_together": [ - 31 + 32 ], "partner_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "wins_together": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage": { "damage": [ - 264 + 269 ], "hits": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "source": [ - 80 + 84 ], "type": [ - 80 + 84 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5796 + 6080 ], "nodes": [ - 5794 + 6078 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5797 + 6081 ], "count": [ - 40, + 41, { "columns": [ - 5802, + 6086, "[v_player_weapon_damage_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5799 + 6083 ], "min": [ - 5800 + 6084 ], "stddev": [ - 5803 + 6087 ], "stddev_pop": [ - 5804 + 6088 ], "stddev_samp": [ - 5805 + 6089 ], "sum": [ - 5808 + 6092 ], "var_pop": [ - 5809 + 6093 ], "var_samp": [ - 5810 + 6094 ], "variance": [ - 5811 + 6095 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_avg_fields": { "damage": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5798 + 6082 ], "_not": [ - 5798 + 6082 ], "_or": [ - 5798 + 6082 ], "damage": [ - 266 + 271 ], "hits": [ - 266 + 271 ], "player_steam_id": [ - 266 + 271 ], "source": [ - 82 + 86 ], "type": [ - 82 + 86 ], "with": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_max_fields": { "damage": [ - 264 + 269 ], "hits": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "source": [ - 80 + 84 ], "type": [ - 80 + 84 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_min_fields": { "damage": [ - 264 + 269 ], "hits": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "source": [ - 80 + 84 ], "type": [ - 80 + 84 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_order_by": { "damage": [ - 3094 + 3373 ], "hits": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "source": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "with": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_select_column": {}, "v_player_weapon_damage_stddev_fields": { "damage": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_stddev_pop_fields": { "damage": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_stddev_samp_fields": { "damage": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5807 + 6091 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_stream_cursor_value_input": { "damage": [ - 264 + 269 ], "hits": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "source": [ - 80 + 84 ], "type": [ - 80 + 84 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_sum_fields": { "damage": [ - 264 + 269 ], "hits": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_var_pop_fields": { "damage": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_var_samp_fields": { "damage": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_damage_variance_fields": { "damage": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills": { "kill_count": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "rounds": [ - 264 + 269 ], "source": [ - 80 + 84 ], "type": [ - 80 + 84 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5814 + 6098 ], "nodes": [ - 5812 + 6096 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5815 + 6099 ], "count": [ - 40, + 41, { "columns": [ - 5820, + 6104, "[v_player_weapon_kills_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5817 + 6101 ], "min": [ - 5818 + 6102 ], "stddev": [ - 5821 + 6105 ], "stddev_pop": [ - 5822 + 6106 ], "stddev_samp": [ - 5823 + 6107 ], "sum": [ - 5826 + 6110 ], "var_pop": [ - 5827 + 6111 ], "var_samp": [ - 5828 + 6112 ], "variance": [ - 5829 + 6113 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_avg_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5816 + 6100 ], "_not": [ - 5816 + 6100 ], "_or": [ - 5816 + 6100 ], "kill_count": [ - 266 + 271 ], "player_steam_id": [ - 266 + 271 ], "rounds": [ - 266 + 271 ], "source": [ - 82 + 86 ], "type": [ - 82 + 86 ], "with": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_max_fields": { "kill_count": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "rounds": [ - 264 + 269 ], "source": [ - 80 + 84 ], "type": [ - 80 + 84 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_min_fields": { "kill_count": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "rounds": [ - 264 + 269 ], "source": [ - 80 + 84 ], "type": [ - 80 + 84 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_order_by": { "kill_count": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "rounds": [ - 3094 + 3373 ], "source": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "with": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_select_column": {}, "v_player_weapon_kills_stddev_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_stddev_pop_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_stddev_samp_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5825 + 6109 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_stream_cursor_value_input": { "kill_count": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "rounds": [ - 264 + 269 ], "source": [ - 80 + 84 ], "type": [ - 80 + 84 ], "with": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_sum_fields": { "kill_count": [ - 264 + 269 ], "player_steam_id": [ - 264 + 269 ], "rounds": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_var_pop_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_var_samp_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_player_weapon_kills_variance_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps": { "active_pool": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "map_pool": [ - 2373 + 2630 ], "map_pool_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "patch": [ - 80 + 84 ], "poster": [ - 80 + 84 ], "type": [ - 80 + 84 ], "workshop_map_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_aggregate": { "aggregate": [ - 5836 + 6120 ], "nodes": [ - 5830 + 6114 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5833 + 6117 ], "bool_or": [ - 5834 + 6118 ], "count": [ - 5835 + 6119 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5848 + 6132 ], "distinct": [ - 5 + 6 ], "filter": [ - 5839 + 6123 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5849 + 6133 ], "distinct": [ - 5 + 6 ], "filter": [ - 5839 + 6123 ], "predicate": [ - 6 + 7 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5847 + 6131 ], "distinct": [ - 5 + 6 ], "filter": [ - 5839 + 6123 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 5847, + 6131, "[v_pool_maps_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5841 + 6125 ], "min": [ - 5843 + 6127 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_aggregate_order_by": { "count": [ - 3094 + 3373 ], "max": [ - 5842 + 6126 ], "min": [ - 5844 + 6128 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5840 + 6124 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_bool_exp": { "_and": [ - 5839 + 6123 ], "_not": [ - 5839 + 6123 ], "_or": [ - 5839 + 6123 ], "active_pool": [ - 6 + 7 ], "id": [ - 5172 + 5456 ], "label": [ - 82 + 86 ], "map_pool": [ - 2376 + 2633 ], "map_pool_id": [ - 5172 + 5456 ], "name": [ - 82 + 86 ], "patch": [ - 82 + 86 ], "poster": [ - 82 + 86 ], "type": [ - 82 + 86 ], "workshop_map_id": [ - 82 + 86 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_insert_input": { "active_pool": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "map_pool": [ - 2382 + 2639 ], "map_pool_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "patch": [ - 80 + 84 ], "poster": [ - 80 + 84 ], "type": [ - 80 + 84 ], "workshop_map_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_max_fields": { "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "map_pool_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "patch": [ - 80 + 84 ], "poster": [ - 80 + 84 ], "type": [ - 80 + 84 ], "workshop_map_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_max_order_by": { "id": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "map_pool_id": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "patch": [ - 3094 + 3373 ], "poster": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "workshop_map_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_min_fields": { "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "map_pool_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "patch": [ - 80 + 84 ], "poster": [ - 80 + 84 ], "type": [ - 80 + 84 ], "workshop_map_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_min_order_by": { "id": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "map_pool_id": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "patch": [ - 3094 + 3373 ], "poster": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "workshop_map_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5830 + 6114 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_order_by": { "active_pool": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "label": [ - 3094 + 3373 ], "map_pool": [ - 2384 + 2641 ], "map_pool_id": [ - 3094 + 3373 ], "name": [ - 3094 + 3373 ], "patch": [ - 3094 + 3373 ], "poster": [ - 3094 + 3373 ], "type": [ - 3094 + 3373 ], "workshop_map_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_select_column": {}, @@ -133920,2406 +139356,2406 @@ export default { "v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns": {}, "v_pool_maps_set_input": { "active_pool": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "map_pool_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "patch": [ - 80 + 84 ], "poster": [ - 80 + 84 ], "type": [ - 80 + 84 ], "workshop_map_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5852 + 6136 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_stream_cursor_value_input": { "active_pool": [ - 5 + 6 ], "id": [ - 5170 + 5454 ], "label": [ - 80 + 84 ], "map_pool_id": [ - 5170 + 5454 ], "name": [ - 80 + 84 ], "patch": [ - 80 + 84 ], "poster": [ - 80 + 84 ], "type": [ - 80 + 84 ], "workshop_map_id": [ - 80 + 84 ], "__typename": [ - 80 + 84 ] }, "v_pool_maps_updates": { "_set": [ - 5850 + 6134 ], "where": [ - 5839 + 6123 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status": { "busy_accounts": [ - 40 + 41 ], "free_accounts": [ - 40 + 41 ], "id": [ - 40 + 41 ], "total_accounts": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5856 + 6140 ], "nodes": [ - 5854 + 6138 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5857 + 6141 ], "count": [ - 40, + 41, { "columns": [ - 5862, + 6146, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5859 + 6143 ], "min": [ - 5860 + 6144 ], "stddev": [ - 5863 + 6147 ], "stddev_pop": [ - 5864 + 6148 ], "stddev_samp": [ - 5865 + 6149 ], "sum": [ - 5868 + 6152 ], "var_pop": [ - 5869 + 6153 ], "var_samp": [ - 5870 + 6154 ], "variance": [ - 5871 + 6155 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_avg_fields": { "busy_accounts": [ - 31 + 32 ], "free_accounts": [ - 31 + 32 ], "id": [ - 31 + 32 ], "total_accounts": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5858 + 6142 ], "_not": [ - 5858 + 6142 ], "_or": [ - 5858 + 6142 ], "busy_accounts": [ - 41 + 42 ], "free_accounts": [ - 41 + 42 ], "id": [ - 41 + 42 ], "total_accounts": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_max_fields": { "busy_accounts": [ - 40 + 41 ], "free_accounts": [ - 40 + 41 ], "id": [ - 40 + 41 ], "total_accounts": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_min_fields": { "busy_accounts": [ - 40 + 41 ], "free_accounts": [ - 40 + 41 ], "id": [ - 40 + 41 ], "total_accounts": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 3094 + 3373 ], "free_accounts": [ - 3094 + 3373 ], "id": [ - 3094 + 3373 ], "total_accounts": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_select_column": {}, "v_steam_account_pool_status_stddev_fields": { "busy_accounts": [ - 31 + 32 ], "free_accounts": [ - 31 + 32 ], "id": [ - 31 + 32 ], "total_accounts": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_stddev_pop_fields": { "busy_accounts": [ - 31 + 32 ], "free_accounts": [ - 31 + 32 ], "id": [ - 31 + 32 ], "total_accounts": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_stddev_samp_fields": { "busy_accounts": [ - 31 + 32 ], "free_accounts": [ - 31 + 32 ], "id": [ - 31 + 32 ], "total_accounts": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5867 + 6151 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_stream_cursor_value_input": { "busy_accounts": [ - 40 + 41 ], "free_accounts": [ - 40 + 41 ], "id": [ - 40 + 41 ], "total_accounts": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_sum_fields": { "busy_accounts": [ - 40 + 41 ], "free_accounts": [ - 40 + 41 ], "id": [ - 40 + 41 ], "total_accounts": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_var_pop_fields": { "busy_accounts": [ - 31 + 32 ], "free_accounts": [ - 31 + 32 ], "id": [ - 31 + 32 ], "total_accounts": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_var_samp_fields": { "busy_accounts": [ - 31 + 32 ], "free_accounts": [ - 31 + 32 ], "id": [ - 31 + 32 ], "total_accounts": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_steam_account_pool_status_variance_fields": { "busy_accounts": [ - 31 + 32 ], "free_accounts": [ - 31 + 32 ], "id": [ - 31 + 32 ], "total_accounts": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks": { "avg_duel_elo": [ - 40 + 41 ], "avg_elo": [ - 40 + 41 ], "avg_faceit_elo": [ - 40 + 41 ], "avg_faceit_level": [ - 1777 + 1842 ], "avg_premier": [ - 40 + 41 ], "avg_wingman_elo": [ - 40 + 41 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "roster_size": [ - 264 + 269 ], "team": [ - 4621 + 4905 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_aggregate": { "aggregate": [ - 5874 + 6158 ], "nodes": [ - 5872 + 6156 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_aggregate_fields": { "avg": [ - 5875 + 6159 ], "count": [ - 40, + 41, { "columns": [ - 5882, + 6166, "[v_team_ranks_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5878 + 6162 ], "min": [ - 5879 + 6163 ], "stddev": [ - 5883 + 6167 ], "stddev_pop": [ - 5884 + 6168 ], "stddev_samp": [ - 5885 + 6169 ], "sum": [ - 5888 + 6172 ], "var_pop": [ - 5889 + 6173 ], "var_samp": [ - 5890 + 6174 ], "variance": [ - 5891 + 6175 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_avg_fields": { "avg_duel_elo": [ - 31 + 32 ], "avg_elo": [ - 31 + 32 ], "avg_faceit_elo": [ - 31 + 32 ], "avg_faceit_level": [ - 31 + 32 ], "avg_premier": [ - 31 + 32 ], "avg_wingman_elo": [ - 31 + 32 ], "max_elo": [ - 31 + 32 ], "min_elo": [ - 31 + 32 ], "roster_size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_bool_exp": { "_and": [ - 5876 + 6160 ], "_not": [ - 5876 + 6160 ], "_or": [ - 5876 + 6160 ], "avg_duel_elo": [ - 41 + 42 ], "avg_elo": [ - 41 + 42 ], "avg_faceit_elo": [ - 41 + 42 ], "avg_faceit_level": [ - 1778 + 1843 ], "avg_premier": [ - 41 + 42 ], "avg_wingman_elo": [ - 41 + 42 ], "max_elo": [ - 41 + 42 ], "min_elo": [ - 41 + 42 ], "roster_size": [ - 266 + 271 ], "team": [ - 4632 + 4916 ], "team_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_insert_input": { "avg_duel_elo": [ - 40 + 41 ], "avg_elo": [ - 40 + 41 ], "avg_faceit_elo": [ - 40 + 41 ], "avg_faceit_level": [ - 1777 + 1842 ], "avg_premier": [ - 40 + 41 ], "avg_wingman_elo": [ - 40 + 41 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "roster_size": [ - 264 + 269 ], "team": [ - 4641 + 4925 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_max_fields": { "avg_duel_elo": [ - 40 + 41 ], "avg_elo": [ - 40 + 41 ], "avg_faceit_elo": [ - 40 + 41 ], "avg_faceit_level": [ - 1777 + 1842 ], "avg_premier": [ - 40 + 41 ], "avg_wingman_elo": [ - 40 + 41 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "roster_size": [ - 264 + 269 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_min_fields": { "avg_duel_elo": [ - 40 + 41 ], "avg_elo": [ - 40 + 41 ], "avg_faceit_elo": [ - 40 + 41 ], "avg_faceit_level": [ - 1777 + 1842 ], "avg_premier": [ - 40 + 41 ], "avg_wingman_elo": [ - 40 + 41 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "roster_size": [ - 264 + 269 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5877 + 6161 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_order_by": { "avg_duel_elo": [ - 3094 + 3373 ], "avg_elo": [ - 3094 + 3373 ], "avg_faceit_elo": [ - 3094 + 3373 ], "avg_faceit_level": [ - 3094 + 3373 ], "avg_premier": [ - 3094 + 3373 ], "avg_wingman_elo": [ - 3094 + 3373 ], "max_elo": [ - 3094 + 3373 ], "min_elo": [ - 3094 + 3373 ], "roster_size": [ - 3094 + 3373 ], "team": [ - 4643 + 4927 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_select_column": {}, "v_team_ranks_stddev_fields": { "avg_duel_elo": [ - 31 + 32 ], "avg_elo": [ - 31 + 32 ], "avg_faceit_elo": [ - 31 + 32 ], "avg_faceit_level": [ - 31 + 32 ], "avg_premier": [ - 31 + 32 ], "avg_wingman_elo": [ - 31 + 32 ], "max_elo": [ - 31 + 32 ], "min_elo": [ - 31 + 32 ], "roster_size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_stddev_pop_fields": { "avg_duel_elo": [ - 31 + 32 ], "avg_elo": [ - 31 + 32 ], "avg_faceit_elo": [ - 31 + 32 ], "avg_faceit_level": [ - 31 + 32 ], "avg_premier": [ - 31 + 32 ], "avg_wingman_elo": [ - 31 + 32 ], "max_elo": [ - 31 + 32 ], "min_elo": [ - 31 + 32 ], "roster_size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_stddev_samp_fields": { "avg_duel_elo": [ - 31 + 32 ], "avg_elo": [ - 31 + 32 ], "avg_faceit_elo": [ - 31 + 32 ], "avg_faceit_level": [ - 31 + 32 ], "avg_premier": [ - 31 + 32 ], "avg_wingman_elo": [ - 31 + 32 ], "max_elo": [ - 31 + 32 ], "min_elo": [ - 31 + 32 ], "roster_size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5887 + 6171 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_stream_cursor_value_input": { "avg_duel_elo": [ - 40 + 41 ], "avg_elo": [ - 40 + 41 ], "avg_faceit_elo": [ - 40 + 41 ], "avg_faceit_level": [ - 1777 + 1842 ], "avg_premier": [ - 40 + 41 ], "avg_wingman_elo": [ - 40 + 41 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "roster_size": [ - 264 + 269 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_sum_fields": { "avg_duel_elo": [ - 40 + 41 ], "avg_elo": [ - 40 + 41 ], "avg_faceit_elo": [ - 40 + 41 ], "avg_faceit_level": [ - 1777 + 1842 ], "avg_premier": [ - 40 + 41 ], "avg_wingman_elo": [ - 40 + 41 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "roster_size": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_var_pop_fields": { "avg_duel_elo": [ - 31 + 32 ], "avg_elo": [ - 31 + 32 ], "avg_faceit_elo": [ - 31 + 32 ], "avg_faceit_level": [ - 31 + 32 ], "avg_premier": [ - 31 + 32 ], "avg_wingman_elo": [ - 31 + 32 ], "max_elo": [ - 31 + 32 ], "min_elo": [ - 31 + 32 ], "roster_size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_var_samp_fields": { "avg_duel_elo": [ - 31 + 32 ], "avg_elo": [ - 31 + 32 ], "avg_faceit_elo": [ - 31 + 32 ], "avg_faceit_level": [ - 31 + 32 ], "avg_premier": [ - 31 + 32 ], "avg_wingman_elo": [ - 31 + 32 ], "max_elo": [ - 31 + 32 ], "min_elo": [ - 31 + 32 ], "roster_size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_ranks_variance_fields": { "avg_duel_elo": [ - 31 + 32 ], "avg_elo": [ - 31 + 32 ], "avg_faceit_elo": [ - 31 + 32 ], "avg_faceit_level": [ - 31 + 32 ], "avg_premier": [ - 31 + 32 ], "avg_wingman_elo": [ - 31 + 32 ], "max_elo": [ - 31 + 32 ], "min_elo": [ - 31 + 32 ], "roster_size": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation": { "late_cancels": [ - 264 + 269 ], "no_shows": [ - 264 + 269 ], "reliability_pct": [ - 3092 + 3371 ], "scrims_completed": [ - 264 + 269 ], "team": [ - 4621 + 4905 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_aggregate": { "aggregate": [ - 5894 + 6178 ], "nodes": [ - 5892 + 6176 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_aggregate_fields": { "avg": [ - 5895 + 6179 ], "count": [ - 40, + 41, { "columns": [ - 5902, + 6186, "[v_team_reputation_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5898 + 6182 ], "min": [ - 5899 + 6183 ], "stddev": [ - 5903 + 6187 ], "stddev_pop": [ - 5904 + 6188 ], "stddev_samp": [ - 5905 + 6189 ], "sum": [ - 5908 + 6192 ], "var_pop": [ - 5909 + 6193 ], "var_samp": [ - 5910 + 6194 ], "variance": [ - 5911 + 6195 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_avg_fields": { "late_cancels": [ - 31 + 32 ], "no_shows": [ - 31 + 32 ], "reliability_pct": [ - 31 + 32 ], "scrims_completed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_bool_exp": { "_and": [ - 5896 + 6180 ], "_not": [ - 5896 + 6180 ], "_or": [ - 5896 + 6180 ], "late_cancels": [ - 266 + 271 ], "no_shows": [ - 266 + 271 ], "reliability_pct": [ - 3093 + 3372 ], "scrims_completed": [ - 266 + 271 ], "team": [ - 4632 + 4916 ], "team_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_insert_input": { "late_cancels": [ - 264 + 269 ], "no_shows": [ - 264 + 269 ], "reliability_pct": [ - 3092 + 3371 ], "scrims_completed": [ - 264 + 269 ], "team": [ - 4641 + 4925 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_max_fields": { "late_cancels": [ - 264 + 269 ], "no_shows": [ - 264 + 269 ], "reliability_pct": [ - 3092 + 3371 ], "scrims_completed": [ - 264 + 269 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_min_fields": { "late_cancels": [ - 264 + 269 ], "no_shows": [ - 264 + 269 ], "reliability_pct": [ - 3092 + 3371 ], "scrims_completed": [ - 264 + 269 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5897 + 6181 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_order_by": { "late_cancels": [ - 3094 + 3373 ], "no_shows": [ - 3094 + 3373 ], "reliability_pct": [ - 3094 + 3373 ], "scrims_completed": [ - 3094 + 3373 ], "team": [ - 4643 + 4927 ], "team_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_select_column": {}, "v_team_reputation_stddev_fields": { "late_cancels": [ - 31 + 32 ], "no_shows": [ - 31 + 32 ], "reliability_pct": [ - 31 + 32 ], "scrims_completed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_stddev_pop_fields": { "late_cancels": [ - 31 + 32 ], "no_shows": [ - 31 + 32 ], "reliability_pct": [ - 31 + 32 ], "scrims_completed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_stddev_samp_fields": { "late_cancels": [ - 31 + 32 ], "no_shows": [ - 31 + 32 ], "reliability_pct": [ - 31 + 32 ], "scrims_completed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5907 + 6191 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_stream_cursor_value_input": { "late_cancels": [ - 264 + 269 ], "no_shows": [ - 264 + 269 ], "reliability_pct": [ - 3092 + 3371 ], "scrims_completed": [ - 264 + 269 ], "team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_sum_fields": { "late_cancels": [ - 264 + 269 ], "no_shows": [ - 264 + 269 ], "reliability_pct": [ - 3092 + 3371 ], "scrims_completed": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_var_pop_fields": { "late_cancels": [ - 31 + 32 ], "no_shows": [ - 31 + 32 ], "reliability_pct": [ - 31 + 32 ], "scrims_completed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_var_samp_fields": { "late_cancels": [ - 31 + 32 ], "no_shows": [ - 31 + 32 ], "reliability_pct": [ - 31 + 32 ], "scrims_completed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_reputation_variance_fields": { "late_cancels": [ - 31 + 32 ], "no_shows": [ - 31 + 32 ], "reliability_pct": [ - 31 + 32 ], "scrims_completed": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results": { "group_number": [ - 40 + 41 ], "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "placement": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "stage": [ - 4931 + 5215 ], "team": [ - 5064 + 5348 ], "team_kdr": [ - 1777 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate": { "aggregate": [ - 5926 + 6210 ], "nodes": [ - 5912 + 6196 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5915 + 6199 ], "corr": [ - 5916 + 6200 ], "count": [ - 5918 + 6202 ], "covar_samp": [ - 5919 + 6203 ], "max": [ - 5921 + 6205 ], "min": [ - 5922 + 6206 ], "stddev_samp": [ - 5923 + 6207 ], "sum": [ - 5924 + 6208 ], "var_samp": [ - 5925 + 6209 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5945 + 6229 ], "distinct": [ - 5 + 6 ], "filter": [ - 5931 + 6215 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5917 + 6201 ], "distinct": [ - 5 + 6 ], "filter": [ - 5931 + 6215 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5946 + 6230 ], "Y": [ - 5946 + 6230 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5944 + 6228 ], "distinct": [ - 5 + 6 ], "filter": [ - 5931 + 6215 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5920 + 6204 ], "distinct": [ - 5 + 6 ], "filter": [ - 5931 + 6215 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5947 + 6231 ], "Y": [ - 5947 + 6231 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5948 + 6232 ], "distinct": [ - 5 + 6 ], "filter": [ - 5931 + 6215 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5949 + 6233 ], "distinct": [ - 5 + 6 ], "filter": [ - 5931 + 6215 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5950 + 6234 ], "distinct": [ - 5 + 6 ], "filter": [ - 5931 + 6215 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5951 + 6235 ], "distinct": [ - 5 + 6 ], "filter": [ - 5931 + 6215 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5952 + 6236 ], "distinct": [ - 5 + 6 ], "filter": [ - 5931 + 6215 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5929 + 6213 ], "count": [ - 40, + 41, { "columns": [ - 5944, + 6228, "[v_team_stage_results_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5935 + 6219 ], "min": [ - 5937 + 6221 ], "stddev": [ - 5954 + 6238 ], "stddev_pop": [ - 5956 + 6240 ], "stddev_samp": [ - 5958 + 6242 ], "sum": [ - 5962 + 6246 ], "var_pop": [ - 5966 + 6250 ], "var_samp": [ - 5968 + 6252 ], "variance": [ - 5970 + 6254 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5930 + 6214 ], "count": [ - 3094 + 3373 ], "max": [ - 5936 + 6220 ], "min": [ - 5938 + 6222 ], "stddev": [ - 5955 + 6239 ], "stddev_pop": [ - 5957 + 6241 ], "stddev_samp": [ - 5959 + 6243 ], "sum": [ - 5963 + 6247 ], "var_pop": [ - 5967 + 6251 ], "var_samp": [ - 5969 + 6253 ], "variance": [ - 5971 + 6255 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5934 + 6218 ], "on_conflict": [ - 5941 + 6225 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_avg_fields": { "group_number": [ - 31 + 32 ], "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "team_kdr": [ - 31 + 32 ], "total_deaths": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_avg_order_by": { "group_number": [ - 3094 + 3373 ], "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_bool_exp": { "_and": [ - 5931 + 6215 ], "_not": [ - 5931 + 6215 ], "_or": [ - 5931 + 6215 ], "group_number": [ - 41 + 42 ], "head_to_head_match_wins": [ - 41 + 42 ], "head_to_head_rounds_won": [ - 41 + 42 ], "losses": [ - 41 + 42 ], "maps_lost": [ - 41 + 42 ], "maps_won": [ - 41 + 42 ], "matches_played": [ - 41 + 42 ], "matches_remaining": [ - 41 + 42 ], "placement": [ - 41 + 42 ], "rank": [ - 41 + 42 ], "rounds_lost": [ - 41 + 42 ], "rounds_won": [ - 41 + 42 ], "stage": [ - 4943 + 5227 ], "team": [ - 5073 + 5357 ], "team_kdr": [ - 1778 + 1843 ], "total_deaths": [ - 41 + 42 ], "total_kills": [ - 41 + 42 ], "tournament_stage_id": [ - 5172 + 5456 ], "tournament_team_id": [ - 5172 + 5456 ], "wins": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_constraint": {}, "v_team_stage_results_inc_input": { "group_number": [ - 40 + 41 ], "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "placement": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "team_kdr": [ - 1777 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_insert_input": { "group_number": [ - 40 + 41 ], "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "placement": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "stage": [ - 4955 + 5239 ], "team": [ - 5082 + 5366 ], "team_kdr": [ - 1777 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_max_fields": { "group_number": [ - 40 + 41 ], "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "placement": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "team_kdr": [ - 1777 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_max_order_by": { "group_number": [ - 3094 + 3373 ], "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "tournament_stage_id": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_min_fields": { "group_number": [ - 40 + 41 ], "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "placement": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "team_kdr": [ - 1777 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_min_order_by": { "group_number": [ - 3094 + 3373 ], "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "tournament_stage_id": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5912 + 6196 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5934 + 6218 ], "on_conflict": [ - 5941 + 6225 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_on_conflict": { "constraint": [ - 5932 + 6216 ], "update_columns": [ - 5964 + 6248 ], "where": [ - 5931 + 6215 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_order_by": { "group_number": [ - 3094 + 3373 ], "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "stage": [ - 4957 + 5241 ], "team": [ - 5084 + 5368 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "tournament_stage_id": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_select_column": {}, @@ -136333,1355 +141769,1411 @@ export default { "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns": {}, "v_team_stage_results_set_input": { "group_number": [ - 40 + 41 ], "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "placement": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "team_kdr": [ - 1777 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_stddev_fields": { "group_number": [ - 31 + 32 ], "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "team_kdr": [ - 31 + 32 ], "total_deaths": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 3094 + 3373 ], "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_stddev_pop_fields": { "group_number": [ - 31 + 32 ], "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "team_kdr": [ - 31 + 32 ], "total_deaths": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 3094 + 3373 ], "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_stddev_samp_fields": { "group_number": [ - 31 + 32 ], "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "team_kdr": [ - 31 + 32 ], "total_deaths": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 3094 + 3373 ], "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5961 + 6245 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_stream_cursor_value_input": { "group_number": [ - 40 + 41 ], "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "placement": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "team_kdr": [ - 1777 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_stage_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_sum_fields": { "group_number": [ - 40 + 41 ], "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "placement": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "team_kdr": [ - 1777 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_sum_order_by": { "group_number": [ - 3094 + 3373 ], "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5933 + 6217 ], "_set": [ - 5953 + 6237 ], "where": [ - 5931 + 6215 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_var_pop_fields": { "group_number": [ - 31 + 32 ], "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "team_kdr": [ - 31 + 32 ], "total_deaths": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 3094 + 3373 ], "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_var_samp_fields": { "group_number": [ - 31 + 32 ], "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "team_kdr": [ - 31 + 32 ], "total_deaths": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 3094 + 3373 ], "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_variance_fields": { "group_number": [ - 31 + 32 ], "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "team_kdr": [ - 31 + 32 ], "total_deaths": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_stage_results_variance_order_by": { "group_number": [ - 3094 + 3373 ], "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "placement": [ - 3094 + 3373 ], "rank": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "team": [ - 5064 + 5348 ], "team_kdr": [ - 1777 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament": [ - 5106 + 5390 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5986 + 6270 ], "nodes": [ - 5972 + 6256 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5975 + 6259 ], "corr": [ - 5976 + 6260 ], "count": [ - 5978 + 6262 ], "covar_samp": [ - 5979 + 6263 ], "max": [ - 5981 + 6265 ], "min": [ - 5982 + 6266 ], "stddev_samp": [ - 5983 + 6267 ], "sum": [ - 5984 + 6268 ], "var_samp": [ - 5985 + 6269 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5999 + 6283 ], "distinct": [ - 5 + 6 ], "filter": [ - 5991 + 6275 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5977 + 6261 ], "distinct": [ - 5 + 6 ], "filter": [ - 5991 + 6275 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 6000 + 6284 ], "Y": [ - 6000 + 6284 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5998 + 6282 ], "distinct": [ - 5 + 6 ], "filter": [ - 5991 + 6275 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5980 + 6264 ], "distinct": [ - 5 + 6 ], "filter": [ - 5991 + 6275 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 6001 + 6285 ], "Y": [ - 6001 + 6285 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 6002 + 6286 ], "distinct": [ - 5 + 6 ], "filter": [ - 5991 + 6275 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 6003 + 6287 ], "distinct": [ - 5 + 6 ], "filter": [ - 5991 + 6275 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 6004 + 6288 ], "distinct": [ - 5 + 6 ], "filter": [ - 5991 + 6275 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 6005 + 6289 ], "distinct": [ - 5 + 6 ], "filter": [ - 5991 + 6275 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 6006 + 6290 ], "distinct": [ - 5 + 6 ], "filter": [ - 5991 + 6275 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5989 + 6273 ], "count": [ - 40, + 41, { "columns": [ - 5998, + 6282, "[v_team_tournament_results_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5993 + 6277 ], "min": [ - 5995 + 6279 ], "stddev": [ - 6007 + 6291 ], "stddev_pop": [ - 6009 + 6293 ], "stddev_samp": [ - 6011 + 6295 ], "sum": [ - 6015 + 6299 ], "var_pop": [ - 6017 + 6301 ], "var_samp": [ - 6019 + 6303 ], "variance": [ - 6021 + 6305 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5990 + 6274 ], "count": [ - 3094 + 3373 ], "max": [ - 5994 + 6278 ], "min": [ - 5996 + 6280 ], "stddev": [ - 6008 + 6292 ], "stddev_pop": [ - 6010 + 6294 ], "stddev_samp": [ - 6012 + 6296 ], "sum": [ - 6016 + 6300 ], "var_pop": [ - 6018 + 6302 ], "var_samp": [ - 6020 + 6304 ], "variance": [ - 6022 + 6306 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5992 + 6276 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_avg_fields": { "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "team_kdr": [ - 31 + 32 ], "total_deaths": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_bool_exp": { "_and": [ - 5991 + 6275 ], "_not": [ - 5991 + 6275 ], "_or": [ - 5991 + 6275 + ], + "head_to_head_match_wins": [ + 42 + ], + "head_to_head_rounds_won": [ + 42 + ], + "losses": [ + 42 + ], + "maps_lost": [ + 42 + ], + "maps_won": [ + 42 + ], + "matches_played": [ + 42 + ], + "matches_remaining": [ + 42 + ], + "rounds_lost": [ + 42 + ], + "rounds_won": [ + 42 + ], + "team": [ + 5357 + ], + "team_kdr": [ + 1843 + ], + "total_deaths": [ + 42 + ], + "total_kills": [ + 42 + ], + "tournament": [ + 5411 + ], + "tournament_id": [ + 5456 ], + "tournament_team_id": [ + 5456 + ], + "wins": [ + 42 + ], + "__typename": [ + 84 + ] + }, + "v_team_tournament_results_insert_input": { "head_to_head_match_wins": [ 41 ], @@ -137710,10 +143202,10 @@ export default { 41 ], "team": [ - 5073 + 5366 ], "team_kdr": [ - 1778 + 1842 ], "total_deaths": [ 41 @@ -137722,331 +143214,275 @@ export default { 41 ], "tournament": [ - 5127 + 5420 ], "tournament_id": [ - 5172 + 5454 ], "tournament_team_id": [ - 5172 + 5454 ], "wins": [ 41 ], "__typename": [ - 80 - ] - }, - "v_team_tournament_results_insert_input": { - "head_to_head_match_wins": [ - 40 - ], - "head_to_head_rounds_won": [ - 40 - ], - "losses": [ - 40 - ], - "maps_lost": [ - 40 - ], - "maps_won": [ - 40 - ], - "matches_played": [ - 40 - ], - "matches_remaining": [ - 40 - ], - "rounds_lost": [ - 40 - ], - "rounds_won": [ - 40 - ], - "team": [ - 5082 - ], - "team_kdr": [ - 1777 - ], - "total_deaths": [ - 40 - ], - "total_kills": [ - 40 - ], - "tournament": [ - 5136 - ], - "tournament_id": [ - 5170 - ], - "tournament_team_id": [ - 5170 - ], - "wins": [ - 40 - ], - "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_max_fields": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "team_kdr": [ - 1777 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_min_fields": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "team_kdr": [ - 1777 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team": [ - 5084 + 5368 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "tournament": [ - 5138 + 5422 ], "tournament_id": [ - 3094 + 3373 ], "tournament_team_id": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_select_column": {}, @@ -138060,1337 +143496,1337 @@ export default { "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns": {}, "v_team_tournament_results_stddev_fields": { "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "team_kdr": [ - 31 + 32 ], "total_deaths": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_stddev_pop_fields": { "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "team_kdr": [ - 31 + 32 ], "total_deaths": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_stddev_samp_fields": { "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "team_kdr": [ - 31 + 32 ], "total_deaths": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 6014 + 6298 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_stream_cursor_value_input": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "team_kdr": [ - 1777 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_id": [ - 5170 + 5454 ], "tournament_team_id": [ - 5170 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_sum_fields": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "losses": [ - 40 + 41 ], "maps_lost": [ - 40 + 41 ], "maps_won": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "matches_remaining": [ - 40 + 41 ], "rounds_lost": [ - 40 + 41 ], "rounds_won": [ - 40 + 41 ], "team_kdr": [ - 1777 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_var_pop_fields": { "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "team_kdr": [ - 31 + 32 ], "total_deaths": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_var_samp_fields": { "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "team_kdr": [ - 31 + 32 ], "total_deaths": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_variance_fields": { "head_to_head_match_wins": [ - 31 + 32 ], "head_to_head_rounds_won": [ - 31 + 32 ], "losses": [ - 31 + 32 ], "maps_lost": [ - 31 + 32 ], "maps_won": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "matches_remaining": [ - 31 + 32 ], "rounds_lost": [ - 31 + 32 ], "rounds_won": [ - 31 + 32 ], "team_kdr": [ - 31 + 32 ], "total_deaths": [ - 31 + 32 ], "total_kills": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 3094 + 3373 ], "head_to_head_rounds_won": [ - 3094 + 3373 ], "losses": [ - 3094 + 3373 ], "maps_lost": [ - 3094 + 3373 ], "maps_won": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "matches_remaining": [ - 3094 + 3373 ], "rounds_lost": [ - 3094 + 3373 ], "rounds_won": [ - 3094 + 3373 ], "team_kdr": [ - 3094 + 3373 ], "total_deaths": [ - 3094 + 3373 ], "total_kills": [ - 3094 + 3373 ], "wins": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player": [ - 4052 + 4331 ], "player_steam_id": [ - 264 + 269 ], "tournament": [ - 5106 + 5390 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 6037 + 6321 ], "nodes": [ - 6023 + 6307 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 6026 + 6310 ], "corr": [ - 6027 + 6311 ], "count": [ - 6029 + 6313 ], "covar_samp": [ - 6030 + 6314 ], "max": [ - 6032 + 6316 ], "min": [ - 6033 + 6317 ], "stddev_samp": [ - 6034 + 6318 ], "sum": [ - 6035 + 6319 ], "var_samp": [ - 6036 + 6320 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 6050 + 6334 ], "distinct": [ - 5 + 6 ], "filter": [ - 6042 + 6326 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 6028 + 6312 ], "distinct": [ - 5 + 6 ], "filter": [ - 6042 + 6326 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 6051 + 6335 ], "Y": [ - 6051 + 6335 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 6049 + 6333 ], "distinct": [ - 5 + 6 ], "filter": [ - 6042 + 6326 ], "predicate": [ - 41 + 42 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 6031 + 6315 ], "distinct": [ - 5 + 6 ], "filter": [ - 6042 + 6326 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 6052 + 6336 ], "Y": [ - 6052 + 6336 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 6053 + 6337 ], "distinct": [ - 5 + 6 ], "filter": [ - 6042 + 6326 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 6054 + 6338 ], "distinct": [ - 5 + 6 ], "filter": [ - 6042 + 6326 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 6055 + 6339 ], "distinct": [ - 5 + 6 ], "filter": [ - 6042 + 6326 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 6056 + 6340 ], "distinct": [ - 5 + 6 ], "filter": [ - 6042 + 6326 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 6057 + 6341 ], "distinct": [ - 5 + 6 ], "filter": [ - 6042 + 6326 ], "predicate": [ - 1778 + 1843 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 6040 + 6324 ], "count": [ - 40, + 41, { "columns": [ - 6049, + 6333, "[v_tournament_player_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 6044 + 6328 ], "min": [ - 6046 + 6330 ], "stddev": [ - 6058 + 6342 ], "stddev_pop": [ - 6060 + 6344 ], "stddev_samp": [ - 6062 + 6346 ], "sum": [ - 6066 + 6350 ], "var_pop": [ - 6068 + 6352 ], "var_samp": [ - 6070 + 6354 ], "variance": [ - 6072 + 6356 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 6041 + 6325 ], "count": [ - 3094 + 3373 ], "max": [ - 6045 + 6329 ], "min": [ - 6047 + 6331 ], "stddev": [ - 6059 + 6343 ], "stddev_pop": [ - 6061 + 6345 ], "stddev_samp": [ - 6063 + 6347 ], "sum": [ - 6067 + 6351 ], "var_pop": [ - 6069 + 6353 ], "var_samp": [ - 6071 + 6355 ], "variance": [ - 6073 + 6357 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 6043 + 6327 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_avg_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_bool_exp": { "_and": [ - 6042 + 6326 ], "_not": [ - 6042 + 6326 ], "_or": [ - 6042 + 6326 ], "assists": [ - 41 + 42 ], "deaths": [ - 41 + 42 ], "headshot_percentage": [ - 1778 + 1843 ], "headshots": [ - 41 + 42 ], "kdr": [ - 1778 + 1843 ], "kills": [ - 41 + 42 ], "matches_played": [ - 41 + 42 ], "player": [ - 4056 + 4335 ], "player_steam_id": [ - 266 + 271 ], "tournament": [ - 5127 + 5411 ], "tournament_id": [ - 5172 + 5456 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_insert_input": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player": [ - 4063 + 4342 ], "player_steam_id": [ - 264 + 269 ], "tournament": [ - 5136 + 5420 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_max_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_max_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_min_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_min_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player": [ - 4065 + 4344 ], "player_steam_id": [ - 3094 + 3373 ], "tournament": [ - 5138 + 5422 ], "tournament_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_select_column": {}, @@ -139404,4260 +144840,4749 @@ export default { "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, "v_tournament_player_stats_stddev_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_stddev_pop_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_stddev_samp_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 6065 + 6349 ], "ordering": [ - 347 + 352 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_stream_cursor_value_input": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "tournament_id": [ - 5170 + 5454 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_sum_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1777 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1777 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 264 + 269 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_var_pop_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_var_samp_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_variance_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "headshot_percentage": [ - 31 + 32 ], "headshots": [ - 31 + 32 ], "kdr": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "matches_played": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 80 + 84 ] }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 3094 + 3373 ], "deaths": [ - 3094 + 3373 ], "headshot_percentage": [ - 3094 + 3373 ], "headshots": [ - 3094 + 3373 ], "kdr": [ - 3094 + 3373 ], "kills": [ - 3094 + 3373 ], "matches_played": [ - 3094 + 3373 ], "player_steam_id": [ - 3094 + 3373 ], "__typename": [ - 80 + 84 ] }, "Query": { "_map_pool": [ - 107, + 112, { "distinct_on": [ - 119, + 124, "[_map_pool_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 117, + 122, "[_map_pool_order_by!]" ], "where": [ - 110 + 115 ] } ], "_map_pool_aggregate": [ - 108, + 113, { "distinct_on": [ - 119, + 124, "[_map_pool_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 117, + 122, "[_map_pool_order_by!]" ], "where": [ - 110 + 115 ] } ], "_map_pool_by_pk": [ - 107, + 112, { "map_id": [ - 5170, + 5454, "uuid!" ], "map_pool_id": [ - 5170, + 5454, "uuid!" ] } ], "abandoned_matches": [ - 126, + 131, { "distinct_on": [ - 147, + 152, "[abandoned_matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 145, + 150, "[abandoned_matches_order_by!]" ], "where": [ - 135 + 140 ] } ], "abandoned_matches_aggregate": [ - 127, + 132, { "distinct_on": [ - 147, + 152, "[abandoned_matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 145, + 150, "[abandoned_matches_order_by!]" ], "where": [ - 135 + 140 ] } ], "abandoned_matches_by_pk": [ - 126, + 131, { "id": [ - 5170, + 5454, "uuid!" ] } ], "api_keys": [ - 167, + 172, { "distinct_on": [ - 181, + 186, "[api_keys_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 179, + 184, "[api_keys_order_by!]" ], "where": [ - 171 + 176 ] } ], "api_keys_aggregate": [ - 168, + 173, { "distinct_on": [ - 181, + 186, "[api_keys_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 179, + 184, "[api_keys_order_by!]" ], "where": [ - 171 + 176 ] } ], "api_keys_by_pk": [ - 167, + 172, { "id": [ - 5170, + 5454, "uuid!" ] } ], "award_recipients": [ - 195, + 200, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "award_recipients_aggregate": [ - 196, + 201, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "award_recipients_by_pk": [ - 195, + 200, { "id": [ - 5170, + 5454, "uuid!" ] } ], "awards": [ - 236, + 241, { "distinct_on": [ - 251, + 256, "[awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 249, + 254, "[awards_order_by!]" ], "where": [ - 240 + 245 ] } ], "awards_aggregate": [ - 237, + 242, { "distinct_on": [ - 251, + 256, "[awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 249, + 254, "[awards_order_by!]" ], "where": [ - 240 + 245 ] } ], "awards_by_pk": [ - 236, + 241, { "id": [ - 5170, + 5454, "uuid!" ] } ], "chat_read_state": [ - 269, + 274, { "distinct_on": [ - 283, + 288, "[chat_read_state_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 281, + 286, "[chat_read_state_order_by!]" ], "where": [ - 273 + 278 ] } ], "chat_read_state_aggregate": [ - 270, + 275, { "distinct_on": [ - 283, + 288, "[chat_read_state_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 281, + 286, "[chat_read_state_order_by!]" ], "where": [ - 273 + 278 ] } ], "chat_read_state_by_pk": [ - 269, + 274, { "steam_id": [ - 264, + 269, "bigint!" ], "thread": [ - 80, + 84, "String!" ] } ], "clip_render_jobs": [ - 296, + 301, { "distinct_on": [ - 324, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 321, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 313 ] } ], "clip_render_jobs_aggregate": [ - 297, + 302, { "distinct_on": [ - 324, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 321, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 313 ] } ], "clip_render_jobs_by_pk": [ - 296, + 301, { "id": [ - 5170, + 5454, "uuid!" ] } ], "custom_pages": [ - 348, + 353, { "distinct_on": [ - 367, + 372, "[custom_pages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 364, + 369, "[custom_pages_order_by!]" ], "where": [ - 353 + 358 ] } ], "custom_pages_aggregate": [ - 349, + 354, { "distinct_on": [ - 367, + 372, "[custom_pages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 364, + 369, "[custom_pages_order_by!]" ], "where": [ - 353 + 358 ] } ], "custom_pages_by_pk": [ - 348, + 353, { "id": [ - 5170, + 5454, "uuid!" ] } ], "dbStats": [ - 19 + 20 ], "db_backups": [ - 380, + 385, { "distinct_on": [ - 394, + 399, "[db_backups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 392, + 397, "[db_backups_order_by!]" ], "where": [ - 384 + 389 ] } ], "db_backups_aggregate": [ - 381, + 386, { "distinct_on": [ - 394, + 399, "[db_backups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 392, + 397, "[db_backups_order_by!]" ], "where": [ - 384 + 389 ] } ], "db_backups_by_pk": [ - 380, + 385, { "id": [ - 5170, + 5454, "uuid!" ] } ], "direct_conversations": [ - 407, + 412, { "distinct_on": [ - 421, + 426, "[direct_conversations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 419, + 424, "[direct_conversations_order_by!]" ], "where": [ - 411 + 416 ] } ], "direct_conversations_aggregate": [ - 408, + 413, { "distinct_on": [ - 421, + 426, "[direct_conversations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 419, + 424, "[direct_conversations_order_by!]" ], "where": [ - 411 + 416 ] } ], "direct_conversations_by_pk": [ - 407, + 412, { "room_id": [ - 80, + 84, "String!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "direct_messages": [ - 434, + 439, { "distinct_on": [ - 448, + 453, "[direct_messages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 446, + 451, "[direct_messages_order_by!]" ], "where": [ - 438 + 443 ] } ], "direct_messages_aggregate": [ - 435, + 440, { "distinct_on": [ - 448, + 453, "[direct_messages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 446, + 451, "[direct_messages_order_by!]" ], "where": [ - 438 + 443 ] } ], "direct_messages_by_pk": [ - 434, + 439, { "id": [ - 5170, + 5454, "uuid!" ] } ], "draft_game_picks": [ - 461, + 466, { "distinct_on": [ - 484, + 489, "[draft_game_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 482, + 487, "[draft_game_picks_order_by!]" ], "where": [ - 472 + 477 ] } ], "draft_game_picks_aggregate": [ - 462, + 467, { "distinct_on": [ - 484, + 489, "[draft_game_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 482, + 487, "[draft_game_picks_order_by!]" ], "where": [ - 472 + 477 ] } ], "draft_game_picks_by_pk": [ - 461, + 466, { "id": [ - 5170, + 5454, "uuid!" ] } ], "draft_game_players": [ - 506, + 511, { "distinct_on": [ - 529, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 527, + 532, "[draft_game_players_order_by!]" ], "where": [ - 517 + 522 ] } ], "draft_game_players_aggregate": [ - 507, + 512, { "distinct_on": [ - 529, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 527, + 532, "[draft_game_players_order_by!]" ], "where": [ - 517 + 522 ] } ], "draft_game_players_by_pk": [ - 506, + 511, { "draft_game_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "draft_games": [ - 551, + 556, { "distinct_on": [ - 575, + 580, "[draft_games_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 573, + 578, "[draft_games_order_by!]" ], "where": [ - 562 + 567 ] } ], "draft_games_aggregate": [ - 552, + 557, { "distinct_on": [ - 575, + 580, "[draft_games_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 573, + 578, "[draft_games_order_by!]" ], "where": [ - 562 + 567 ] } ], "draft_games_by_pk": [ - 551, + 556, { "id": [ - 5170, + 5454, "uuid!" ] } ], "e_award_sources": [ - 597, + 602, { "distinct_on": [ - 611, + 616, "[e_award_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 609, + 614, "[e_award_sources_order_by!]" ], "where": [ - 600 + 605 ] } ], "e_award_sources_aggregate": [ - 598, + 603, { "distinct_on": [ - 611, + 616, "[e_award_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 609, + 614, "[e_award_sources_order_by!]" ], "where": [ - 600 + 605 ] } ], "e_award_sources_by_pk": [ - 597, + 602, { "value": [ - 80, + 84, "String!" ] } ], "e_award_tiers": [ - 617, + 622, { "distinct_on": [ - 631, + 636, "[e_award_tiers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 629, + 634, "[e_award_tiers_order_by!]" ], "where": [ - 620 + 625 ] } ], "e_award_tiers_aggregate": [ - 618, + 623, { "distinct_on": [ - 631, + 636, "[e_award_tiers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 629, + 634, "[e_award_tiers_order_by!]" ], "where": [ - 620 + 625 ] } ], "e_award_tiers_by_pk": [ - 617, + 622, { "value": [ - 80, + 84, "String!" ] } ], "e_check_in_settings": [ - 637, + 642, { "distinct_on": [ - 651, + 656, "[e_check_in_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 649, + 654, "[e_check_in_settings_order_by!]" ], "where": [ - 640 + 645 ] } ], "e_check_in_settings_aggregate": [ - 638, + 643, { "distinct_on": [ - 651, + 656, "[e_check_in_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 649, + 654, "[e_check_in_settings_order_by!]" ], "where": [ - 640 + 645 ] } ], "e_check_in_settings_by_pk": [ - 637, + 642, { "value": [ - 80, + 84, "String!" ] } ], "e_draft_game_captain_selection": [ - 657, + 662, { "distinct_on": [ - 672, + 677, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 670, + 675, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 660 + 665 ] } ], "e_draft_game_captain_selection_aggregate": [ - 658, + 663, { "distinct_on": [ - 672, + 677, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 670, + 675, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 660 + 665 ] } ], "e_draft_game_captain_selection_by_pk": [ - 657, + 662, { "value": [ - 80, + 84, "String!" ] } ], "e_draft_game_draft_order": [ - 678, + 683, { "distinct_on": [ - 693, + 698, "[e_draft_game_draft_order_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 691, + 696, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 681 + 686 ] } ], "e_draft_game_draft_order_aggregate": [ - 679, + 684, { "distinct_on": [ - 693, + 698, "[e_draft_game_draft_order_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 691, + 696, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 681 + 686 ] } ], "e_draft_game_draft_order_by_pk": [ - 678, + 683, { "value": [ - 80, + 84, "String!" ] } ], "e_draft_game_mode": [ - 699, + 704, { "distinct_on": [ - 714, + 719, "[e_draft_game_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 712, + 717, "[e_draft_game_mode_order_by!]" ], "where": [ - 702 + 707 ] } ], "e_draft_game_mode_aggregate": [ - 700, + 705, { "distinct_on": [ - 714, + 719, "[e_draft_game_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 712, + 717, "[e_draft_game_mode_order_by!]" ], "where": [ - 702 + 707 ] } ], "e_draft_game_mode_by_pk": [ - 699, + 704, { "value": [ - 80, + 84, "String!" ] } ], "e_draft_game_player_status": [ - 720, + 725, { "distinct_on": [ - 735, + 740, "[e_draft_game_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 733, + 738, "[e_draft_game_player_status_order_by!]" ], "where": [ - 723 + 728 ] } ], "e_draft_game_player_status_aggregate": [ - 721, + 726, { "distinct_on": [ - 735, + 740, "[e_draft_game_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 733, + 738, "[e_draft_game_player_status_order_by!]" ], "where": [ - 723 + 728 ] } ], "e_draft_game_player_status_by_pk": [ - 720, + 725, { "value": [ - 80, + 84, "String!" ] } ], "e_draft_game_status": [ - 741, + 746, { "distinct_on": [ - 756, + 761, "[e_draft_game_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 754, + 759, "[e_draft_game_status_order_by!]" ], "where": [ - 744 + 749 ] } ], "e_draft_game_status_aggregate": [ - 742, + 747, { "distinct_on": [ - 756, + 761, "[e_draft_game_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 754, + 759, "[e_draft_game_status_order_by!]" ], "where": [ - 744 + 749 ] } ], "e_draft_game_status_by_pk": [ - 741, + 746, { "value": [ - 80, + 84, "String!" ] } ], "e_event_media_access": [ - 762, + 767, { "distinct_on": [ - 776, + 781, "[e_event_media_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 774, + 779, "[e_event_media_access_order_by!]" ], "where": [ - 765 + 770 ] } ], "e_event_media_access_aggregate": [ - 763, + 768, { "distinct_on": [ - 776, + 781, "[e_event_media_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 774, + 779, "[e_event_media_access_order_by!]" ], "where": [ - 765 + 770 ] } ], "e_event_media_access_by_pk": [ - 762, + 767, { "value": [ - 80, + 84, "String!" ] } ], "e_event_visibility": [ - 782, + 787, { "distinct_on": [ - 796, + 801, "[e_event_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 794, + 799, "[e_event_visibility_order_by!]" ], "where": [ - 785 + 790 ] } ], "e_event_visibility_aggregate": [ - 783, + 788, { "distinct_on": [ - 796, + 801, "[e_event_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 794, + 799, "[e_event_visibility_order_by!]" ], "where": [ - 785 + 790 ] } ], "e_event_visibility_by_pk": [ - 782, + 787, { "value": [ - 80, + 84, "String!" ] } ], "e_friend_status": [ - 802, + 807, { "distinct_on": [ - 817, + 822, "[e_friend_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 815, + 820, "[e_friend_status_order_by!]" ], "where": [ - 805 + 810 ] } ], "e_friend_status_aggregate": [ - 803, + 808, { "distinct_on": [ - 817, + 822, "[e_friend_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 815, + 820, "[e_friend_status_order_by!]" ], "where": [ - 805 + 810 ] } ], "e_friend_status_by_pk": [ - 802, + 807, { "value": [ - 80, + 84, "String!" ] } ], "e_game_cfg_types": [ - 823, + 828, { "distinct_on": [ - 837, + 842, "[e_game_cfg_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 835, + 840, "[e_game_cfg_types_order_by!]" ], "where": [ - 826 + 831 ] } ], "e_game_cfg_types_aggregate": [ - 824, + 829, { "distinct_on": [ - 837, + 842, "[e_game_cfg_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 835, + 840, "[e_game_cfg_types_order_by!]" ], "where": [ - 826 + 831 ] } ], "e_game_cfg_types_by_pk": [ - 823, + 828, + { + "value": [ + 84, + "String!" + ] + } + ], + "e_game_plugin_channels": [ + 848, + { + "distinct_on": [ + 862, + "[e_game_plugin_channels_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 860, + "[e_game_plugin_channels_order_by!]" + ], + "where": [ + 851 + ] + } + ], + "e_game_plugin_channels_aggregate": [ + 849, + { + "distinct_on": [ + 862, + "[e_game_plugin_channels_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 860, + "[e_game_plugin_channels_order_by!]" + ], + "where": [ + 851 + ] + } + ], + "e_game_plugin_channels_by_pk": [ + 848, { "value": [ - 80, + 84, + "String!" + ] + } + ], + "e_game_plugin_install_statuses": [ + 868, + { + "distinct_on": [ + 882, + "[e_game_plugin_install_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 880, + "[e_game_plugin_install_statuses_order_by!]" + ], + "where": [ + 871 + ] + } + ], + "e_game_plugin_install_statuses_aggregate": [ + 869, + { + "distinct_on": [ + 882, + "[e_game_plugin_install_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 880, + "[e_game_plugin_install_statuses_order_by!]" + ], + "where": [ + 871 + ] + } + ], + "e_game_plugin_install_statuses_by_pk": [ + 868, + { + "value": [ + 84, + "String!" + ] + } + ], + "e_game_plugin_kinds": [ + 888, + { + "distinct_on": [ + 902, + "[e_game_plugin_kinds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 900, + "[e_game_plugin_kinds_order_by!]" + ], + "where": [ + 891 + ] + } + ], + "e_game_plugin_kinds_aggregate": [ + 889, + { + "distinct_on": [ + 902, + "[e_game_plugin_kinds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 900, + "[e_game_plugin_kinds_order_by!]" + ], + "where": [ + 891 + ] + } + ], + "e_game_plugin_kinds_by_pk": [ + 888, + { + "value": [ + 84, "String!" ] } ], "e_game_server_node_statuses": [ - 843, + 908, { "distinct_on": [ - 858, + 923, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 856, + 921, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 846 + 911 ] } ], "e_game_server_node_statuses_aggregate": [ - 844, + 909, { "distinct_on": [ - 858, + 923, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 856, + 921, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 846 + 911 ] } ], "e_game_server_node_statuses_by_pk": [ - 843, + 908, { "value": [ - 80, + 84, "String!" ] } ], "e_league_movement_types": [ - 864, + 929, { "distinct_on": [ - 879, + 944, "[e_league_movement_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 877, + 942, "[e_league_movement_types_order_by!]" ], "where": [ - 867 + 932 ] } ], "e_league_movement_types_aggregate": [ - 865, + 930, { "distinct_on": [ - 879, + 944, "[e_league_movement_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 877, + 942, "[e_league_movement_types_order_by!]" ], "where": [ - 867 + 932 ] } ], "e_league_movement_types_by_pk": [ - 864, + 929, { "value": [ - 80, + 84, "String!" ] } ], "e_league_proposal_statuses": [ - 885, + 950, { "distinct_on": [ - 900, + 965, "[e_league_proposal_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 898, + 963, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 888 + 953 ] } ], "e_league_proposal_statuses_aggregate": [ - 886, + 951, { "distinct_on": [ - 900, + 965, "[e_league_proposal_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 898, + 963, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 888 + 953 ] } ], "e_league_proposal_statuses_by_pk": [ - 885, + 950, { "value": [ - 80, + 84, "String!" ] } ], "e_league_registration_statuses": [ - 906, + 971, { "distinct_on": [ - 921, + 986, "[e_league_registration_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 919, + 984, "[e_league_registration_statuses_order_by!]" ], "where": [ - 909 + 974 ] } ], "e_league_registration_statuses_aggregate": [ - 907, + 972, { "distinct_on": [ - 921, + 986, "[e_league_registration_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 919, + 984, "[e_league_registration_statuses_order_by!]" ], "where": [ - 909 + 974 ] } ], "e_league_registration_statuses_by_pk": [ - 906, + 971, { "value": [ - 80, + 84, "String!" ] } ], "e_league_season_statuses": [ - 927, + 992, { "distinct_on": [ - 942, + 1007, "[e_league_season_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 940, + 1005, "[e_league_season_statuses_order_by!]" ], "where": [ - 930 + 995 ] } ], "e_league_season_statuses_aggregate": [ - 928, + 993, { "distinct_on": [ - 942, + 1007, "[e_league_season_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 940, + 1005, "[e_league_season_statuses_order_by!]" ], "where": [ - 930 + 995 ] } ], "e_league_season_statuses_by_pk": [ - 927, + 992, { "value": [ - 80, + 84, "String!" ] } ], "e_lobby_access": [ - 948, + 1013, { "distinct_on": [ - 963, + 1028, "[e_lobby_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 961, + 1026, "[e_lobby_access_order_by!]" ], "where": [ - 951 + 1016 ] } ], "e_lobby_access_aggregate": [ - 949, + 1014, { "distinct_on": [ - 963, + 1028, "[e_lobby_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 961, + 1026, "[e_lobby_access_order_by!]" ], "where": [ - 951 + 1016 ] } ], "e_lobby_access_by_pk": [ - 948, + 1013, { "value": [ - 80, + 84, "String!" ] } ], "e_lobby_player_status": [ - 969, + 1034, { "distinct_on": [ - 983, + 1048, "[e_lobby_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 981, + 1046, "[e_lobby_player_status_order_by!]" ], "where": [ - 972 + 1037 ] } ], "e_lobby_player_status_aggregate": [ - 970, + 1035, { "distinct_on": [ - 983, + 1048, "[e_lobby_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 981, + 1046, "[e_lobby_player_status_order_by!]" ], "where": [ - 972 + 1037 ] } ], "e_lobby_player_status_by_pk": [ - 969, + 1034, { "value": [ - 80, + 84, "String!" ] } ], "e_map_pool_types": [ - 989, + 1054, { "distinct_on": [ - 1004, + 1069, "[e_map_pool_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1002, + 1067, "[e_map_pool_types_order_by!]" ], "where": [ - 992 + 1057 ] } ], "e_map_pool_types_aggregate": [ - 990, + 1055, { "distinct_on": [ - 1004, + 1069, "[e_map_pool_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1002, + 1067, "[e_map_pool_types_order_by!]" ], "where": [ - 992 + 1057 ] } ], "e_map_pool_types_by_pk": [ - 989, + 1054, { "value": [ - 80, + 84, "String!" ] } ], "e_match_clip_visibility": [ - 1010, + 1075, { "distinct_on": [ - 1024, + 1089, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1022, + 1087, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1013 + 1078 ] } ], "e_match_clip_visibility_aggregate": [ - 1011, + 1076, { "distinct_on": [ - 1024, + 1089, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1022, + 1087, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1013 + 1078 ] } ], "e_match_clip_visibility_by_pk": [ - 1010, + 1075, { "value": [ - 80, + 84, "String!" ] } ], "e_match_map_status": [ - 1030, + 1095, { "distinct_on": [ - 1045, + 1110, "[e_match_map_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1043, + 1108, "[e_match_map_status_order_by!]" ], "where": [ - 1033 + 1098 ] } ], "e_match_map_status_aggregate": [ - 1031, + 1096, { "distinct_on": [ - 1045, + 1110, "[e_match_map_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1043, + 1108, "[e_match_map_status_order_by!]" ], "where": [ - 1033 + 1098 ] } ], "e_match_map_status_by_pk": [ - 1030, + 1095, { "value": [ - 80, + 84, "String!" ] } ], "e_match_mode": [ - 1051, + 1116, { "distinct_on": [ - 1065, + 1130, "[e_match_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1063, + 1128, "[e_match_mode_order_by!]" ], "where": [ - 1054 + 1119 ] } ], "e_match_mode_aggregate": [ - 1052, + 1117, { "distinct_on": [ - 1065, + 1130, "[e_match_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1063, + 1128, "[e_match_mode_order_by!]" ], "where": [ - 1054 + 1119 ] } ], "e_match_mode_by_pk": [ - 1051, + 1116, { "value": [ - 80, + 84, "String!" ] } ], "e_match_party_sources": [ - 1071, + 1136, { "distinct_on": [ - 1085, + 1150, "[e_match_party_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1083, + 1148, "[e_match_party_sources_order_by!]" ], "where": [ - 1074 + 1139 ] } ], "e_match_party_sources_aggregate": [ - 1072, + 1137, { "distinct_on": [ - 1085, + 1150, "[e_match_party_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1083, + 1148, "[e_match_party_sources_order_by!]" ], "where": [ - 1074 + 1139 ] } ], "e_match_party_sources_by_pk": [ - 1071, + 1136, { "value": [ - 80, + 84, "String!" ] } ], "e_match_status": [ - 1091, + 1156, { "distinct_on": [ - 1106, + 1171, "[e_match_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1104, + 1169, "[e_match_status_order_by!]" ], "where": [ - 1094 + 1159 ] } ], "e_match_status_aggregate": [ - 1092, + 1157, { "distinct_on": [ - 1106, + 1171, "[e_match_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1104, + 1169, "[e_match_status_order_by!]" ], "where": [ - 1094 + 1159 ] } ], "e_match_status_by_pk": [ - 1091, + 1156, { "value": [ - 80, + 84, "String!" ] } ], "e_match_types": [ - 1112, + 1177, { "distinct_on": [ - 1127, + 1192, "[e_match_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1125, + 1190, "[e_match_types_order_by!]" ], "where": [ - 1115 + 1180 ] } ], "e_match_types_aggregate": [ - 1113, + 1178, { "distinct_on": [ - 1127, + 1192, "[e_match_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1125, + 1190, "[e_match_types_order_by!]" ], "where": [ - 1115 + 1180 ] } ], "e_match_types_by_pk": [ - 1112, + 1177, { "value": [ - 80, + 84, "String!" ] } ], "e_notification_types": [ - 1133, + 1198, { "distinct_on": [ - 1147, + 1212, "[e_notification_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1145, + 1210, "[e_notification_types_order_by!]" ], "where": [ - 1136 + 1201 ] } ], "e_notification_types_aggregate": [ - 1134, + 1199, { "distinct_on": [ - 1147, + 1212, "[e_notification_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1145, + 1210, "[e_notification_types_order_by!]" ], "where": [ - 1136 + 1201 ] } ], "e_notification_types_by_pk": [ - 1133, + 1198, { "value": [ - 80, + 84, "String!" ] } ], "e_objective_types": [ - 1153, + 1218, { "distinct_on": [ - 1167, + 1232, "[e_objective_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1165, + 1230, "[e_objective_types_order_by!]" ], "where": [ - 1156 + 1221 ] } ], "e_objective_types_aggregate": [ - 1154, + 1219, { "distinct_on": [ - 1167, + 1232, "[e_objective_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1165, + 1230, "[e_objective_types_order_by!]" ], "where": [ - 1156 + 1221 ] } ], "e_objective_types_by_pk": [ - 1153, + 1218, { "value": [ - 80, + 84, "String!" ] } ], "e_player_roles": [ - 1173, + 1238, { "distinct_on": [ - 1187, + 1252, "[e_player_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1185, + 1250, "[e_player_roles_order_by!]" ], "where": [ - 1176 + 1241 ] } ], "e_player_roles_aggregate": [ - 1174, + 1239, { "distinct_on": [ - 1187, + 1252, "[e_player_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1185, + 1250, "[e_player_roles_order_by!]" ], "where": [ - 1176 + 1241 ] } ], "e_player_roles_by_pk": [ - 1173, + 1238, { "value": [ - 80, + 84, "String!" ] } ], "e_plugin_runtimes": [ - 1193, + 1258, { "distinct_on": [ - 1207, + 1272, "[e_plugin_runtimes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1205, + 1270, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1196 + 1261 ] } ], "e_plugin_runtimes_aggregate": [ - 1194, + 1259, { "distinct_on": [ - 1207, + 1272, "[e_plugin_runtimes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1205, + 1270, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1196 + 1261 ] } ], "e_plugin_runtimes_by_pk": [ - 1193, + 1258, { "value": [ - 80, + 84, "String!" ] } ], "e_ready_settings": [ - 1213, + 1278, { "distinct_on": [ - 1227, + 1292, "[e_ready_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1225, + 1290, "[e_ready_settings_order_by!]" ], "where": [ - 1216 + 1281 ] } ], "e_ready_settings_aggregate": [ - 1214, + 1279, { "distinct_on": [ - 1227, + 1292, "[e_ready_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1225, + 1290, "[e_ready_settings_order_by!]" ], "where": [ - 1216 + 1281 ] } ], "e_ready_settings_by_pk": [ - 1213, + 1278, { "value": [ - 80, + 84, "String!" ] } ], "e_sanction_types": [ - 1233, + 1298, { "distinct_on": [ - 1248, + 1313, "[e_sanction_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1246, + 1311, "[e_sanction_types_order_by!]" ], "where": [ - 1236 + 1301 ] } ], "e_sanction_types_aggregate": [ - 1234, + 1299, { "distinct_on": [ - 1248, + 1313, "[e_sanction_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1246, + 1311, "[e_sanction_types_order_by!]" ], "where": [ - 1236 + 1301 ] } ], "e_sanction_types_by_pk": [ - 1233, + 1298, { "value": [ - 80, + 84, "String!" ] } ], "e_scrim_request_statuses": [ - 1254, + 1319, { "distinct_on": [ - 1268, + 1333, "[e_scrim_request_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1266, + 1331, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1257 + 1322 ] } ], "e_scrim_request_statuses_aggregate": [ - 1255, + 1320, { "distinct_on": [ - 1268, + 1333, "[e_scrim_request_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1266, + 1331, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1257 + 1322 ] } ], "e_scrim_request_statuses_by_pk": [ - 1254, + 1319, { "value": [ - 80, + 84, "String!" ] } ], "e_server_types": [ - 1274, + 1339, { "distinct_on": [ - 1288, + 1353, "[e_server_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1286, + 1351, "[e_server_types_order_by!]" ], "where": [ - 1277 + 1342 ] } ], "e_server_types_aggregate": [ - 1275, + 1340, { "distinct_on": [ - 1288, + 1353, "[e_server_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1286, + 1351, "[e_server_types_order_by!]" ], "where": [ - 1277 + 1342 ] } ], "e_server_types_by_pk": [ - 1274, + 1339, { "value": [ - 80, + 84, "String!" ] } ], "e_sides": [ - 1294, + 1359, { "distinct_on": [ - 1308, + 1373, "[e_sides_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1306, + 1371, "[e_sides_order_by!]" ], "where": [ - 1297 + 1362 ] } ], "e_sides_aggregate": [ - 1295, + 1360, { "distinct_on": [ - 1308, + 1373, "[e_sides_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1306, + 1371, "[e_sides_order_by!]" ], "where": [ - 1297 + 1362 ] } ], "e_sides_by_pk": [ - 1294, + 1359, { "value": [ - 80, + 84, "String!" ] } ], "e_system_alert_types": [ - 1314, + 1379, { "distinct_on": [ - 1328, + 1393, "[e_system_alert_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1326, + 1391, "[e_system_alert_types_order_by!]" ], "where": [ - 1317 + 1382 ] } ], "e_system_alert_types_aggregate": [ - 1315, + 1380, { "distinct_on": [ - 1328, + 1393, "[e_system_alert_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1326, + 1391, "[e_system_alert_types_order_by!]" ], "where": [ - 1317 + 1382 ] } ], "e_system_alert_types_by_pk": [ - 1314, + 1379, { "value": [ - 80, + 84, "String!" ] } ], "e_team_roles": [ - 1334, + 1399, { "distinct_on": [ - 1349, + 1414, "[e_team_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1347, + 1412, "[e_team_roles_order_by!]" ], "where": [ - 1337 + 1402 ] } ], "e_team_roles_aggregate": [ - 1335, + 1400, { "distinct_on": [ - 1349, + 1414, "[e_team_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1347, + 1412, "[e_team_roles_order_by!]" ], "where": [ - 1337 + 1402 ] } ], "e_team_roles_by_pk": [ - 1334, + 1399, { "value": [ - 80, + 84, "String!" ] } ], "e_team_roster_statuses": [ - 1355, + 1420, { "distinct_on": [ - 1369, + 1434, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1367, + 1432, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1358 + 1423 ] } ], "e_team_roster_statuses_aggregate": [ - 1356, + 1421, { "distinct_on": [ - 1369, + 1434, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1367, + 1432, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1358 + 1423 ] } ], "e_team_roster_statuses_by_pk": [ - 1355, + 1420, { "value": [ - 80, + 84, "String!" ] } ], "e_timeout_settings": [ - 1375, + 1440, { "distinct_on": [ - 1389, + 1454, "[e_timeout_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1387, + 1452, "[e_timeout_settings_order_by!]" ], "where": [ - 1378 + 1443 ] } ], "e_timeout_settings_aggregate": [ - 1376, + 1441, { "distinct_on": [ - 1389, + 1454, "[e_timeout_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1387, + 1452, "[e_timeout_settings_order_by!]" ], "where": [ - 1378 + 1443 ] } ], "e_timeout_settings_by_pk": [ - 1375, + 1440, { "value": [ - 80, + 84, "String!" ] } ], "e_tournament_categories": [ - 1395, + 1460, { "distinct_on": [ - 1410, + 1475, "[e_tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1408, + 1473, "[e_tournament_categories_order_by!]" ], "where": [ - 1398 + 1463 ] } ], "e_tournament_categories_aggregate": [ - 1396, + 1461, { "distinct_on": [ - 1410, + 1475, "[e_tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1408, + 1473, "[e_tournament_categories_order_by!]" ], "where": [ - 1398 + 1463 ] } ], "e_tournament_categories_by_pk": [ - 1395, + 1460, { "value": [ - 80, + 84, "String!" ] } ], "e_tournament_stage_types": [ - 1416, + 1481, { "distinct_on": [ - 1431, + 1496, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1429, + 1494, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1419 + 1484 ] } ], "e_tournament_stage_types_aggregate": [ - 1417, + 1482, { "distinct_on": [ - 1431, + 1496, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1429, + 1494, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1419 + 1484 ] } ], "e_tournament_stage_types_by_pk": [ - 1416, + 1481, { "value": [ - 80, + 84, "String!" ] } ], "e_tournament_status": [ - 1437, + 1502, { "distinct_on": [ - 1452, + 1517, "[e_tournament_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1450, + 1515, "[e_tournament_status_order_by!]" ], "where": [ - 1440 + 1505 ] } ], "e_tournament_status_aggregate": [ - 1438, + 1503, { "distinct_on": [ - 1452, + 1517, "[e_tournament_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1450, + 1515, "[e_tournament_status_order_by!]" ], "where": [ - 1440 + 1505 ] } ], "e_tournament_status_by_pk": [ - 1437, + 1502, { "value": [ - 80, + 84, "String!" ] } ], "e_utility_types": [ - 1458, + 1523, { "distinct_on": [ - 1472, + 1537, "[e_utility_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1470, + 1535, "[e_utility_types_order_by!]" ], "where": [ - 1461 + 1526 ] } ], "e_utility_types_aggregate": [ - 1459, + 1524, { "distinct_on": [ - 1472, + 1537, "[e_utility_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1470, + 1535, "[e_utility_types_order_by!]" ], "where": [ - 1461 + 1526 ] } ], "e_utility_types_by_pk": [ - 1458, + 1523, { "value": [ - 80, + 84, "String!" ] } ], "e_veto_pick_types": [ - 1478, + 1543, { "distinct_on": [ - 1492, + 1557, "[e_veto_pick_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1490, + 1555, "[e_veto_pick_types_order_by!]" ], "where": [ - 1481 + 1546 ] } ], "e_veto_pick_types_aggregate": [ - 1479, + 1544, { "distinct_on": [ - 1492, + 1557, "[e_veto_pick_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1490, + 1555, "[e_veto_pick_types_order_by!]" ], "where": [ - 1481 + 1546 ] } ], "e_veto_pick_types_by_pk": [ - 1478, + 1543, { "value": [ - 80, + 84, "String!" ] } ], "e_winning_reasons": [ - 1498, + 1563, { "distinct_on": [ - 1512, + 1577, "[e_winning_reasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1510, + 1575, "[e_winning_reasons_order_by!]" ], "where": [ - 1501 + 1566 ] } ], "e_winning_reasons_aggregate": [ - 1499, + 1564, { "distinct_on": [ - 1512, + 1577, "[e_winning_reasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1510, + 1575, "[e_winning_reasons_order_by!]" ], "where": [ - 1501 + 1566 ] } ], "e_winning_reasons_by_pk": [ - 1498, + 1563, { "value": [ - 80, + 84, "String!" ] } ], "event_match_links": [ - 1518, + 1583, { "distinct_on": [ - 1530, + 1595, "[event_match_links_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1528, + 1593, "[event_match_links_order_by!]" ], "where": [ - 1521 + 1586 ] } ], "event_match_links_aggregate": [ - 1519, + 1584, { "distinct_on": [ - 1530, + 1595, "[event_match_links_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1528, + 1593, "[event_match_links_order_by!]" ], "where": [ - 1521 + 1586 ] } ], "event_match_links_by_pk": [ - 1518, + 1583, { "event_id": [ - 5170, + 5454, "uuid!" ], "match_id": [ - 5170, + 5454, "uuid!" ] } ], "event_media": [ - 1536, + 1601, { "distinct_on": [ - 1599, + 1664, "[event_media_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1556, + 1621, "[event_media_order_by!]" ], "where": [ - 1545 + 1610 ] } ], "event_media_aggregate": [ - 1537, + 1602, { "distinct_on": [ - 1599, + 1664, "[event_media_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1556, + 1621, "[event_media_order_by!]" ], "where": [ - 1545 + 1610 ] } ], "event_media_by_pk": [ - 1536, + 1601, { "id": [ - 5170, + 5454, "uuid!" ] } ], "event_media_players": [ - 1558, + 1623, { "distinct_on": [ - 1579, + 1644, "[event_media_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1577, + 1642, "[event_media_players_order_by!]" ], "where": [ - 1567 + 1632 ] } ], "event_media_players_aggregate": [ - 1559, + 1624, { "distinct_on": [ - 1579, + 1644, "[event_media_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1577, + 1642, "[event_media_players_order_by!]" ], "where": [ - 1567 + 1632 ] } ], "event_media_players_by_pk": [ - 1558, + 1623, { "media_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "event_organizers": [ - 1619, + 1684, { "distinct_on": [ - 1640, + 1705, "[event_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1638, + 1703, "[event_organizers_order_by!]" ], "where": [ - 1628 + 1693 ] } ], "event_organizers_aggregate": [ - 1620, + 1685, { "distinct_on": [ - 1640, + 1705, "[event_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1638, + 1703, "[event_organizers_order_by!]" ], "where": [ - 1628 + 1693 ] } ], "event_organizers_by_pk": [ - 1619, + 1684, { "event_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "event_players": [ - 1660, + 1725, { "distinct_on": [ - 1681, + 1746, "[event_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1679, + 1744, "[event_players_order_by!]" ], "where": [ - 1669 + 1734 ] } ], "event_players_aggregate": [ - 1661, + 1726, { "distinct_on": [ - 1681, + 1746, "[event_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1679, + 1744, "[event_players_order_by!]" ], "where": [ - 1669 + 1734 ] } ], "event_players_by_pk": [ - 1660, + 1725, { "event_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "event_teams": [ - 1701, + 1766, { "distinct_on": [ - 1719, + 1784, "[event_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1717, + 1782, "[event_teams_order_by!]" ], "where": [ - 1708 + 1773 ] } ], "event_teams_aggregate": [ - 1702, + 1767, { "distinct_on": [ - 1719, + 1784, "[event_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1717, + 1782, "[event_teams_order_by!]" ], "where": [ - 1708 + 1773 ] } ], "event_teams_by_pk": [ - 1701, + 1766, { "event_id": [ - 5170, + 5454, "uuid!" ], "team_id": [ - 5170, + 5454, "uuid!" ] } ], "event_tournaments": [ - 1725, + 1790, { "distinct_on": [ - 1743, + 1808, "[event_tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1741, + 1806, "[event_tournaments_order_by!]" ], "where": [ - 1732 + 1797 ] } ], "event_tournaments_aggregate": [ - 1726, + 1791, { "distinct_on": [ - 1743, + 1808, "[event_tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1741, + 1806, "[event_tournaments_order_by!]" ], "where": [ - 1732 + 1797 ] } ], "event_tournaments_by_pk": [ - 1725, + 1790, { "event_id": [ - 5170, + 5454, "uuid!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "events": [ - 1749, + 1814, { "distinct_on": [ - 1764, + 1829, "[events_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1762, + 1827, "[events_order_by!]" ], "where": [ - 1753 + 1818 ] } ], "events_aggregate": [ - 1750, + 1815, { "distinct_on": [ - 1764, + 1829, "[events_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1762, + 1827, "[events_order_by!]" ], "where": [ - 1753 + 1818 ] } ], "events_by_pk": [ - 1749, + 1814, { "id": [ - 5170, + 5454, "uuid!" ] } ], "friends": [ - 1779, + 1844, { "distinct_on": [ - 1793, + 1858, "[friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1791, + 1856, "[friends_order_by!]" ], "where": [ - 1783 + 1848 ] } ], "friends_aggregate": [ - 1780, + 1845, { "distinct_on": [ - 1793, + 1858, "[friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1791, + 1856, "[friends_order_by!]" ], "where": [ - 1783 + 1848 ] } ], "friends_by_pk": [ - 1779, + 1844, { "other_player_steam_id": [ - 264, + 269, "bigint!" ], "player_steam_id": [ - 264, + 269, "bigint!" ] } ], + "game_mode_plugins": [ + 1871, + { + "distinct_on": [ + 1899, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1896, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1883 + ] + } + ], + "game_mode_plugins_aggregate": [ + 1872, + { + "distinct_on": [ + 1899, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1896, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1883 + ] + } + ], + "game_mode_plugins_by_pk": [ + 1871, + { + "game_mode_id": [ + 5454, + "uuid!" + ], + "plugin_slug": [ + 84, + "String!" + ] + } + ], + "game_modes": [ + 1921, + { + "distinct_on": [ + 1934, + "[game_modes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1932, + "[game_modes_order_by!]" + ], + "where": [ + 1924 + ] + } + ], + "game_modes_aggregate": [ + 1922, + { + "distinct_on": [ + 1934, + "[game_modes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1932, + "[game_modes_order_by!]" + ], + "where": [ + 1924 + ] + } + ], + "game_modes_by_pk": [ + 1921, + { + "id": [ + 5454, + "uuid!" + ] + } + ], + "game_plugin_installs": [ + 1940, + { + "distinct_on": [ + 1952, + "[game_plugin_installs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1950, + "[game_plugin_installs_order_by!]" + ], + "where": [ + 1943 + ] + } + ], + "game_plugin_installs_aggregate": [ + 1941, + { + "distinct_on": [ + 1952, + "[game_plugin_installs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1950, + "[game_plugin_installs_order_by!]" + ], + "where": [ + 1943 + ] + } + ], + "game_plugin_installs_by_pk": [ + 1940, + { + "plugin_slug": [ + 84, + "String!" + ] + } + ], + "game_plugin_versions": [ + 1958, + { + "distinct_on": [ + 1981, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1979, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 1969 + ] + } + ], + "game_plugin_versions_aggregate": [ + 1959, + { + "distinct_on": [ + 1981, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1979, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 1969 + ] + } + ], + "game_plugin_versions_by_pk": [ + 1958, + { + "plugin_slug": [ + 84, + "String!" + ], + "runtime": [ + 1263, + "e_plugin_runtimes_enum!" + ], + "version": [ + 84, + "String!" + ] + } + ], + "game_plugins": [ + 2003, + { + "distinct_on": [ + 2022, + "[game_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2019, + "[game_plugins_order_by!]" + ], + "where": [ + 2008 + ] + } + ], + "game_plugins_aggregate": [ + 2004, + { + "distinct_on": [ + 2022, + "[game_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2019, + "[game_plugins_order_by!]" + ], + "where": [ + 2008 + ] + } + ], + "game_plugins_by_pk": [ + 2003, + { + "slug": [ + 84, + "String!" + ] + } + ], + "game_server_node_plugins": [ + 2035, + { + "distinct_on": [ + 2055, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2053, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2044 + ] + } + ], + "game_server_node_plugins_aggregate": [ + 2036, + { + "distinct_on": [ + 2055, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2053, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2044 + ] + } + ], + "game_server_node_plugins_by_pk": [ + 2035, + { + "id": [ + 5454, + "uuid!" + ] + } + ], "game_server_nodes": [ - 1806, + 2063, { "distinct_on": [ - 1835, + 2092, "[game_server_nodes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1832, + 2089, "[game_server_nodes_order_by!]" ], "where": [ - 1818 + 2075 ] } ], "game_server_nodes_aggregate": [ - 1807, + 2064, { "distinct_on": [ - 1835, + 2092, "[game_server_nodes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1832, + 2089, "[game_server_nodes_order_by!]" ], "where": [ - 1818 + 2075 ] } ], "game_server_nodes_by_pk": [ - 1806, + 2063, { "id": [ - 80, + 84, "String!" ] } ], "game_versions": [ - 1857, + 2114, { "distinct_on": [ - 1877, + 2134, "[game_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1874, + 2131, "[game_versions_order_by!]" ], "where": [ - 1862 + 2119 ] } ], "game_versions_aggregate": [ - 1858, + 2115, { "distinct_on": [ - 1877, + 2134, "[game_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1874, + 2131, "[game_versions_order_by!]" ], "where": [ - 1862 + 2119 ] } ], "game_versions_by_pk": [ - 1857, + 2114, { "build_id": [ - 40, + 41, "Int!" ] } ], "gamedata_signature_validations": [ - 1890, + 2147, { "distinct_on": [ - 1909, + 2166, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1906, + 2163, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1895 + 2152 ] } ], "gamedata_signature_validations_aggregate": [ - 1891, + 2148, { "distinct_on": [ - 1909, + 2166, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1906, + 2163, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1895 + 2152 ] } ], "gamedata_signature_validations_by_pk": [ - 1890, + 2147, { "id": [ - 5170, + 5454, "uuid!" ] } @@ -143669,34914 +149594,36424 @@ export default { 1 ], "getConnectionStats": [ - 13 + 14 ], "getCurrentLocks": [ - 46 + 47 ], "getDatabaseStats": [ - 18 + 19 ], "getDedicatedServerInfo": [ - 20 + 21 ], "getDedicatedServerPlayers": [ - 70, + 74, { "serverId": [ - 80, + 84, "String!" ] } ], "getHighlightPresetAvailability": [ - 36, + 37, { "match_map_id": [ - 5170, + 5454, "uuid!" ], "target_steam_id": [ - 80, + 84, "String!" ] } ], "getIndexIOStats": [ - 38, + 39, { "schemas": [ - 80, + 84, "[String!]" ] } ], "getIndexStats": [ - 39, + 40, { "schemas": [ - 80, + 84, "[String!]" ] } ], "getNodeStats": [ - 52, + 53, { "node": [ - 80, + 84, "String!" ] } ], "getQueryDetail": [ - 58, + 61, { "queryid": [ - 80, + 84, "String!" ] } ], "getQueryStats": [ - 59 + 62 ], "getSchemas": [ - 80 + 84 ], "getServiceStats": [ - 56 + 58 ], "getStorageStats": [ - 78, + 82, { "schemas": [ - 80, + 84, "[String!]" ] } ], "getTableIOStats": [ - 84, + 89, { "schemas": [ - 80, + 84, "[String!]" ] } ], "getTableStats": [ - 86, + 91, { "schemas": [ - 80, + 84, "[String!]" ] } ], "getTimescaleStats": [ - 101 + 106 ], "get_event_leaderboard": [ - 1933, + 2190, { "args": [ - 1922, + 2179, "get_event_leaderboard_args!" ], "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "get_event_leaderboard_aggregate": [ - 1934, + 2191, { "args": [ - 1922, + 2179, "get_event_leaderboard_args!" ], "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "get_leaderboard": [ - 1933, + 2190, { "args": [ - 1923, + 2180, "get_leaderboard_args!" ], "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "get_leaderboard_aggregate": [ - 1934, + 2191, { "args": [ - 1923, + 2180, "get_leaderboard_args!" ], "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "get_league_season_leaderboard": [ - 1933, + 2190, { "args": [ - 1924, + 2181, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "get_league_season_leaderboard_aggregate": [ - 1934, + 2191, { "args": [ - 1924, + 2181, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "get_player_leaderboard_rank": [ - 3535, + 3814, { "args": [ - 1925, + 2182, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3546, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3545, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3818 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3536, + 3815, { "args": [ - 1925, + 2182, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3546, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3545, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3818 ] } ], "leaderboard_entries": [ - 1933, + 2190, { "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "leaderboard_entries_aggregate": [ - 1934, + 2191, { "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "league_divisions": [ - 1957, + 2214, { "distinct_on": [ - 1972, + 2229, "[league_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1970, + 2227, "[league_divisions_order_by!]" ], "where": [ - 1961 + 2218 ] } ], "league_divisions_aggregate": [ - 1958, + 2215, { "distinct_on": [ - 1972, + 2229, "[league_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1970, + 2227, "[league_divisions_order_by!]" ], "where": [ - 1961 + 2218 ] } ], "league_divisions_by_pk": [ - 1957, + 2214, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_match_weeks": [ - 1985, + 2242, { "distinct_on": [ - 2006, + 2263, "[league_match_weeks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2004, + 2261, "[league_match_weeks_order_by!]" ], "where": [ - 1994 + 2251 ] } ], "league_match_weeks_aggregate": [ - 1986, + 2243, { "distinct_on": [ - 2006, + 2263, "[league_match_weeks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2004, + 2261, "[league_match_weeks_order_by!]" ], "where": [ - 1994 + 2251 ] } ], "league_match_weeks_by_pk": [ - 1985, + 2242, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_relegation_playoffs": [ - 2026, + 2283, { "distinct_on": [ - 2047, + 2304, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2045, + 2302, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2035 + 2292 ] } ], "league_relegation_playoffs_aggregate": [ - 2027, + 2284, { "distinct_on": [ - 2047, + 2304, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2045, + 2302, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2035 + 2292 ] } ], "league_relegation_playoffs_by_pk": [ - 2026, + 2283, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_scheduling_proposals": [ - 2067, + 2324, { "distinct_on": [ - 2088, + 2345, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2086, + 2343, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2076 + 2333 ] } ], "league_scheduling_proposals_aggregate": [ - 2068, + 2325, { "distinct_on": [ - 2088, + 2345, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2086, + 2343, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2076 + 2333 ] } ], "league_scheduling_proposals_by_pk": [ - 2067, + 2324, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_season_divisions": [ - 2108, + 2365, { "distinct_on": [ - 2127, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2125, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2372 ] } ], "league_season_divisions_aggregate": [ - 2109, + 2366, { "distinct_on": [ - 2127, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2125, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2372 ] } ], "league_season_divisions_by_pk": [ - 2108, + 2365, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_seasons": [ - 2133, + 2390, { "distinct_on": [ - 2153, + 2410, "[league_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2150, + 2407, "[league_seasons_order_by!]" ], "where": [ - 2138 + 2395 ] } ], "league_seasons_aggregate": [ - 2134, + 2391, { "distinct_on": [ - 2153, + 2410, "[league_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2150, + 2407, "[league_seasons_order_by!]" ], "where": [ - 2138 + 2395 ] } ], "league_seasons_by_pk": [ - 2133, + 2390, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_team_movements": [ - 2166, + 2423, { "distinct_on": [ - 2187, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2185, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2432 ] } ], "league_team_movements_aggregate": [ - 2167, + 2424, { "distinct_on": [ - 2187, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2185, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2432 ] } ], "league_team_movements_by_pk": [ - 2166, + 2423, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_team_rosters": [ - 2207, + 2464, { "distinct_on": [ - 2228, + 2485, "[league_team_rosters_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2226, + 2483, "[league_team_rosters_order_by!]" ], "where": [ - 2216 + 2473 ] } ], "league_team_rosters_aggregate": [ - 2208, + 2465, { "distinct_on": [ - 2228, + 2485, "[league_team_rosters_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2226, + 2483, "[league_team_rosters_order_by!]" ], "where": [ - 2216 + 2473 ] } ], "league_team_rosters_by_pk": [ - 2207, + 2464, { "league_team_season_id": [ - 5170, + 5454, "uuid!" ], "player_steam_id": [ - 264, + 269, "bigint!" ] } ], "league_team_seasons": [ - 2248, + 2505, { "distinct_on": [ - 2270, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2268, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2514 ] } ], "league_team_seasons_aggregate": [ - 2249, + 2506, { "distinct_on": [ - 2270, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2268, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2514 ] } ], "league_team_seasons_by_pk": [ - 2248, + 2505, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_teams": [ - 2290, + 2547, { "distinct_on": [ - 2303, + 2560, "[league_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2301, + 2558, "[league_teams_order_by!]" ], "where": [ - 2293 + 2550 ] } ], "league_teams_aggregate": [ - 2291, + 2548, { "distinct_on": [ - 2303, + 2560, "[league_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2301, + 2558, "[league_teams_order_by!]" ], "where": [ - 2293 + 2550 ] } ], "league_teams_by_pk": [ - 2290, + 2547, { "id": [ - 5170, + 5454, "uuid!" ] } ], "listServerFiles": [ - 30, + 31, { "node_id": [ - 80, + 84, "String!" ], "path": [ - 80 + 84 ], "server_id": [ - 80 + 84 ] } ], "lobbies": [ - 2309, + 2566, { "distinct_on": [ - 2322, + 2579, "[lobbies_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2320, + 2577, "[lobbies_order_by!]" ], "where": [ - 2312 + 2569 ] } ], "lobbies_aggregate": [ - 2310, + 2567, { "distinct_on": [ - 2322, + 2579, "[lobbies_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2320, + 2577, "[lobbies_order_by!]" ], "where": [ - 2312 + 2569 ] } ], "lobbies_by_pk": [ - 2309, + 2566, { "id": [ - 5170, + 5454, "uuid!" ] } ], "lobby_players": [ - 2328, + 2585, { "distinct_on": [ - 2351, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2349, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2596 ] } ], "lobby_players_aggregate": [ - 2329, + 2586, { "distinct_on": [ - 2351, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2349, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2596 ] } ], "lobby_players_by_pk": [ - 2328, + 2585, { "lobby_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "map_pools": [ - 2373, + 2630, { "distinct_on": [ - 2386, + 2643, "[map_pools_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2384, + 2641, "[map_pools_order_by!]" ], "where": [ - 2376 + 2633 ] } ], "map_pools_aggregate": [ - 2374, + 2631, { "distinct_on": [ - 2386, + 2643, "[map_pools_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2384, + 2641, "[map_pools_order_by!]" ], "where": [ - 2376 + 2633 ] } ], "map_pools_by_pk": [ - 2373, + 2630, { "id": [ - 5170, + 5454, "uuid!" ] } ], "maps": [ - 2392, + 2649, { "distinct_on": [ - 2413, + 2670, "[maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2411, + 2668, "[maps_order_by!]" ], "where": [ - 2401 + 2658 ] } ], "maps_aggregate": [ - 2393, + 2650, { "distinct_on": [ - 2413, + 2670, "[maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2411, + 2668, "[maps_order_by!]" ], "where": [ - 2401 + 2658 ] } ], "maps_by_pk": [ - 2392, + 2649, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_clips": [ - 2421, + 2678, { "distinct_on": [ - 2443, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2441, + 2698, "[match_clips_order_by!]" ], "where": [ - 2430 + 2687 ] } ], "match_clips_aggregate": [ - 2422, + 2679, { "distinct_on": [ - 2443, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2441, + 2698, "[match_clips_order_by!]" ], "where": [ - 2430 + 2687 ] } ], "match_clips_by_pk": [ - 2421, + 2678, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_demo_sessions": [ - 2463, + 2720, { "distinct_on": [ - 2489, + 2746, "[match_demo_sessions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2486, + 2743, "[match_demo_sessions_order_by!]" ], "where": [ - 2473 + 2730 ] } ], "match_demo_sessions_aggregate": [ - 2464, + 2721, { "distinct_on": [ - 2489, + 2746, "[match_demo_sessions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2486, + 2743, "[match_demo_sessions_order_by!]" ], "where": [ - 2473 + 2730 ] } ], "match_demo_sessions_by_pk": [ - 2463, + 2720, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_lineup_players": [ - 2509, + 2766, { "distinct_on": [ - 2532, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2530, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2777 ] } ], "match_lineup_players_aggregate": [ - 2510, + 2767, { "distinct_on": [ - 2532, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2530, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2777 ] } ], "match_lineup_players_by_pk": [ - 2509, + 2766, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_lineups": [ - 2554, + 2811, { "distinct_on": [ - 2576, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2574, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2820 ] } ], "match_lineups_aggregate": [ - 2555, + 2812, { "distinct_on": [ - 2576, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2574, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2820 ] } ], "match_lineups_by_pk": [ - 2554, + 2811, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_map_demos": [ - 2596, + 2853, { "distinct_on": [ - 2625, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2622, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2865 ] } ], "match_map_demos_aggregate": [ - 2597, + 2854, { "distinct_on": [ - 2625, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2622, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2865 ] } ], "match_map_demos_by_pk": [ - 2596, + 2853, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_map_rounds": [ - 2647, + 2904, { "distinct_on": [ - 2668, + 2925, "[match_map_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2666, + 2923, "[match_map_rounds_order_by!]" ], "where": [ - 2656 + 2913 ] } ], "match_map_rounds_aggregate": [ - 2648, + 2905, { "distinct_on": [ - 2668, + 2925, "[match_map_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2666, + 2923, "[match_map_rounds_order_by!]" ], "where": [ - 2656 + 2913 ] } ], "match_map_rounds_by_pk": [ - 2647, + 2904, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_map_veto_picks": [ - 2688, + 2945, { "distinct_on": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2706, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2954 ] } ], "match_map_veto_picks_aggregate": [ - 2689, + 2946, { "distinct_on": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2706, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2954 ] } ], "match_map_veto_picks_by_pk": [ - 2688, + 2945, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_maps": [ - 2716, + 2973, { "distinct_on": [ - 2738, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2736, + 2993, "[match_maps_order_by!]" ], "where": [ - 2725 + 2982 ] } ], "match_maps_aggregate": [ - 2717, + 2974, { "distinct_on": [ - 2738, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2736, + 2993, "[match_maps_order_by!]" ], "where": [ - 2725 + 2982 ] } ], "match_maps_by_pk": [ - 2716, + 2973, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_options": [ - 2758, + 3015, { "distinct_on": [ - 2773, + 3039, "[match_options_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2771, + 3037, "[match_options_order_by!]" ], "where": [ - 2762 + 3026 ] } ], "match_options_aggregate": [ - 2759, + 3016, { "distinct_on": [ - 2773, + 3039, "[match_options_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2771, + 3037, "[match_options_order_by!]" ], "where": [ - 2762 + 3026 ] } ], "match_options_by_pk": [ - 2758, + 3015, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_region_veto_picks": [ - 2786, + 3061, { "distinct_on": [ - 2806, + 3081, "[match_region_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2804, + 3079, "[match_region_veto_picks_order_by!]" ], "where": [ - 2795 + 3070 ] } ], "match_region_veto_picks_aggregate": [ - 2787, + 3062, { "distinct_on": [ - 2806, + 3081, "[match_region_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2804, + 3079, "[match_region_veto_picks_order_by!]" ], "where": [ - 2795 + 3070 ] } ], "match_region_veto_picks_by_pk": [ - 2786, + 3061, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_streams": [ - 2814, + 3089, { "distinct_on": [ - 2842, + 3117, "[match_streams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2839, + 3114, "[match_streams_order_by!]" ], "where": [ - 2826 + 3101 ] } ], "match_streams_aggregate": [ - 2815, + 3090, { "distinct_on": [ - 2842, + 3117, "[match_streams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2839, + 3114, "[match_streams_order_by!]" ], "where": [ - 2826 + 3101 ] } ], "match_streams_by_pk": [ - 2814, + 3089, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_type_cfgs": [ - 2864, + 3139, { "distinct_on": [ - 2876, + 3151, "[match_type_cfgs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2874, + 3149, "[match_type_cfgs_order_by!]" ], "where": [ - 2867 + 3142 ] } ], "match_type_cfgs_aggregate": [ - 2865, + 3140, { "distinct_on": [ - 2876, + 3151, "[match_type_cfgs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2874, + 3149, "[match_type_cfgs_order_by!]" ], "where": [ - 2867 + 3142 ] } ], "match_type_cfgs_by_pk": [ - 2864, + 3139, { "type": [ - 828, + 833, "e_game_cfg_types_enum!" ] } ], "matches": [ - 2882, + 3157, { "distinct_on": [ - 2904, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2902, + 3179, "[matches_order_by!]" ], "where": [ - 2891 + 3168 ] } ], "matches_aggregate": [ - 2883, + 3158, { "distinct_on": [ - 2904, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2902, + 3179, "[matches_order_by!]" ], "where": [ - 2891 + 3168 ] } ], "matches_by_pk": [ - 2882, + 3157, { "id": [ - 5170, + 5454, "uuid!" ] } ], "me": [ - 47 + 48 ], "migration_hashes_hashes": [ - 2924, + 3203, { "distinct_on": [ - 2936, + 3215, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2934, + 3213, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2927 + 3206 ] } ], "migration_hashes_hashes_aggregate": [ - 2925, + 3204, { "distinct_on": [ - 2936, + 3215, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2934, + 3213, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2927 + 3206 ] } ], "migration_hashes_hashes_by_pk": [ - 2924, + 3203, { "name": [ - 80, + 84, "String!" ] } ], "my_friends": [ - 2942, + 3221, { "distinct_on": [ - 2967, + 3246, "[my_friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2965, + 3244, "[my_friends_order_by!]" ], "where": [ - 2954 + 3233 ] } ], "my_friends_aggregate": [ - 2943, + 3222, { "distinct_on": [ - 2967, + 3246, "[my_friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2965, + 3244, "[my_friends_order_by!]" ], "where": [ - 2954 + 3233 ] } ], "newsPostAdmin": [ - 50, + 51, { "id": [ - 5170, + 5454, "uuid!" ] } ], "newsPostsAdmin": [ - 50 + 51 ], "news_articles": [ - 2988, + 3267, { "distinct_on": [ - 3002, + 3281, "[news_articles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3000, + 3279, "[news_articles_order_by!]" ], "where": [ - 2992 + 3271 ] } ], "news_articles_aggregate": [ - 2989, + 3268, { "distinct_on": [ - 3002, + 3281, "[news_articles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3000, + 3279, "[news_articles_order_by!]" ], "where": [ - 2992 + 3271 ] } ], "news_articles_by_pk": [ - 2988, + 3267, { "id": [ - 5170, + 5454, "uuid!" ] } ], "notification_preferences": [ - 3015, + 3294, { "distinct_on": [ - 3029, + 3308, "[notification_preferences_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3027, + 3306, "[notification_preferences_order_by!]" ], "where": [ - 3019 + 3298 ] } ], "notification_preferences_aggregate": [ - 3016, + 3295, { "distinct_on": [ - 3029, + 3308, "[notification_preferences_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3027, + 3306, "[notification_preferences_order_by!]" ], "where": [ - 3019 + 3298 ] } ], "notification_preferences_by_pk": [ - 3015, + 3294, { "channel": [ - 80, + 84, "String!" ], "key": [ - 80, + 84, "String!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "notifications": [ - 3042, + 3321, { "distinct_on": [ - 3070, + 3349, "[notifications_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3067, + 3346, "[notifications_order_by!]" ], "where": [ - 3054 + 3333 ] } ], "notifications_aggregate": [ - 3043, + 3322, { "distinct_on": [ - 3070, + 3349, "[notifications_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3067, + 3346, "[notifications_order_by!]" ], "where": [ - 3054 + 3333 ] } ], "notifications_by_pk": [ - 3042, + 3321, { "id": [ - 5170, + 5454, "uuid!" ] } ], "pending_match_import_players": [ - 3095, + 3374, { "distinct_on": [ - 3116, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3114, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3383 ] } ], "pending_match_import_players_aggregate": [ - 3096, + 3375, { "distinct_on": [ - 3116, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3114, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3383 ] } ], "pending_match_import_players_by_pk": [ - 3095, + 3374, { "steam_id": [ - 264, + 269, "bigint!" ], "valve_match_id": [ - 3092, + 3371, "numeric!" ] } ], "pending_match_imports": [ - 3136, + 3415, { "distinct_on": [ - 3151, + 3430, "[pending_match_imports_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3149, + 3428, "[pending_match_imports_order_by!]" ], "where": [ - 3140 + 3419 ] } ], "pending_match_imports_aggregate": [ - 3137, + 3416, { "distinct_on": [ - 3151, + 3430, "[pending_match_imports_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3149, + 3428, "[pending_match_imports_order_by!]" ], "where": [ - 3140 + 3419 ] } ], "pending_match_imports_by_pk": [ - 3136, + 3415, { "valve_match_id": [ - 3092, + 3371, "numeric!" ] } ], "player_aim_stats_demo": [ - 3164, + 3443, { "distinct_on": [ - 3178, + 3457, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3176, + 3455, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3168 + 3447 ] } ], "player_aim_stats_demo_aggregate": [ - 3165, + 3444, { "distinct_on": [ - 3178, + 3457, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3176, + 3455, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3168 + 3447 ] } ], "player_aim_stats_demo_by_pk": [ - 3164, + 3443, { "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ] } ], "player_aim_weapon_stats": [ - 3191, + 3470, { "distinct_on": [ - 3212, + 3491, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3210, + 3489, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3200 + 3479 ] } ], "player_aim_weapon_stats_aggregate": [ - 3192, + 3471, { "distinct_on": [ - 3212, + 3491, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3210, + 3489, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3200 + 3479 ] } ], "player_aim_weapon_stats_by_pk": [ - 3191, + 3470, { "match_map_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ], "weapon_class": [ - 80, + 84, "String!" ] } ], "player_assists": [ - 3232, + 3511, { "distinct_on": [ - 3255, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3253, + 3532, "[player_assists_order_by!]" ], "where": [ - 3243 + 3522 ] } ], "player_assists_aggregate": [ - 3233, + 3512, { "distinct_on": [ - 3255, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3253, + 3532, "[player_assists_order_by!]" ], "where": [ - 3243 + 3522 ] } ], "player_assists_by_pk": [ - 3232, + 3511, { "attacked_steam_id": [ - 264, + 269, "bigint!" ], "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "player_career_stats_v": [ - 3277, + 3556, { "distinct_on": [ - 3285, + 3564, "[player_career_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3284, + 3563, "[player_career_stats_v_order_by!]" ], "where": [ - 3281 + 3560 ] } ], "player_career_stats_v_aggregate": [ - 3278, + 3557, { "distinct_on": [ - 3285, + 3564, "[player_career_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3284, + 3563, "[player_career_stats_v_order_by!]" ], "where": [ - 3281 + 3560 ] } ], "player_damages": [ - 3295, + 3574, { "distinct_on": [ - 3316, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3314, + 3593, "[player_damages_order_by!]" ], "where": [ - 3304 + 3583 ] } ], "player_damages_aggregate": [ - 3296, + 3575, { "distinct_on": [ - 3316, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3314, + 3593, "[player_damages_order_by!]" ], "where": [ - 3304 + 3583 ] } ], "player_damages_by_pk": [ - 3295, + 3574, { "id": [ - 5170, + 5454, "uuid!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "player_elo": [ - 3336, + 3615, { "distinct_on": [ - 3350, + 3629, "[player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3348, + 3627, "[player_elo_order_by!]" ], "where": [ - 3340 + 3619 ] } ], "player_elo_aggregate": [ - 3337, + 3616, { "distinct_on": [ - 3350, + 3629, "[player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3348, + 3627, "[player_elo_order_by!]" ], "where": [ - 3340 + 3619 ] } ], "player_elo_by_pk": [ - 3336, + 3615, { "match_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ], "type": [ - 1117, + 1182, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 3363, + 3642, { "distinct_on": [ - 3384, + 3663, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3382, + 3661, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3372 + 3651 ] } ], "player_faceit_rank_history_aggregate": [ - 3364, + 3643, { "distinct_on": [ - 3384, + 3663, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3382, + 3661, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3372 + 3651 ] } ], "player_faceit_rank_history_by_pk": [ - 3363, + 3642, { "id": [ - 5170, + 5454, "uuid!" ] } ], "player_flashes": [ - 3404, + 3683, { "distinct_on": [ - 3427, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3425, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3694 ] } ], "player_flashes_aggregate": [ - 3405, + 3684, { "distinct_on": [ - 3427, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3425, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3694 ] } ], "player_flashes_by_pk": [ - 3404, + 3683, { "attacked_steam_id": [ - 264, + 269, "bigint!" ], "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "player_kills": [ - 3449, + 3728, { "distinct_on": [ - 3513, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3511, + 3790, "[player_kills_order_by!]" ], "where": [ - 3460 + 3739 ] } ], "player_kills_aggregate": [ - 3450, + 3729, { "distinct_on": [ - 3513, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3511, + 3790, "[player_kills_order_by!]" ], "where": [ - 3460 + 3739 ] } ], "player_kills_by_pk": [ - 3449, + 3728, { "attacked_steam_id": [ - 264, + 269, "bigint!" ], "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3461, + 3740, { "distinct_on": [ - 3482, + 3761, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3480, + 3759, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3470 + 3749 ] } ], "player_kills_by_weapon_aggregate": [ - 3462, + 3741, { "distinct_on": [ - 3482, + 3761, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3480, + 3759, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3470 + 3749 ] } ], "player_kills_by_weapon_by_pk": [ - 3461, + 3740, { "player_steam_id": [ - 264, + 269, "bigint!" ], "with": [ - 80, + 84, "String!" ] } ], "player_leaderboard_rank": [ - 3535, + 3814, { "distinct_on": [ - 3546, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3545, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3818 ] } ], "player_leaderboard_rank_aggregate": [ - 3536, + 3815, { "distinct_on": [ - 3546, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3545, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3818 ] } ], "player_match_map_stats": [ - 3558, + 3837, { "distinct_on": [ - 3579, + 3858, "[player_match_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3577, + 3856, "[player_match_map_stats_order_by!]" ], "where": [ - 3567 + 3846 ] } ], "player_match_map_stats_aggregate": [ - 3559, + 3838, { "distinct_on": [ - 3579, + 3858, "[player_match_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3577, + 3856, "[player_match_map_stats_order_by!]" ], "where": [ - 3567 + 3846 ] } ], "player_match_map_stats_by_pk": [ - 3558, + 3837, { "match_map_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "player_match_performance_v": [ - 3599, + 3878, { "distinct_on": [ - 3607, + 3886, "[player_match_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3606, + 3885, "[player_match_performance_v_order_by!]" ], "where": [ - 3603 + 3882 ] } ], "player_match_performance_v_aggregate": [ - 3600, + 3879, { "distinct_on": [ - 3607, + 3886, "[player_match_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3606, + 3885, "[player_match_performance_v_order_by!]" ], "where": [ - 3603 + 3882 ] } ], "player_match_stats_v": [ - 3617, + 3896, { "distinct_on": [ - 3633, + 3912, "[player_match_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3632, + 3911, "[player_match_stats_v_order_by!]" ], "where": [ - 3626 + 3905 ] } ], "player_match_stats_v_aggregate": [ - 3618, + 3897, { "distinct_on": [ - 3633, + 3912, "[player_match_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3632, + 3911, "[player_match_stats_v_order_by!]" ], "where": [ - 3626 + 3905 ] } ], "player_objectives": [ - 3650, + 3929, { "distinct_on": [ - 3671, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3669, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3938 ] } ], "player_objectives_aggregate": [ - 3651, + 3930, { "distinct_on": [ - 3671, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3669, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3938 ] } ], "player_objectives_by_pk": [ - 3650, + 3929, { "match_map_id": [ - 5170, + 5454, "uuid!" ], "player_steam_id": [ - 264, + 269, "bigint!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "player_performance_v": [ - 3691, + 3970, { "distinct_on": [ - 3699, + 3978, "[player_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3698, + 3977, "[player_performance_v_order_by!]" ], "where": [ - 3695 + 3974 ] } ], "player_performance_v_aggregate": [ - 3692, + 3971, { "distinct_on": [ - 3699, + 3978, "[player_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3698, + 3977, "[player_performance_v_order_by!]" ], "where": [ - 3695 + 3974 ] } ], "player_premier_rank_history": [ - 3709, + 3988, { "distinct_on": [ - 3730, + 4009, "[player_premier_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3728, + 4007, "[player_premier_rank_history_order_by!]" ], "where": [ - 3718 + 3997 ] } ], "player_premier_rank_history_aggregate": [ - 3710, + 3989, { "distinct_on": [ - 3730, + 4009, "[player_premier_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3728, + 4007, "[player_premier_rank_history_order_by!]" ], "where": [ - 3718 + 3997 ] } ], "player_premier_rank_history_by_pk": [ - 3709, + 3988, { "id": [ - 5170, + 5454, "uuid!" ] } ], "player_sanctions": [ - 3750, + 4029, { "distinct_on": [ - 3771, + 4050, "[player_sanctions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3769, + 4048, "[player_sanctions_order_by!]" ], "where": [ - 3759 + 4038 ] } ], "player_sanctions_aggregate": [ - 3751, + 4030, { "distinct_on": [ - 3771, + 4050, "[player_sanctions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3769, + 4048, "[player_sanctions_order_by!]" ], "where": [ - 3759 + 4038 ] } ], "player_sanctions_by_pk": [ - 3750, + 4029, { "created_at": [ - 4670, + 4954, "timestamptz!" ], "id": [ - 5170, + 5454, "uuid!" ] } ], "player_season_stats": [ - 3791, + 4070, { "distinct_on": [ - 3822, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3820, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4089 ] } ], "player_season_stats_aggregate": [ - 3792, + 4071, { "distinct_on": [ - 3822, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3820, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4089 ] } ], "player_season_stats_by_pk": [ - 3791, + 4070, { "player_steam_id": [ - 264, + 269, "bigint!" ], "season_id": [ - 5170, + 5454, "uuid!" ] } ], "player_stats": [ - 3850, + 4129, { "distinct_on": [ - 3865, + 4144, "[player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3863, + 4142, "[player_stats_order_by!]" ], "where": [ - 3854 + 4133 ] } ], "player_stats_aggregate": [ - 3851, + 4130, { "distinct_on": [ - 3865, + 4144, "[player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3863, + 4142, "[player_stats_order_by!]" ], "where": [ - 3854 + 4133 ] } ], "player_stats_by_pk": [ - 3850, + 4129, { "player_steam_id": [ - 264, + 269, "bigint!" ] } ], "player_steam_bot_friend": [ - 3878, + 4157, { "distinct_on": [ - 3897, + 4176, "[player_steam_bot_friend_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3894, + 4173, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3883 + 4162 ] } ], "player_steam_bot_friend_aggregate": [ - 3879, + 4158, { "distinct_on": [ - 3897, + 4176, "[player_steam_bot_friend_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3894, + 4173, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3883 + 4162 ] } ], "player_steam_bot_friend_by_pk": [ - 3878, + 4157, { "steam_id": [ - 264, + 269, "bigint!" ] } ], "player_steam_match_auth": [ - 3910, + 4189, { "distinct_on": [ - 3924, + 4203, "[player_steam_match_auth_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3922, + 4201, "[player_steam_match_auth_order_by!]" ], "where": [ - 3914 + 4193 ] } ], "player_steam_match_auth_aggregate": [ - 3911, + 4190, { "distinct_on": [ - 3924, + 4203, "[player_steam_match_auth_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3922, + 4201, "[player_steam_match_auth_order_by!]" ], "where": [ - 3914 + 4193 ] } ], "player_steam_match_auth_by_pk": [ - 3910, + 4189, { "steam_id": [ - 264, + 269, "bigint!" ] } ], "player_unused_utility": [ - 3937, + 4216, { "distinct_on": [ - 3958, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3956, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4225 ] } ], "player_unused_utility_aggregate": [ - 3938, + 4217, { "distinct_on": [ - 3958, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3956, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4225 ] } ], "player_unused_utility_by_pk": [ - 3937, + 4216, { "match_map_id": [ - 5170, + 5454, "uuid!" ], "player_steam_id": [ - 264, + 269, "bigint!" ] } ], "player_utility": [ - 3978, + 4257, { "distinct_on": [ - 3999, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3997, + 4276, "[player_utility_order_by!]" ], "where": [ - 3987 + 4266 ] } ], "player_utility_aggregate": [ - 3979, + 4258, { "distinct_on": [ - 3999, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3997, + 4276, "[player_utility_order_by!]" ], "where": [ - 3987 + 4266 ] } ], "player_utility_by_pk": [ - 3978, + 4257, { "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 4019, + 4298, { "distinct_on": [ - 4035, + 4314, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4034, + 4313, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4028 + 4307 ] } ], "player_weapon_stats_v_aggregate": [ - 4020, + 4299, { "distinct_on": [ - 4035, + 4314, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4034, + 4313, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4028 + 4307 ] } ], "players": [ - 4052, + 4331, { "distinct_on": [ - 4067, + 4346, "[players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4065, + 4344, "[players_order_by!]" ], "where": [ - 4056 + 4335 ] } ], "players_aggregate": [ - 4053, + 4332, { "distinct_on": [ - 4067, + 4346, "[players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4065, + 4344, "[players_order_by!]" ], "where": [ - 4056 + 4335 ] } ], "players_by_pk": [ - 4052, + 4331, { "steam_id": [ - 264, + 269, "bigint!" ] } ], "plugin_versions": [ - 4080, + 4359, { "distinct_on": [ - 4094, + 4373, "[plugin_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4092, + 4371, "[plugin_versions_order_by!]" ], "where": [ - 4084 + 4363 ] } ], "plugin_versions_aggregate": [ - 4081, + 4360, { "distinct_on": [ - 4094, + 4373, "[plugin_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4092, + 4371, "[plugin_versions_order_by!]" ], "where": [ - 4084 + 4363 ] } ], "plugin_versions_by_pk": [ - 4080, + 4359, { "runtime": [ - 1198, + 1263, "e_plugin_runtimes_enum!" ], "version": [ - 80, + 84, "String!" ] } ], "push_subscriptions": [ - 4107, + 4386, { "distinct_on": [ - 4121, + 4400, "[push_subscriptions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4119, + 4398, "[push_subscriptions_order_by!]" ], "where": [ - 4111 + 4390 ] } ], "push_subscriptions_aggregate": [ - 4108, + 4387, { "distinct_on": [ - 4121, + 4400, "[push_subscriptions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4119, + 4398, "[push_subscriptions_order_by!]" ], "where": [ - 4111 + 4390 ] } ], "push_subscriptions_by_pk": [ - 4107, + 4386, { "id": [ - 5170, + 5454, "uuid!" ] } ], "readServerFile": [ - 28, + 29, { "file_path": [ - 80, + 84, "String!" ], "node_id": [ - 80, + 84, "String!" ], "server_id": [ - 80 + 84 ] } ], "seasons": [ - 4138, + 4417, { "distinct_on": [ - 4153, + 4432, "[seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4151, + 4430, "[seasons_order_by!]" ], "where": [ - 4142 + 4421 ] } ], "seasons_aggregate": [ - 4139, + 4418, { "distinct_on": [ - 4153, + 4432, "[seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4151, + 4430, "[seasons_order_by!]" ], "where": [ - 4142 + 4421 ] } ], "seasons_by_pk": [ - 4138, + 4417, { "id": [ - 5170, + 5454, "uuid!" ] } ], "server_regions": [ - 4166, + 4445, { "distinct_on": [ - 4180, + 4459, "[server_regions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4178, + 4457, "[server_regions_order_by!]" ], "where": [ - 4170 + 4449 ] } ], "server_regions_aggregate": [ - 4167, + 4446, { "distinct_on": [ - 4180, + 4459, "[server_regions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4178, + 4457, "[server_regions_order_by!]" ], "where": [ - 4170 + 4449 ] } ], "server_regions_by_pk": [ - 4166, + 4445, { "value": [ - 80, + 84, "String!" ] } ], "servers": [ - 4193, + 4472, { "distinct_on": [ - 4217, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4215, + 4498, "[servers_order_by!]" ], "where": [ - 4204 + 4484 ] } ], "servers_aggregate": [ - 4194, + 4473, { "distinct_on": [ - 4217, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4215, + 4498, "[servers_order_by!]" ], "where": [ - 4204 + 4484 ] } ], "servers_by_pk": [ - 4193, + 4472, { "id": [ - 5170, + 5454, "uuid!" ] } ], "settings": [ - 4239, + 4523, { "distinct_on": [ - 4251, + 4535, "[settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4249, + 4533, "[settings_order_by!]" ], "where": [ - 4242 + 4526 ] } ], "settings_aggregate": [ - 4240, + 4524, { "distinct_on": [ - 4251, + 4535, "[settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4249, + 4533, "[settings_order_by!]" ], "where": [ - 4242 + 4526 ] } ], "settings_by_pk": [ - 4239, + 4523, { "name": [ - 80, + 84, "String!" ] } ], "steamPresenceAdminStatus": [ - 74 + 78 ], "steam_account_claims": [ - 4259, + 4543, { "distinct_on": [ - 4277, + 4561, "[steam_account_claims_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4275, + 4559, "[steam_account_claims_order_by!]" ], "where": [ - 4266 + 4550 ] } ], "steam_account_claims_aggregate": [ - 4260, + 4544, { "distinct_on": [ - 4277, + 4561, "[steam_account_claims_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4275, + 4559, "[steam_account_claims_order_by!]" ], "where": [ - 4266 + 4550 ] } ], "steam_account_claims_by_pk": [ - 4259, + 4543, { "id": [ - 5170, + 5454, "uuid!" ] } ], "steam_accounts": [ - 4283, + 4567, { "distinct_on": [ - 4298, + 4582, "[steam_accounts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4296, + 4580, "[steam_accounts_order_by!]" ], "where": [ - 4287 + 4571 ] } ], "steam_accounts_aggregate": [ - 4284, + 4568, { "distinct_on": [ - 4298, + 4582, "[steam_accounts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4296, + 4580, "[steam_accounts_order_by!]" ], "where": [ - 4287 + 4571 ] } ], "steam_accounts_by_pk": [ - 4283, + 4567, { "id": [ - 5170, + 5454, "uuid!" ] } ], "system_alerts": [ - 4311, + 4595, { "distinct_on": [ - 4325, + 4609, "[system_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4323, + 4607, "[system_alerts_order_by!]" ], "where": [ - 4315 + 4599 ] } ], "system_alerts_aggregate": [ - 4312, + 4596, { "distinct_on": [ - 4325, + 4609, "[system_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4323, + 4607, "[system_alerts_order_by!]" ], "where": [ - 4315 + 4599 ] } ], "system_alerts_by_pk": [ - 4311, + 4595, { "id": [ - 5170, + 5454, "uuid!" ] } ], "teamCalendarUrl": [ - 87, + 92, { "team_id": [ - 5170, + 5454, "uuid!" ] } ], "team_invites": [ - 4338, + 4622, { "distinct_on": [ - 4359, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4357, + 4641, "[team_invites_order_by!]" ], "where": [ - 4347 + 4631 ] } ], "team_invites_aggregate": [ - 4339, + 4623, { "distinct_on": [ - 4359, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4357, + 4641, "[team_invites_order_by!]" ], "where": [ - 4347 + 4631 ] } ], "team_invites_by_pk": [ - 4338, + 4622, { "id": [ - 5170, + 5454, "uuid!" ] } ], "team_roster": [ - 4379, + 4663, { "distinct_on": [ - 4402, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4400, + 4684, "[team_roster_order_by!]" ], "where": [ - 4390 + 4674 ] } ], "team_roster_aggregate": [ - 4380, + 4664, { "distinct_on": [ - 4402, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4400, + 4684, "[team_roster_order_by!]" ], "where": [ - 4390 + 4674 ] } ], "team_roster_by_pk": [ - 4379, + 4663, { "player_steam_id": [ - 264, + 269, "bigint!" ], "team_id": [ - 5170, + 5454, "uuid!" ] } ], "team_scrim_alerts": [ - 4424, + 4708, { "distinct_on": [ - 4438, + 4722, "[team_scrim_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4436, + 4720, "[team_scrim_alerts_order_by!]" ], "where": [ - 4428 + 4712 ] } ], "team_scrim_alerts_aggregate": [ - 4425, + 4709, { "distinct_on": [ - 4438, + 4722, "[team_scrim_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4436, + 4720, "[team_scrim_alerts_order_by!]" ], "where": [ - 4428 + 4712 ] } ], "team_scrim_alerts_by_pk": [ - 4424, + 4708, { "id": [ - 5170, + 5454, "uuid!" ] } ], "team_scrim_availability": [ - 4451, + 4735, { "distinct_on": [ - 4471, + 4755, "[team_scrim_availability_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4469, + 4753, "[team_scrim_availability_order_by!]" ], "where": [ - 4460 + 4744 ] } ], "team_scrim_availability_aggregate": [ - 4452, + 4736, { "distinct_on": [ - 4471, + 4755, "[team_scrim_availability_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4469, + 4753, "[team_scrim_availability_order_by!]" ], "where": [ - 4460 + 4744 ] } ], "team_scrim_availability_by_pk": [ - 4451, + 4735, { "id": [ - 5170, + 5454, "uuid!" ] } ], "team_scrim_request_proposals": [ - 4479, + 4763, { "distinct_on": [ - 4500, + 4784, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4498, + 4782, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4488 + 4772 ] } ], "team_scrim_request_proposals_aggregate": [ - 4480, + 4764, { "distinct_on": [ - 4500, + 4784, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4498, + 4782, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4488 + 4772 ] } ], "team_scrim_request_proposals_by_pk": [ - 4479, + 4763, { "id": [ - 5170, + 5454, "uuid!" ] } ], "team_scrim_requests": [ - 4520, + 4804, { "distinct_on": [ - 4544, + 4828, "[team_scrim_requests_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4542, + 4826, "[team_scrim_requests_order_by!]" ], "where": [ - 4531 + 4815 ] } ], "team_scrim_requests_aggregate": [ - 4521, + 4805, { "distinct_on": [ - 4544, + 4828, "[team_scrim_requests_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4542, + 4826, "[team_scrim_requests_order_by!]" ], "where": [ - 4531 + 4815 ] } ], "team_scrim_requests_by_pk": [ - 4520, + 4804, { "id": [ - 5170, + 5454, "uuid!" ] } ], "team_scrim_settings": [ - 4566, + 4850, { "distinct_on": [ - 4581, + 4865, "[team_scrim_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4579, + 4863, "[team_scrim_settings_order_by!]" ], "where": [ - 4570 + 4854 ] } ], "team_scrim_settings_aggregate": [ - 4567, + 4851, { "distinct_on": [ - 4581, + 4865, "[team_scrim_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4579, + 4863, "[team_scrim_settings_order_by!]" ], "where": [ - 4570 + 4854 ] } ], "team_scrim_settings_by_pk": [ - 4566, + 4850, { "id": [ - 5170, + 5454, "uuid!" ] } ], "team_suggestions": [ - 4594, + 4878, { "distinct_on": [ - 4608, + 4892, "[team_suggestions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4606, + 4890, "[team_suggestions_order_by!]" ], "where": [ - 4598 + 4882 ] } ], "team_suggestions_aggregate": [ - 4595, + 4879, { "distinct_on": [ - 4608, + 4892, "[team_suggestions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4606, + 4890, "[team_suggestions_order_by!]" ], "where": [ - 4598 + 4882 ] } ], "team_suggestions_by_pk": [ - 4594, + 4878, { "id": [ - 5170, + 5454, "uuid!" ] } ], "teams": [ - 4621, + 4905, { "distinct_on": [ - 4645, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4643, + 4927, "[teams_order_by!]" ], "where": [ - 4632 + 4916 ] } ], "teams_aggregate": [ - 4622, + 4906, { "distinct_on": [ - 4645, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4643, + 4927, "[teams_order_by!]" ], "where": [ - 4632 + 4916 ] } ], "teams_by_pk": [ - 4621, + 4905, { "id": [ - 5170, + 5454, "uuid!" ] } ], "telemetryStats": [ - 97 + 102 ], "tournament_awards": [ - 4672, + 4956, { "distinct_on": [ - 4694, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4692, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4965 ] } ], "tournament_awards_aggregate": [ - 4673, + 4957, { "distinct_on": [ - 4694, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4692, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4965 ] } ], "tournament_awards_by_pk": [ - 4672, + 4956, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_brackets": [ - 4714, + 4998, { "distinct_on": [ - 4738, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4736, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5009 ] } ], "tournament_brackets_aggregate": [ - 4715, + 4999, { "distinct_on": [ - 4738, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4736, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5009 ] } ], "tournament_brackets_by_pk": [ - 4714, + 4998, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_categories": [ - 4760, + 5044, { "distinct_on": [ - 4778, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4776, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5051 ] } ], "tournament_categories_aggregate": [ - 4761, + 5045, { "distinct_on": [ - 4778, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4776, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5051 ] } ], "tournament_categories_by_pk": [ - 4760, + 5044, { "category": [ - 1400, + 1465, "e_tournament_categories_enum!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_organizer_teams": [ - 4784, + 5068, { "distinct_on": [ - 4802, + 5086, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4800, + 5084, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4791 + 5075 ] } ], "tournament_organizer_teams_aggregate": [ - 4785, + 5069, { "distinct_on": [ - 4802, + 5086, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4800, + 5084, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4791 + 5075 ] } ], "tournament_organizer_teams_by_pk": [ - 4784, + 5068, { "team_id": [ - 5170, + 5454, "uuid!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_organizers": [ - 4808, + 5092, { "distinct_on": [ - 4829, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4827, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5101 ] } ], "tournament_organizers_aggregate": [ - 4809, + 5093, { "distinct_on": [ - 4829, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4827, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5101 ] } ], "tournament_organizers_by_pk": [ - 4808, + 5092, { "steam_id": [ - 264, + 269, "bigint!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_prizes": [ - 4849, + 5133, { "distinct_on": [ - 4870, + 5154, "[tournament_prizes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4868, + 5152, "[tournament_prizes_order_by!]" ], "where": [ - 4858 + 5142 ] } ], "tournament_prizes_aggregate": [ - 4850, + 5134, { "distinct_on": [ - 4870, + 5154, "[tournament_prizes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4868, + 5152, "[tournament_prizes_order_by!]" ], "where": [ - 4858 + 5142 ] } ], "tournament_prizes_by_pk": [ - 4849, + 5133, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_stage_windows": [ - 4890, + 5174, { "distinct_on": [ - 4911, + 5195, "[tournament_stage_windows_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4909, + 5193, "[tournament_stage_windows_order_by!]" ], "where": [ - 4899 + 5183 ] } ], "tournament_stage_windows_aggregate": [ - 4891, + 5175, { "distinct_on": [ - 4911, + 5195, "[tournament_stage_windows_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4909, + 5193, "[tournament_stage_windows_order_by!]" ], "where": [ - 4899 + 5183 ] } ], "tournament_stage_windows_by_pk": [ - 4890, + 5174, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_stages": [ - 4931, + 5215, { "distinct_on": [ - 4960, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4957, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5227 ] } ], "tournament_stages_aggregate": [ - 4932, + 5216, { "distinct_on": [ - 4960, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4957, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5227 ] } ], "tournament_stages_by_pk": [ - 4931, + 5215, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_team_invites": [ - 4982, + 5266, { "distinct_on": [ - 5003, + 5287, "[tournament_team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5001, + 5285, "[tournament_team_invites_order_by!]" ], "where": [ - 4991 + 5275 ] } ], "tournament_team_invites_aggregate": [ - 4983, + 5267, { "distinct_on": [ - 5003, + 5287, "[tournament_team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5001, + 5285, "[tournament_team_invites_order_by!]" ], "where": [ - 4991 + 5275 ] } ], "tournament_team_invites_by_pk": [ - 4982, + 5266, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_team_roster": [ - 5023, + 5307, { "distinct_on": [ - 5044, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5042, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5316 ] } ], "tournament_team_roster_aggregate": [ - 5024, + 5308, { "distinct_on": [ - 5044, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5042, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5316 ] } ], "tournament_team_roster_by_pk": [ - 5023, + 5307, { "player_steam_id": [ - 264, + 269, "bigint!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_teams": [ - 5064, + 5348, { "distinct_on": [ - 5086, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5084, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5357 ] } ], "tournament_teams_aggregate": [ - 5065, + 5349, { "distinct_on": [ - 5086, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5084, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5357 ] } ], "tournament_teams_by_pk": [ - 5064, + 5348, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournaments": [ - 5106, + 5390, { "distinct_on": [ - 5140, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5138, + 5422, "[tournaments_order_by!]" ], "where": [ - 5127 + 5411 ] } ], "tournaments_aggregate": [ - 5107, + 5391, { "distinct_on": [ - 5140, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5138, + 5422, "[tournaments_order_by!]" ], "where": [ - 5127 + 5411 ] } ], "tournaments_by_pk": [ - 5106, + 5390, { "id": [ - 5170, + 5454, "uuid!" ] } ], "v_event_player_stats": [ - 5173, + 5457, { "distinct_on": [ - 5199, + 5483, "[v_event_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5198, + 5482, "[v_event_player_stats_order_by!]" ], "where": [ - 5192 + 5476 ] } ], "v_event_player_stats_aggregate": [ - 5174, + 5458, { "distinct_on": [ - 5199, + 5483, "[v_event_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5198, + 5482, "[v_event_player_stats_order_by!]" ], "where": [ - 5192 + 5476 ] } ], "v_gpu_pool_status": [ - 5224, + 5508, { "distinct_on": [ - 5232, + 5516, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5231, + 5515, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5228 + 5512 ] } ], "v_gpu_pool_status_aggregate": [ - 5225, + 5509, { "distinct_on": [ - 5232, + 5516, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5231, + 5515, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5228 + 5512 ] } ], "v_league_division_standings": [ - 5242, + 5526, { "distinct_on": [ - 5258, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5257, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5535 ] } ], "v_league_division_standings_aggregate": [ - 5243, + 5527, { "distinct_on": [ - 5258, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5257, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5535 ] } ], "v_league_season_player_stats": [ - 5275, + 5559, { "distinct_on": [ - 5301, + 5585, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5300, + 5584, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5294 + 5578 ] } ], "v_league_season_player_stats_aggregate": [ - 5276, + 5560, { "distinct_on": [ - 5301, + 5585, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5300, + 5584, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5294 + 5578 ] } ], "v_match_captains": [ - 5326, + 5610, { "distinct_on": [ - 5338, + 5622, "[v_match_captains_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5337, + 5621, "[v_match_captains_order_by!]" ], "where": [ - 5330 + 5614 ] } ], "v_match_captains_aggregate": [ - 5327, + 5611, { "distinct_on": [ - 5338, + 5622, "[v_match_captains_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5337, + 5621, "[v_match_captains_order_by!]" ], "where": [ - 5330 + 5614 ] } ], "v_match_clutches": [ - 5350, + 5634, { "distinct_on": [ - 5366, + 5650, "[v_match_clutches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5365, + 5649, "[v_match_clutches_order_by!]" ], "where": [ - 5359 + 5643 ] } ], "v_match_clutches_aggregate": [ - 5351, + 5635, { "distinct_on": [ - 5366, + 5650, "[v_match_clutches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5365, + 5649, "[v_match_clutches_order_by!]" ], "where": [ - 5359 + 5643 ] } ], "v_match_kill_pairs": [ - 5383, + 5667, { "distinct_on": [ - 5391, + 5675, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5390, + 5674, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5387 + 5671 ] } ], "v_match_kill_pairs_aggregate": [ - 5384, + 5668, { "distinct_on": [ - 5391, + 5675, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5390, + 5674, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5387 + 5671 ] } ], "v_match_lineup_buy_types": [ - 5401, + 5685, { "distinct_on": [ - 5409, + 5693, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5408, + 5692, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5405 + 5689 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5402, + 5686, { "distinct_on": [ - 5409, + 5693, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5408, + 5692, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5405 + 5689 ] } ], "v_match_lineup_map_stats": [ - 5419, + 5703, { "distinct_on": [ - 5427, + 5711, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5426, + 5710, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5423 + 5707 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5420, + 5704, { "distinct_on": [ - 5427, + 5711, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5426, + 5710, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5423 + 5707 ] } ], "v_match_map_backup_rounds": [ - 5437, + 5721, { "distinct_on": [ - 5448, + 5732, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5447, + 5731, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5441 + 5725 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5438, + 5722, { "distinct_on": [ - 5448, + 5732, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5447, + 5731, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5441 + 5725 ] } ], "v_match_player_buy_types": [ - 5460, + 5744, { "distinct_on": [ - 5468, + 5752, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5467, + 5751, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5464 + 5748 ] } ], "v_match_player_buy_types_aggregate": [ - 5461, + 5745, { "distinct_on": [ - 5468, + 5752, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5467, + 5751, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5464 + 5748 ] } ], "v_match_player_opening_duels": [ - 5478, + 5762, { "distinct_on": [ - 5494, + 5778, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5493, + 5777, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5487 + 5771 ] } ], "v_match_player_opening_duels_aggregate": [ - 5479, + 5763, { "distinct_on": [ - 5494, + 5778, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5493, + 5777, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5487 + 5771 ] } ], "v_player_arch_nemesis": [ - 5511, + 5795, { "distinct_on": [ - 5519, + 5803, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5518, + 5802, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5515 + 5799 ] } ], "v_player_arch_nemesis_aggregate": [ - 5512, + 5796, { "distinct_on": [ - 5519, + 5803, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5518, + 5802, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5515 + 5799 ] } ], "v_player_damage": [ - 5529, + 5813, { "distinct_on": [ - 5537, + 5821, "[v_player_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5536, + 5820, "[v_player_damage_order_by!]" ], "where": [ - 5533 + 5817 ] } ], "v_player_damage_aggregate": [ - 5530, + 5814, { "distinct_on": [ - 5537, + 5821, "[v_player_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5536, + 5820, "[v_player_damage_order_by!]" ], "where": [ - 5533 + 5817 ] } ], "v_player_elo": [ - 5547, + 5831, { "distinct_on": [ - 5573, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5572, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5850 ] } ], "v_player_elo_aggregate": [ - 5548, + 5832, { "distinct_on": [ - 5573, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5572, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5850 ] } ], "v_player_map_losses": [ - 5598, + 5882, { "distinct_on": [ - 5606, + 5890, "[v_player_map_losses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5605, + 5889, "[v_player_map_losses_order_by!]" ], "where": [ - 5602 + 5886 ] } ], "v_player_map_losses_aggregate": [ - 5599, + 5883, { "distinct_on": [ - 5606, + 5890, "[v_player_map_losses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5605, + 5889, "[v_player_map_losses_order_by!]" ], "where": [ - 5602 + 5886 ] } ], "v_player_map_wins": [ - 5616, + 5900, { "distinct_on": [ - 5624, + 5908, "[v_player_map_wins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5623, + 5907, "[v_player_map_wins_order_by!]" ], "where": [ - 5620 + 5904 ] } ], "v_player_map_wins_aggregate": [ - 5617, + 5901, { "distinct_on": [ - 5624, + 5908, "[v_player_map_wins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5623, + 5907, "[v_player_map_wins_order_by!]" ], "where": [ - 5620 + 5904 ] } ], "v_player_match_head_to_head": [ - 5634, + 5918, { "distinct_on": [ - 5642, + 5926, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5641, + 5925, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5638 + 5922 ] } ], "v_player_match_head_to_head_aggregate": [ - 5635, + 5919, { "distinct_on": [ - 5642, + 5926, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5641, + 5925, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5638 + 5922 ] } ], "v_player_match_map_hltv": [ - 5652, + 5936, { "distinct_on": [ - 5670, + 5954, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5669, + 5953, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5661 + 5945 ] } ], "v_player_match_map_hltv_aggregate": [ - 5653, + 5937, { "distinct_on": [ - 5670, + 5954, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5669, + 5953, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5661 + 5945 ] } ], "v_player_match_map_roles": [ - 5689, + 5973, { "distinct_on": [ - 5697, + 5981, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5696, + 5980, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5693 + 5977 ] } ], "v_player_match_map_roles_aggregate": [ - 5690, + 5974, { "distinct_on": [ - 5697, + 5981, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5696, + 5980, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5693 + 5977 ] } ], "v_player_match_performance": [ - 5707, + 5991, { "distinct_on": [ - 5715, + 5999, "[v_player_match_performance_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5714, + 5998, "[v_player_match_performance_order_by!]" ], "where": [ - 5711 + 5995 ] } ], "v_player_match_performance_aggregate": [ - 5708, + 5992, { "distinct_on": [ - 5715, + 5999, "[v_player_match_performance_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5714, + 5998, "[v_player_match_performance_order_by!]" ], "where": [ - 5711 + 5995 ] } ], "v_player_match_rating": [ - 5725, + 6009, { "distinct_on": [ - 5733, + 6017, "[v_player_match_rating_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5732, + 6016, "[v_player_match_rating_order_by!]" ], "where": [ - 5729 + 6013 ] } ], "v_player_match_rating_aggregate": [ - 5726, + 6010, { "distinct_on": [ - 5733, + 6017, "[v_player_match_rating_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5732, + 6016, "[v_player_match_rating_order_by!]" ], "where": [ - 5729 + 6013 ] } ], "v_player_multi_kills": [ - 5743, + 6027, { "distinct_on": [ - 5759, + 6043, "[v_player_multi_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5758, + 6042, "[v_player_multi_kills_order_by!]" ], "where": [ - 5752 + 6036 ] } ], "v_player_multi_kills_aggregate": [ - 5744, + 6028, { "distinct_on": [ - 5759, + 6043, "[v_player_multi_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5758, + 6042, "[v_player_multi_kills_order_by!]" ], "where": [ - 5752 + 6036 ] } ], "v_player_queue_partners": [ - 5776, + 6060, { "distinct_on": [ - 5784, + 6068, "[v_player_queue_partners_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5783, + 6067, "[v_player_queue_partners_order_by!]" ], "where": [ - 5780 + 6064 ] } ], "v_player_queue_partners_aggregate": [ - 5777, + 6061, { "distinct_on": [ - 5784, + 6068, "[v_player_queue_partners_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5783, + 6067, "[v_player_queue_partners_order_by!]" ], "where": [ - 5780 + 6064 ] } ], "v_player_weapon_damage": [ - 5794, + 6078, { "distinct_on": [ - 5802, + 6086, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5801, + 6085, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5798 + 6082 ] } ], "v_player_weapon_damage_aggregate": [ - 5795, + 6079, { "distinct_on": [ - 5802, + 6086, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5801, + 6085, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5798 + 6082 ] } ], "v_player_weapon_kills": [ - 5812, + 6096, { "distinct_on": [ - 5820, + 6104, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5819, + 6103, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5816 + 6100 ] } ], "v_player_weapon_kills_aggregate": [ - 5813, + 6097, { "distinct_on": [ - 5820, + 6104, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5819, + 6103, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5816 + 6100 ] } ], "v_pool_maps": [ - 5830, + 6114, { "distinct_on": [ - 5847, + 6131, "[v_pool_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5846, + 6130, "[v_pool_maps_order_by!]" ], "where": [ - 5839 + 6123 ] } ], "v_pool_maps_aggregate": [ - 5831, + 6115, { "distinct_on": [ - 5847, + 6131, "[v_pool_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5846, + 6130, "[v_pool_maps_order_by!]" ], "where": [ - 5839 + 6123 ] } ], "v_steam_account_pool_status": [ - 5854, + 6138, { "distinct_on": [ - 5862, + 6146, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5861, + 6145, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5858 + 6142 ] } ], "v_steam_account_pool_status_aggregate": [ - 5855, + 6139, { "distinct_on": [ - 5862, + 6146, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5861, + 6145, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5858 + 6142 ] } ], "v_team_ranks": [ - 5872, + 6156, { "distinct_on": [ - 5882, + 6166, "[v_team_ranks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5881, + 6165, "[v_team_ranks_order_by!]" ], "where": [ - 5876 + 6160 ] } ], "v_team_ranks_aggregate": [ - 5873, + 6157, { "distinct_on": [ - 5882, + 6166, "[v_team_ranks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5881, + 6165, "[v_team_ranks_order_by!]" ], "where": [ - 5876 + 6160 ] } ], "v_team_reputation": [ - 5892, + 6176, { "distinct_on": [ - 5902, + 6186, "[v_team_reputation_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5901, + 6185, "[v_team_reputation_order_by!]" ], "where": [ - 5896 + 6180 ] } ], "v_team_reputation_aggregate": [ - 5893, + 6177, { "distinct_on": [ - 5902, + 6186, "[v_team_reputation_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5901, + 6185, "[v_team_reputation_order_by!]" ], "where": [ - 5896 + 6180 ] } ], "v_team_stage_results": [ - 5912, + 6196, { "distinct_on": [ - 5944, + 6228, "[v_team_stage_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5942, + 6226, "[v_team_stage_results_order_by!]" ], "where": [ - 5931 + 6215 ] } ], "v_team_stage_results_aggregate": [ - 5913, + 6197, { "distinct_on": [ - 5944, + 6228, "[v_team_stage_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5942, + 6226, "[v_team_stage_results_order_by!]" ], "where": [ - 5931 + 6215 ] } ], "v_team_stage_results_by_pk": [ - 5912, + 6196, { "tournament_stage_id": [ - 5170, + 5454, "uuid!" ], "tournament_team_id": [ - 5170, + 5454, "uuid!" ] } ], "v_team_tournament_results": [ - 5972, + 6256, { "distinct_on": [ - 5998, + 6282, "[v_team_tournament_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5997, + 6281, "[v_team_tournament_results_order_by!]" ], "where": [ - 5991 + 6275 ] } ], "v_team_tournament_results_aggregate": [ - 5973, + 6257, { "distinct_on": [ - 5998, + 6282, "[v_team_tournament_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5997, + 6281, "[v_team_tournament_results_order_by!]" ], "where": [ - 5991 + 6275 ] } ], "v_tournament_player_stats": [ - 6023, + 6307, { "distinct_on": [ - 6049, + 6333, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6048, + 6332, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6042 + 6326 ] } ], "v_tournament_player_stats_aggregate": [ - 6024, + 6308, { "distinct_on": [ - 6049, + 6333, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6048, + 6332, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6042 + 6326 ] } ], "webPushStatus": [ - 106 + 111 ], "__typename": [ - 80 + 84 ] }, "Mutation": { "PreviewTournamentMatchReset": [ - 57, + 60, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], "ResetTournamentMatch": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ], "reset_status": [ - 80 + 84 ], "scheduled_at": [ - 4670 + 4954 ], "winning_lineup_id": [ - 5170 + 5454 ] } ], "acceptInvite": [ - 83, + 87, { "invite_id": [ - 5170, + 5454, "uuid!" ], "type": [ - 80, + 84, "String!" ] } ], + "addCustomGamePlugin": [ + 2, + { + "description": [ + 84 + ], + "installPath": [ + 84 + ], + "layout": [ + 84 + ], + "name": [ + 84 + ], + "runtime": [ + 84, + "String!" + ], + "slug": [ + 84 + ], + "url": [ + 84, + "String!" + ], + "version": [ + 84 + ] + } + ], "addDraftPlayer": [ - 83, + 87, { "draftGameId": [ - 5170, + 5454, "uuid!" ], "lineup": [ - 40 + 41 ], "steamId": [ - 80, + 84, "String!" ] } ], "addSteamPresenceBotAccount": [ - 83, + 87, { "bot_secret": [ - 80, + 84, "String!" ], "friend_capacity": [ - 40 + 41 ], "username": [ - 80, + 84, "String!" ] } ], "approveNameChange": [ - 83, + 87, { "name": [ - 80, + 84, "String!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "approve_league_season_movements": [ - 2166, + 2423, { "args": [ - 194, + 199, "approve_league_season_movements_args!" ], "distinct_on": [ - 2187, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2185, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2432 ] } ], "assignSteamPresenceBot": [ - 76 + 80 ], "attachDemo": [ - 104 + 109 ], "backfillSeasonElo": [ - 60, + 63, { "season_id": [ - 80, + 84, "String!" ] } ], "backfillSeasonEloStatus": [ - 69 + 73 ], "bakeShaders": [ - 83, + 87, { "game_server_node_id": [ - 5170, + 5454, "uuid!" ] } ], "callForOrganizer": [ - 83, + 87, { "match_id": [ - 80, + 84, "String!" ] } ], "cancelBackfillSeasonElo": [ - 83 + 87 ], "cancelBakeShaders": [ - 83, + 87, { "game_server_node_id": [ - 5170, + 5454, "uuid!" ] } ], "cancelClipRender": [ - 83, + 87, { "job_id": [ - 5170, + 5454, "uuid!" ] } ], "cancelClipRenderBatch": [ - 83, + 87, { "match_map_id": [ - 5170, + 5454, "uuid!" ] } ], "cancelMatch": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], "cancelRecomputePlayerElo": [ - 83 + 87 ], "cancelRefreshAllPlayers": [ - 83 + 87 ], "cancelReparseAllDemos": [ - 83 + 87 ], "cancelScrimRequest": [ - 83, + 87, { "request_id": [ - 5170, + 5454, "uuid!" ] } ], "checkIntoMatch": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], "clearClipRenderBatch": [ - 83, + 87, { "match_map_id": [ - 5170, + 5454, "uuid!" ] } ], "clearFinishedClipRenders": [ - 83 + 87 ], "clearPendingMatchImport": [ - 55, + 56, { "valve_match_id": [ - 80, + 84, "String!" ] } ], "clone_league_season": [ - 2133, + 2390, { "args": [ - 346, + 351, "clone_league_season_args!" ], "distinct_on": [ - 2153, + 2410, "[league_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2150, + 2407, "[league_seasons_order_by!]" ], "where": [ - 2138 + 2395 ] } ], "counterScrimRequest": [ - 83, + 87, { "proposed_scheduled_at": [ - 4670, + 4954, "timestamptz!" ], "request_id": [ - 5170, + 5454, "uuid!" ] } ], "createApiKey": [ - 2, + 3, { "label": [ - 80, + 84, "String!" ] } ], "createClipFromPreset": [ - 15, + 16, { "fps": [ - 40 + 41 ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "preset": [ - 80, + 84, "String!" ], "resolution": [ - 80 + 84 ], "target_name": [ - 80 + 84 ], "target_steam_id": [ - 80, + 84, "String!" ], "title": [ - 80 + 84 ] } ], "createClipRender": [ - 15, + 16, { "spec": [ - 11, + 12, "ClipSpecInput!" ] } ], "createClips": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], "createDraftGame": [ - 16, + 17, { "settings": [ - 1930, + 2187, "jsonb!" ] } ], "createScheduledMatch": [ - 17, + 18, { "lineup_1": [ - 68, + 72, "ScheduledLineupInput!" ], "lineup_2": [ - 68, + 72, "ScheduledLineupInput!" ], "options": [ - 1930, + 2187, "jsonb!" ], "scheduled_at": [ - 80, + 84, "String!" ] } ], "createServerDirectory": [ - 83, + 87, { "dir_path": [ - 80, + 84, "String!" ], "node_id": [ - 80, + 84, "String!" ], "server_id": [ - 80 + 84 ] } ], "deleteAward": [ - 83, + 87, { "id": [ - 5170, + 5454, "uuid!" ] } ], "deleteClip": [ - 83, + 87, { "clip_id": [ - 5170, + 5454, "uuid!" ] } ], "deleteMatch": [ - 83, + 87, { "match_id": [ - 80, + 84, "String!" ] } ], "deleteNewsPost": [ - 83, + 87, { "id": [ - 5170, + 5454, "uuid!" ] } ], "deleteOrphanedDemos": [ - 21, + 22, { "keys": [ - 80, + 84, "[String!]" ] } ], "deleteServerItem": [ - 83, + 87, { "node_id": [ - 80, + 84, "String!" ], "path": [ - 80, + 84, "String!" ], "server_id": [ - 80 + 84 ] } ], "deleteTournament": [ - 83, + 87, { "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "delete__map_pool": [ - 115, + 120, { "where": [ - 110, + 115, "_map_pool_bool_exp!" ] } ], "delete__map_pool_by_pk": [ - 107, + 112, { "map_id": [ - 5170, + 5454, "uuid!" ], "map_pool_id": [ - 5170, + 5454, "uuid!" ] } ], "delete_abandoned_matches": [ - 143, + 148, { "where": [ - 135, + 140, "abandoned_matches_bool_exp!" ] } ], "delete_abandoned_matches_by_pk": [ - 126, + 131, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_api_keys": [ - 177, + 182, { "where": [ - 171, + 176, "api_keys_bool_exp!" ] } ], "delete_api_keys_by_pk": [ - 167, + 172, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_award_recipients": [ - 212, + 217, { "where": [ - 204, + 209, "award_recipients_bool_exp!" ] } ], "delete_award_recipients_by_pk": [ - 195, + 200, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_awards": [ - 246, + 251, { "where": [ - 240, + 245, "awards_bool_exp!" ] } ], "delete_awards_by_pk": [ - 236, + 241, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_chat_read_state": [ - 279, + 284, { "where": [ - 273, + 278, "chat_read_state_bool_exp!" ] } ], "delete_chat_read_state_by_pk": [ - 269, + 274, { "steam_id": [ - 264, + 269, "bigint!" ], "thread": [ - 80, + 84, "String!" ] } ], "delete_clip_render_jobs": [ - 319, + 324, { "where": [ - 308, + 313, "clip_render_jobs_bool_exp!" ] } ], "delete_clip_render_jobs_by_pk": [ - 296, + 301, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_custom_pages": [ - 362, + 367, { "where": [ - 353, + 358, "custom_pages_bool_exp!" ] } ], "delete_custom_pages_by_pk": [ - 348, + 353, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_db_backups": [ - 390, + 395, { "where": [ - 384, + 389, "db_backups_bool_exp!" ] } ], "delete_db_backups_by_pk": [ - 380, + 385, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_direct_conversations": [ - 417, + 422, { "where": [ - 411, + 416, "direct_conversations_bool_exp!" ] } ], "delete_direct_conversations_by_pk": [ - 407, + 412, { "room_id": [ - 80, + 84, "String!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "delete_direct_messages": [ - 444, + 449, { "where": [ - 438, + 443, "direct_messages_bool_exp!" ] } ], "delete_direct_messages_by_pk": [ - 434, + 439, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_draft_game_picks": [ - 480, + 485, { "where": [ - 472, + 477, "draft_game_picks_bool_exp!" ] } ], "delete_draft_game_picks_by_pk": [ - 461, + 466, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_draft_game_players": [ - 525, + 530, { "where": [ - 517, + 522, "draft_game_players_bool_exp!" ] } ], "delete_draft_game_players_by_pk": [ - 506, + 511, { "draft_game_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "delete_draft_games": [ - 570, + 575, { "where": [ - 562, + 567, "draft_games_bool_exp!" ] } ], "delete_draft_games_by_pk": [ - 551, + 556, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_e_award_sources": [ - 607, + 612, { "where": [ - 600, + 605, "e_award_sources_bool_exp!" ] } ], "delete_e_award_sources_by_pk": [ - 597, + 602, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_award_tiers": [ - 627, + 632, { "where": [ - 620, + 625, "e_award_tiers_bool_exp!" ] } ], "delete_e_award_tiers_by_pk": [ - 617, + 622, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_check_in_settings": [ - 647, + 652, { "where": [ - 640, + 645, "e_check_in_settings_bool_exp!" ] } ], "delete_e_check_in_settings_by_pk": [ - 637, + 642, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_draft_game_captain_selection": [ - 667, + 672, { "where": [ - 660, + 665, "e_draft_game_captain_selection_bool_exp!" ] } ], "delete_e_draft_game_captain_selection_by_pk": [ - 657, + 662, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_draft_game_draft_order": [ - 688, + 693, { "where": [ - 681, + 686, "e_draft_game_draft_order_bool_exp!" ] } ], "delete_e_draft_game_draft_order_by_pk": [ - 678, + 683, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_draft_game_mode": [ - 709, + 714, { "where": [ - 702, + 707, "e_draft_game_mode_bool_exp!" ] } ], "delete_e_draft_game_mode_by_pk": [ - 699, + 704, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_draft_game_player_status": [ - 730, + 735, { "where": [ - 723, + 728, "e_draft_game_player_status_bool_exp!" ] } ], "delete_e_draft_game_player_status_by_pk": [ - 720, + 725, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_draft_game_status": [ - 751, + 756, { "where": [ - 744, + 749, "e_draft_game_status_bool_exp!" ] } ], "delete_e_draft_game_status_by_pk": [ - 741, + 746, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_event_media_access": [ - 772, + 777, { "where": [ - 765, + 770, "e_event_media_access_bool_exp!" ] } ], "delete_e_event_media_access_by_pk": [ - 762, + 767, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_event_visibility": [ - 792, + 797, { "where": [ - 785, + 790, "e_event_visibility_bool_exp!" ] } ], "delete_e_event_visibility_by_pk": [ - 782, + 787, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_friend_status": [ - 812, + 817, { "where": [ - 805, + 810, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 802, + 807, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_game_cfg_types": [ - 833, + 838, { "where": [ - 826, + 831, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 823, + 828, + { + "value": [ + 84, + "String!" + ] + } + ], + "delete_e_game_plugin_channels": [ + 858, + { + "where": [ + 851, + "e_game_plugin_channels_bool_exp!" + ] + } + ], + "delete_e_game_plugin_channels_by_pk": [ + 848, + { + "value": [ + 84, + "String!" + ] + } + ], + "delete_e_game_plugin_install_statuses": [ + 878, + { + "where": [ + 871, + "e_game_plugin_install_statuses_bool_exp!" + ] + } + ], + "delete_e_game_plugin_install_statuses_by_pk": [ + 868, + { + "value": [ + 84, + "String!" + ] + } + ], + "delete_e_game_plugin_kinds": [ + 898, + { + "where": [ + 891, + "e_game_plugin_kinds_bool_exp!" + ] + } + ], + "delete_e_game_plugin_kinds_by_pk": [ + 888, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_game_server_node_statuses": [ - 853, + 918, { "where": [ - 846, + 911, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 843, + 908, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_league_movement_types": [ - 874, + 939, { "where": [ - 867, + 932, "e_league_movement_types_bool_exp!" ] } ], "delete_e_league_movement_types_by_pk": [ - 864, + 929, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_league_proposal_statuses": [ - 895, + 960, { "where": [ - 888, + 953, "e_league_proposal_statuses_bool_exp!" ] } ], "delete_e_league_proposal_statuses_by_pk": [ - 885, + 950, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_league_registration_statuses": [ - 916, + 981, { "where": [ - 909, + 974, "e_league_registration_statuses_bool_exp!" ] } ], "delete_e_league_registration_statuses_by_pk": [ - 906, + 971, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_league_season_statuses": [ - 937, + 1002, { "where": [ - 930, + 995, "e_league_season_statuses_bool_exp!" ] } ], "delete_e_league_season_statuses_by_pk": [ - 927, + 992, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_lobby_access": [ - 958, + 1023, { "where": [ - 951, + 1016, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 948, + 1013, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_lobby_player_status": [ - 979, + 1044, { "where": [ - 972, + 1037, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 969, + 1034, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_map_pool_types": [ - 999, + 1064, { "where": [ - 992, + 1057, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 989, + 1054, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_match_clip_visibility": [ - 1020, + 1085, { "where": [ - 1013, + 1078, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 1010, + 1075, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_match_map_status": [ - 1040, + 1105, { "where": [ - 1033, + 1098, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 1030, + 1095, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_match_mode": [ - 1061, + 1126, { "where": [ - 1054, + 1119, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 1051, + 1116, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_match_party_sources": [ - 1081, + 1146, { "where": [ - 1074, + 1139, "e_match_party_sources_bool_exp!" ] } ], "delete_e_match_party_sources_by_pk": [ - 1071, + 1136, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_match_status": [ - 1101, + 1166, { "where": [ - 1094, + 1159, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 1091, + 1156, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_match_types": [ - 1122, + 1187, { "where": [ - 1115, + 1180, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 1112, + 1177, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_notification_types": [ - 1143, + 1208, { "where": [ - 1136, + 1201, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 1133, + 1198, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_objective_types": [ - 1163, + 1228, { "where": [ - 1156, + 1221, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 1153, + 1218, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_player_roles": [ - 1183, + 1248, { "where": [ - 1176, + 1241, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 1173, + 1238, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_plugin_runtimes": [ - 1203, + 1268, { "where": [ - 1196, + 1261, "e_plugin_runtimes_bool_exp!" ] } ], "delete_e_plugin_runtimes_by_pk": [ - 1193, + 1258, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_ready_settings": [ - 1223, + 1288, { "where": [ - 1216, + 1281, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 1213, + 1278, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_sanction_types": [ - 1243, + 1308, { "where": [ - 1236, + 1301, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 1233, + 1298, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_scrim_request_statuses": [ - 1264, + 1329, { "where": [ - 1257, + 1322, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 1254, + 1319, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_server_types": [ - 1284, + 1349, { "where": [ - 1277, + 1342, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 1274, + 1339, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_sides": [ - 1304, + 1369, { "where": [ - 1297, + 1362, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 1294, + 1359, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_system_alert_types": [ - 1324, + 1389, { "where": [ - 1317, + 1382, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 1314, + 1379, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_team_roles": [ - 1344, + 1409, { "where": [ - 1337, + 1402, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 1334, + 1399, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_team_roster_statuses": [ - 1365, + 1430, { "where": [ - 1358, + 1423, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 1355, + 1420, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_timeout_settings": [ - 1385, + 1450, { "where": [ - 1378, + 1443, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 1375, + 1440, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_tournament_categories": [ - 1405, + 1470, { "where": [ - 1398, + 1463, "e_tournament_categories_bool_exp!" ] } ], "delete_e_tournament_categories_by_pk": [ - 1395, + 1460, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_tournament_stage_types": [ - 1426, + 1491, { "where": [ - 1419, + 1484, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 1416, + 1481, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_tournament_status": [ - 1447, + 1512, { "where": [ - 1440, + 1505, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1437, + 1502, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_utility_types": [ - 1468, + 1533, { "where": [ - 1461, + 1526, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1458, + 1523, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_veto_pick_types": [ - 1488, + 1553, { "where": [ - 1481, + 1546, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1478, + 1543, { "value": [ - 80, + 84, "String!" ] } ], "delete_e_winning_reasons": [ - 1508, + 1573, { "where": [ - 1501, + 1566, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1498, + 1563, { "value": [ - 80, + 84, "String!" ] } ], "delete_event_match_links": [ - 1526, + 1591, { "where": [ - 1521, + 1586, "event_match_links_bool_exp!" ] } ], "delete_event_match_links_by_pk": [ - 1518, + 1583, { "event_id": [ - 5170, + 5454, "uuid!" ], "match_id": [ - 5170, + 5454, "uuid!" ] } ], "delete_event_media": [ - 1553, + 1618, { "where": [ - 1545, + 1610, "event_media_bool_exp!" ] } ], "delete_event_media_by_pk": [ - 1536, + 1601, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_event_media_players": [ - 1575, + 1640, { "where": [ - 1567, + 1632, "event_media_players_bool_exp!" ] } ], "delete_event_media_players_by_pk": [ - 1558, + 1623, { "media_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "delete_event_organizers": [ - 1636, + 1701, { "where": [ - 1628, + 1693, "event_organizers_bool_exp!" ] } ], "delete_event_organizers_by_pk": [ - 1619, + 1684, { "event_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "delete_event_players": [ - 1677, + 1742, { "where": [ - 1669, + 1734, "event_players_bool_exp!" ] } ], "delete_event_players_by_pk": [ - 1660, + 1725, { "event_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "delete_event_teams": [ - 1715, + 1780, { "where": [ - 1708, + 1773, "event_teams_bool_exp!" ] } ], "delete_event_teams_by_pk": [ - 1701, + 1766, { "event_id": [ - 5170, + 5454, "uuid!" ], "team_id": [ - 5170, + 5454, "uuid!" ] } ], "delete_event_tournaments": [ - 1739, + 1804, { "where": [ - 1732, + 1797, "event_tournaments_bool_exp!" ] } ], "delete_event_tournaments_by_pk": [ - 1725, + 1790, { "event_id": [ - 5170, + 5454, "uuid!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "delete_events": [ - 1759, + 1824, { "where": [ - 1753, + 1818, "events_bool_exp!" ] } ], "delete_events_by_pk": [ - 1749, + 1814, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_friends": [ - 1789, + 1854, { "where": [ - 1783, + 1848, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1779, + 1844, { "other_player_steam_id": [ - 264, + 269, "bigint!" ], "player_steam_id": [ - 264, + 269, "bigint!" ] } ], + "delete_game_mode_plugins": [ + 1894, + { + "where": [ + 1883, + "game_mode_plugins_bool_exp!" + ] + } + ], + "delete_game_mode_plugins_by_pk": [ + 1871, + { + "game_mode_id": [ + 5454, + "uuid!" + ], + "plugin_slug": [ + 84, + "String!" + ] + } + ], + "delete_game_modes": [ + 1929, + { + "where": [ + 1924, + "game_modes_bool_exp!" + ] + } + ], + "delete_game_modes_by_pk": [ + 1921, + { + "id": [ + 5454, + "uuid!" + ] + } + ], + "delete_game_plugin_installs": [ + 1948, + { + "where": [ + 1943, + "game_plugin_installs_bool_exp!" + ] + } + ], + "delete_game_plugin_installs_by_pk": [ + 1940, + { + "plugin_slug": [ + 84, + "String!" + ] + } + ], + "delete_game_plugin_versions": [ + 1977, + { + "where": [ + 1969, + "game_plugin_versions_bool_exp!" + ] + } + ], + "delete_game_plugin_versions_by_pk": [ + 1958, + { + "plugin_slug": [ + 84, + "String!" + ], + "runtime": [ + 1263, + "e_plugin_runtimes_enum!" + ], + "version": [ + 84, + "String!" + ] + } + ], + "delete_game_plugins": [ + 2016, + { + "where": [ + 2008, + "game_plugins_bool_exp!" + ] + } + ], + "delete_game_plugins_by_pk": [ + 2003, + { + "slug": [ + 84, + "String!" + ] + } + ], + "delete_game_server_node_plugins": [ + 2051, + { + "where": [ + 2044, + "game_server_node_plugins_bool_exp!" + ] + } + ], + "delete_game_server_node_plugins_by_pk": [ + 2035, + { + "id": [ + 5454, + "uuid!" + ] + } + ], "delete_game_server_nodes": [ - 1829, + 2086, { "where": [ - 1818, + 2075, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1806, + 2063, { "id": [ - 80, + 84, "String!" ] } ], "delete_game_versions": [ - 1871, + 2128, { "where": [ - 1862, + 2119, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1857, + 2114, { "build_id": [ - 40, + 41, "Int!" ] } ], "delete_gamedata_signature_validations": [ - 1904, + 2161, { "where": [ - 1895, + 2152, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1890, + 2147, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1942, + 2199, { "where": [ - 1937, + 2194, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 1967, + 2224, { "where": [ - 1961, + 2218, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 1957, + 2214, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_league_match_weeks": [ - 2002, + 2259, { "where": [ - 1994, + 2251, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 1985, + 2242, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 2043, + 2300, { "where": [ - 2035, + 2292, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 2026, + 2283, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 2084, + 2341, { "where": [ - 2076, + 2333, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 2067, + 2324, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_league_season_divisions": [ - 2122, + 2379, { "where": [ - 2115, + 2372, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 2108, + 2365, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_league_seasons": [ - 2147, + 2404, { "where": [ - 2138, + 2395, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 2133, + 2390, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_league_team_movements": [ - 2183, + 2440, { "where": [ - 2175, + 2432, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 2166, + 2423, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_league_team_rosters": [ - 2224, + 2481, { "where": [ - 2216, + 2473, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 2207, + 2464, { "league_team_season_id": [ - 5170, + 5454, "uuid!" ], "player_steam_id": [ - 264, + 269, "bigint!" ] } ], "delete_league_team_seasons": [ - 2265, + 2522, { "where": [ - 2257, + 2514, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 2248, + 2505, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_league_teams": [ - 2298, + 2555, { "where": [ - 2293, + 2550, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 2290, + 2547, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_lobbies": [ - 2317, + 2574, { "where": [ - 2312, + 2569, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 2309, + 2566, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_lobby_players": [ - 2347, + 2604, { "where": [ - 2339, + 2596, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 2328, + 2585, { "lobby_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "delete_map_pools": [ - 2381, + 2638, { "where": [ - 2376, + 2633, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 2373, + 2630, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_maps": [ - 2408, + 2665, { "where": [ - 2401, + 2658, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 2392, + 2649, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_match_clips": [ - 2438, + 2695, { "where": [ - 2430, + 2687, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 2421, + 2678, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_match_demo_sessions": [ - 2484, + 2741, { "where": [ - 2473, + 2730, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 2463, + 2720, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_match_lineup_players": [ - 2528, + 2785, { "where": [ - 2520, + 2777, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 2509, + 2766, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_match_lineups": [ - 2571, + 2828, { "where": [ - 2563, + 2820, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 2554, + 2811, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_match_map_demos": [ - 2619, + 2876, { "where": [ - 2608, + 2865, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2596, + 2853, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_match_map_rounds": [ - 2664, + 2921, { "where": [ - 2656, + 2913, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2647, + 2904, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2704, + 2961, { "where": [ - 2697, + 2954, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2688, + 2945, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_match_maps": [ - 2733, + 2990, { "where": [ - 2725, + 2982, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2716, + 2973, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_match_options": [ - 2768, + 3034, { "where": [ - 2762, + 3026, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2758, + 3015, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2802, + 3077, { "where": [ - 2795, + 3070, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2786, + 3061, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_match_streams": [ - 2837, + 3112, { "where": [ - 2826, + 3101, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2814, + 3089, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2872, + 3147, { "where": [ - 2867, + 3142, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2864, + 3139, { "type": [ - 828, + 833, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 2899, + 3176, { "where": [ - 2891, + 3168, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2882, + 3157, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2932, + 3211, { "where": [ - 2927, + 3206, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2924, + 3203, { "name": [ - 80, + 84, "String!" ] } ], "delete_my_friends": [ - 2964, + 3243, { "where": [ - 2954, + 3233, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2998, + 3277, { "where": [ - 2992, + 3271, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2988, + 3267, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_notification_preferences": [ - 3025, + 3304, { "where": [ - 3019, + 3298, "notification_preferences_bool_exp!" ] } ], "delete_notification_preferences_by_pk": [ - 3015, + 3294, { "channel": [ - 80, + 84, "String!" ], "key": [ - 80, + 84, "String!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "delete_notifications": [ - 3065, + 3344, { "where": [ - 3054, + 3333, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 3042, + 3321, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_pending_match_import_players": [ - 3112, + 3391, { "where": [ - 3104, + 3383, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 3095, + 3374, { "steam_id": [ - 264, + 269, "bigint!" ], "valve_match_id": [ - 3092, + 3371, "numeric!" ] } ], "delete_pending_match_imports": [ - 3146, + 3425, { "where": [ - 3140, + 3419, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 3136, + 3415, { "valve_match_id": [ - 3092, + 3371, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 3174, + 3453, { "where": [ - 3168, + 3447, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 3164, + 3443, { "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 3208, + 3487, { "where": [ - 3200, + 3479, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 3191, + 3470, { "match_map_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ], "weapon_class": [ - 80, + 84, "String!" ] } ], "delete_player_assists": [ - 3251, + 3530, { "where": [ - 3243, + 3522, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 3232, + 3511, { "attacked_steam_id": [ - 264, + 269, "bigint!" ], "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "delete_player_damages": [ - 3312, + 3591, { "where": [ - 3304, + 3583, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 3295, + 3574, { "id": [ - 5170, + 5454, "uuid!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "delete_player_elo": [ - 3346, + 3625, { "where": [ - 3340, + 3619, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 3336, + 3615, { "match_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ], "type": [ - 1117, + 1182, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 3380, + 3659, { "where": [ - 3372, + 3651, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 3363, + 3642, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_player_flashes": [ - 3423, + 3702, { "where": [ - 3415, + 3694, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 3404, + 3683, { "attacked_steam_id": [ - 264, + 269, "bigint!" ], "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "delete_player_kills": [ - 3509, + 3788, { "where": [ - 3460, + 3739, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 3449, + 3728, { "attacked_steam_id": [ - 264, + 269, "bigint!" ], "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 3478, + 3757, { "where": [ - 3470, + 3749, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 3461, + 3740, { "player_steam_id": [ - 264, + 269, "bigint!" ], "with": [ - 80, + 84, "String!" ] } ], "delete_player_leaderboard_rank": [ - 3544, + 3823, { "where": [ - 3539, + 3818, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 3575, + 3854, { "where": [ - 3567, + 3846, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 3558, + 3837, { "match_map_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "delete_player_objectives": [ - 3667, + 3946, { "where": [ - 3659, + 3938, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3650, + 3929, { "match_map_id": [ - 5170, + 5454, "uuid!" ], "player_steam_id": [ - 264, + 269, "bigint!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3726, + 4005, { "where": [ - 3718, + 3997, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3709, + 3988, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_player_sanctions": [ - 3767, + 4046, { "where": [ - 3759, + 4038, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3750, + 4029, { "created_at": [ - 4670, + 4954, "timestamptz!" ], "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_player_season_stats": [ - 3818, + 4097, { "where": [ - 3810, + 4089, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3791, + 4070, { "player_steam_id": [ - 264, + 269, "bigint!" ], "season_id": [ - 5170, + 5454, "uuid!" ] } ], "delete_player_stats": [ - 3860, + 4139, { "where": [ - 3854, + 4133, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3850, + 4129, { "player_steam_id": [ - 264, + 269, "bigint!" ] } ], "delete_player_steam_bot_friend": [ - 3892, + 4171, { "where": [ - 3883, + 4162, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3878, + 4157, { "steam_id": [ - 264, + 269, "bigint!" ] } ], "delete_player_steam_match_auth": [ - 3920, + 4199, { "where": [ - 3914, + 4193, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3910, + 4189, { "steam_id": [ - 264, + 269, "bigint!" ] } ], "delete_player_unused_utility": [ - 3954, + 4233, { "where": [ - 3946, + 4225, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3937, + 4216, { "match_map_id": [ - 5170, + 5454, "uuid!" ], "player_steam_id": [ - 264, + 269, "bigint!" ] } ], "delete_player_utility": [ - 3995, + 4274, { "where": [ - 3987, + 4266, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3978, + 4257, { "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "delete_players": [ - 4062, + 4341, { "where": [ - 4056, + 4335, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 4052, + 4331, { "steam_id": [ - 264, + 269, "bigint!" ] } ], "delete_plugin_versions": [ - 4090, + 4369, { "where": [ - 4084, + 4363, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 4080, + 4359, { "runtime": [ - 1198, + 1263, "e_plugin_runtimes_enum!" ], "version": [ - 80, + 84, "String!" ] } ], "delete_push_subscriptions": [ - 4117, + 4396, { "where": [ - 4111, + 4390, "push_subscriptions_bool_exp!" ] } ], "delete_push_subscriptions_by_pk": [ - 4107, + 4386, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_seasons": [ - 4148, + 4427, { "where": [ - 4142, + 4421, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 4138, + 4417, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_server_regions": [ - 4175, + 4454, { "where": [ - 4170, + 4449, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 4166, + 4445, { "value": [ - 80, + 84, "String!" ] } ], "delete_servers": [ - 4212, + 4495, { "where": [ - 4204, + 4484, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 4193, + 4472, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_settings": [ - 4247, + 4531, { "where": [ - 4242, + 4526, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 4239, + 4523, { "name": [ - 80, + 84, "String!" ] } ], "delete_steam_account_claims": [ - 4273, + 4557, { "where": [ - 4266, + 4550, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 4259, + 4543, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_steam_accounts": [ - 4293, + 4577, { "where": [ - 4287, + 4571, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 4283, + 4567, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_system_alerts": [ - 4321, + 4605, { "where": [ - 4315, + 4599, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 4311, + 4595, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_team_invites": [ - 4355, + 4639, { "where": [ - 4347, + 4631, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 4338, + 4622, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_team_roster": [ - 4398, + 4682, { "where": [ - 4390, + 4674, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 4379, + 4663, { "player_steam_id": [ - 264, + 269, "bigint!" ], "team_id": [ - 5170, + 5454, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 4434, + 4718, { "where": [ - 4428, + 4712, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 4424, + 4708, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_team_scrim_availability": [ - 4467, + 4751, { "where": [ - 4460, + 4744, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 4451, + 4735, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 4496, + 4780, { "where": [ - 4488, + 4772, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 4479, + 4763, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_team_scrim_requests": [ - 4539, + 4823, { "where": [ - 4531, + 4815, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 4520, + 4804, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_team_scrim_settings": [ - 4576, + 4860, { "where": [ - 4570, + 4854, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 4566, + 4850, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_team_suggestions": [ - 4604, + 4888, { "where": [ - 4598, + 4882, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 4594, + 4878, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_teams": [ - 4640, + 4924, { "where": [ - 4632, + 4916, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 4621, + 4905, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_tournament_awards": [ - 4689, + 4973, { "where": [ - 4681, + 4965, "tournament_awards_bool_exp!" ] } ], "delete_tournament_awards_by_pk": [ - 4672, + 4956, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_tournament_brackets": [ - 4733, + 5017, { "where": [ - 4725, + 5009, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4714, + 4998, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_tournament_categories": [ - 4774, + 5058, { "where": [ - 4767, + 5051, "tournament_categories_bool_exp!" ] } ], "delete_tournament_categories_by_pk": [ - 4760, + 5044, { "category": [ - 1400, + 1465, "e_tournament_categories_enum!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "delete_tournament_organizer_teams": [ - 4798, + 5082, { "where": [ - 4791, + 5075, "tournament_organizer_teams_bool_exp!" ] } ], "delete_tournament_organizer_teams_by_pk": [ - 4784, + 5068, { "team_id": [ - 5170, + 5454, "uuid!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "delete_tournament_organizers": [ - 4825, + 5109, { "where": [ - 4817, + 5101, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4808, + 5092, { "steam_id": [ - 264, + 269, "bigint!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "delete_tournament_prizes": [ - 4866, + 5150, { "where": [ - 4858, + 5142, "tournament_prizes_bool_exp!" ] } ], "delete_tournament_prizes_by_pk": [ - 4849, + 5133, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4907, + 5191, { "where": [ - 4899, + 5183, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4890, + 5174, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_tournament_stages": [ - 4954, + 5238, { "where": [ - 4943, + 5227, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4931, + 5215, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4999, + 5283, { "where": [ - 4991, + 5275, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4982, + 5266, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_tournament_team_roster": [ - 5040, + 5324, { "where": [ - 5032, + 5316, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 5023, + 5307, { "player_steam_id": [ - 264, + 269, "bigint!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "delete_tournament_teams": [ - 5081, + 5365, { "where": [ - 5073, + 5357, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 5064, + 5348, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_tournaments": [ - 5135, + 5419, { "where": [ - 5127, + 5411, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 5106, + 5390, { "id": [ - 5170, + 5454, "uuid!" ] } ], "delete_v_match_captains": [ - 5335, + 5619, { "where": [ - 5330, + 5614, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 5446, + 5730, { "where": [ - 5441, + 5725, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 5668, + 5952, { "where": [ - 5661, + 5945, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5845, + 6129, { "where": [ - 5839, + 6123, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5939, + 6223, { "where": [ - 5931, + 6215, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5912, + 6196, { "tournament_stage_id": [ - 5170, + 5454, "uuid!" ], "tournament_team_id": [ - 5170, + 5454, "uuid!" ] } ], "denyInvite": [ - 83, + 87, { "invite_id": [ - 5170, + 5454, "uuid!" ], "type": [ - 80, + 84, "String!" ] } ], "denyNameChange": [ - 83, + 87, { "name": [ - 80, + 84, "String!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "forfeitMatch": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ], "winning_lineup_id": [ - 5170, + 5454, "uuid!" ] } ], "getLiveStreamSpecState": [ - 45, + 46, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], + "getPluginReadme": [ + 57, + { + "runtime": [ + 84 + ], + "slug": [ + 84, + "String!" + ] + } + ], "getTestUploadLink": [ - 33 + 34 ], "grantAward": [ - 4, + 5, { "award_id": [ - 5170, + 5454, "uuid!" ], "event_id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "note": [ - 80 + 84 ], "player_steam_id": [ - 80 + 84 ], "season_id": [ - 5170 + 5454 ], "team_id": [ - 5170 + 5454 ], "tournament_id": [ - 5170 + 5454 ] } ], "insert__map_pool": [ - 115, + 120, { "objects": [ - 112, + 117, "[_map_pool_insert_input!]!" ], "on_conflict": [ - 116 + 121 ] } ], "insert__map_pool_one": [ - 107, + 112, { "object": [ - 112, + 117, "_map_pool_insert_input!" ], "on_conflict": [ - 116 + 121 ] } ], "insert_abandoned_matches": [ - 143, + 148, { "objects": [ - 138, + 143, "[abandoned_matches_insert_input!]!" ], "on_conflict": [ - 144 + 149 ] } ], "insert_abandoned_matches_one": [ - 126, + 131, { "object": [ - 138, + 143, "abandoned_matches_insert_input!" ], "on_conflict": [ - 144 + 149 ] } ], "insert_api_keys": [ - 177, + 182, { "objects": [ - 174, + 179, "[api_keys_insert_input!]!" ], "on_conflict": [ - 178 + 183 ] } ], "insert_api_keys_one": [ - 167, + 172, { "object": [ - 174, + 179, "api_keys_insert_input!" ], "on_conflict": [ - 178 + 183 ] } ], "insert_award_recipients": [ - 212, + 217, { "objects": [ - 207, + 212, "[award_recipients_insert_input!]!" ], "on_conflict": [ - 213 + 218 ] } ], "insert_award_recipients_one": [ - 195, + 200, { "object": [ - 207, + 212, "award_recipients_insert_input!" ], "on_conflict": [ - 213 + 218 ] } ], "insert_awards": [ - 246, + 251, { "objects": [ - 243, + 248, "[awards_insert_input!]!" ], "on_conflict": [ - 248 + 253 ] } ], "insert_awards_one": [ - 236, + 241, { "object": [ - 243, + 248, "awards_insert_input!" ], "on_conflict": [ - 248 + 253 ] } ], "insert_chat_read_state": [ - 279, + 284, { "objects": [ - 276, + 281, "[chat_read_state_insert_input!]!" ], "on_conflict": [ - 280 + 285 ] } ], "insert_chat_read_state_one": [ - 269, + 274, { "object": [ - 276, + 281, "chat_read_state_insert_input!" ], "on_conflict": [ - 280 + 285 ] } ], "insert_clip_render_jobs": [ - 319, + 324, { "objects": [ - 314, + 319, "[clip_render_jobs_insert_input!]!" ], "on_conflict": [ - 320 + 325 ] } ], "insert_clip_render_jobs_one": [ - 296, + 301, { "object": [ - 314, + 319, "clip_render_jobs_insert_input!" ], "on_conflict": [ - 320 + 325 ] } ], "insert_custom_pages": [ - 362, + 367, { "objects": [ - 359, + 364, "[custom_pages_insert_input!]!" ], "on_conflict": [ - 363 + 368 ] } ], "insert_custom_pages_one": [ - 348, + 353, { "object": [ - 359, + 364, "custom_pages_insert_input!" ], "on_conflict": [ - 363 + 368 ] } ], "insert_db_backups": [ - 390, + 395, { "objects": [ - 387, + 392, "[db_backups_insert_input!]!" ], "on_conflict": [ - 391 + 396 ] } ], "insert_db_backups_one": [ - 380, + 385, { "object": [ - 387, + 392, "db_backups_insert_input!" ], "on_conflict": [ - 391 + 396 ] } ], "insert_direct_conversations": [ - 417, + 422, { "objects": [ - 414, + 419, "[direct_conversations_insert_input!]!" ], "on_conflict": [ - 418 + 423 ] } ], "insert_direct_conversations_one": [ - 407, + 412, { "object": [ - 414, + 419, "direct_conversations_insert_input!" ], "on_conflict": [ - 418 + 423 ] } ], "insert_direct_messages": [ - 444, + 449, { "objects": [ - 441, + 446, "[direct_messages_insert_input!]!" ], "on_conflict": [ - 445 + 450 ] } ], "insert_direct_messages_one": [ - 434, + 439, { "object": [ - 441, + 446, "direct_messages_insert_input!" ], "on_conflict": [ - 445 + 450 ] } ], "insert_draft_game_picks": [ - 480, + 485, { "objects": [ - 475, + 480, "[draft_game_picks_insert_input!]!" ], "on_conflict": [ - 481 + 486 ] } ], "insert_draft_game_picks_one": [ - 461, + 466, { "object": [ - 475, + 480, "draft_game_picks_insert_input!" ], "on_conflict": [ - 481 + 486 ] } ], "insert_draft_game_players": [ - 525, + 530, { "objects": [ - 520, + 525, "[draft_game_players_insert_input!]!" ], "on_conflict": [ - 526 + 531 ] } ], "insert_draft_game_players_one": [ - 506, + 511, { "object": [ - 520, + 525, "draft_game_players_insert_input!" ], "on_conflict": [ - 526 + 531 ] } ], "insert_draft_games": [ - 570, + 575, { "objects": [ - 565, + 570, "[draft_games_insert_input!]!" ], "on_conflict": [ - 572 + 577 ] } ], "insert_draft_games_one": [ - 551, + 556, { "object": [ - 565, + 570, "draft_games_insert_input!" ], "on_conflict": [ - 572 + 577 ] } ], "insert_e_award_sources": [ - 607, + 612, { "objects": [ - 604, + 609, "[e_award_sources_insert_input!]!" ], "on_conflict": [ - 608 + 613 ] } ], "insert_e_award_sources_one": [ - 597, + 602, { "object": [ - 604, + 609, "e_award_sources_insert_input!" ], "on_conflict": [ - 608 + 613 ] } ], "insert_e_award_tiers": [ - 627, + 632, { "objects": [ - 624, + 629, "[e_award_tiers_insert_input!]!" ], "on_conflict": [ - 628 + 633 ] } ], "insert_e_award_tiers_one": [ - 617, + 622, { "object": [ - 624, + 629, "e_award_tiers_insert_input!" ], "on_conflict": [ - 628 + 633 ] } ], "insert_e_check_in_settings": [ - 647, + 652, { "objects": [ - 644, + 649, "[e_check_in_settings_insert_input!]!" ], "on_conflict": [ - 648 + 653 ] } ], "insert_e_check_in_settings_one": [ - 637, + 642, { "object": [ - 644, + 649, "e_check_in_settings_insert_input!" ], "on_conflict": [ - 648 + 653 ] } ], "insert_e_draft_game_captain_selection": [ - 667, + 672, { "objects": [ - 664, + 669, "[e_draft_game_captain_selection_insert_input!]!" ], "on_conflict": [ - 669 + 674 ] } ], "insert_e_draft_game_captain_selection_one": [ - 657, + 662, { "object": [ - 664, + 669, "e_draft_game_captain_selection_insert_input!" ], "on_conflict": [ - 669 + 674 ] } ], "insert_e_draft_game_draft_order": [ - 688, + 693, { "objects": [ - 685, + 690, "[e_draft_game_draft_order_insert_input!]!" ], "on_conflict": [ - 690 + 695 ] } ], "insert_e_draft_game_draft_order_one": [ - 678, + 683, { "object": [ - 685, + 690, "e_draft_game_draft_order_insert_input!" ], "on_conflict": [ - 690 + 695 ] } ], "insert_e_draft_game_mode": [ - 709, + 714, { "objects": [ - 706, + 711, "[e_draft_game_mode_insert_input!]!" ], "on_conflict": [ - 711 + 716 ] } ], "insert_e_draft_game_mode_one": [ - 699, + 704, { "object": [ - 706, + 711, "e_draft_game_mode_insert_input!" ], "on_conflict": [ - 711 + 716 ] } ], "insert_e_draft_game_player_status": [ - 730, + 735, { "objects": [ - 727, + 732, "[e_draft_game_player_status_insert_input!]!" ], "on_conflict": [ - 732 + 737 ] } ], "insert_e_draft_game_player_status_one": [ - 720, + 725, { "object": [ - 727, + 732, "e_draft_game_player_status_insert_input!" ], "on_conflict": [ - 732 + 737 ] } ], "insert_e_draft_game_status": [ - 751, + 756, { "objects": [ - 748, + 753, "[e_draft_game_status_insert_input!]!" ], "on_conflict": [ - 753 + 758 ] } ], "insert_e_draft_game_status_one": [ - 741, + 746, { "object": [ - 748, + 753, "e_draft_game_status_insert_input!" ], "on_conflict": [ - 753 + 758 ] } ], "insert_e_event_media_access": [ - 772, + 777, { "objects": [ - 769, + 774, "[e_event_media_access_insert_input!]!" ], "on_conflict": [ - 773 + 778 ] } ], "insert_e_event_media_access_one": [ - 762, + 767, { "object": [ - 769, + 774, "e_event_media_access_insert_input!" ], "on_conflict": [ - 773 + 778 ] } ], "insert_e_event_visibility": [ - 792, + 797, { "objects": [ - 789, + 794, "[e_event_visibility_insert_input!]!" ], "on_conflict": [ - 793 + 798 ] } ], "insert_e_event_visibility_one": [ - 782, + 787, { "object": [ - 789, + 794, "e_event_visibility_insert_input!" ], "on_conflict": [ - 793 + 798 ] } ], "insert_e_friend_status": [ - 812, + 817, { "objects": [ - 809, + 814, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 814 + 819 ] } ], "insert_e_friend_status_one": [ - 802, + 807, { "object": [ - 809, + 814, "e_friend_status_insert_input!" ], "on_conflict": [ - 814 + 819 ] } ], "insert_e_game_cfg_types": [ - 833, + 838, { "objects": [ - 830, + 835, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 834 + 839 ] } ], "insert_e_game_cfg_types_one": [ - 823, + 828, { "object": [ - 830, + 835, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 834 + 839 + ] + } + ], + "insert_e_game_plugin_channels": [ + 858, + { + "objects": [ + 855, + "[e_game_plugin_channels_insert_input!]!" + ], + "on_conflict": [ + 859 + ] + } + ], + "insert_e_game_plugin_channels_one": [ + 848, + { + "object": [ + 855, + "e_game_plugin_channels_insert_input!" + ], + "on_conflict": [ + 859 + ] + } + ], + "insert_e_game_plugin_install_statuses": [ + 878, + { + "objects": [ + 875, + "[e_game_plugin_install_statuses_insert_input!]!" + ], + "on_conflict": [ + 879 + ] + } + ], + "insert_e_game_plugin_install_statuses_one": [ + 868, + { + "object": [ + 875, + "e_game_plugin_install_statuses_insert_input!" + ], + "on_conflict": [ + 879 + ] + } + ], + "insert_e_game_plugin_kinds": [ + 898, + { + "objects": [ + 895, + "[e_game_plugin_kinds_insert_input!]!" + ], + "on_conflict": [ + 899 + ] + } + ], + "insert_e_game_plugin_kinds_one": [ + 888, + { + "object": [ + 895, + "e_game_plugin_kinds_insert_input!" + ], + "on_conflict": [ + 899 ] } ], "insert_e_game_server_node_statuses": [ - 853, + 918, { "objects": [ - 850, + 915, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 855 + 920 ] } ], "insert_e_game_server_node_statuses_one": [ - 843, + 908, { "object": [ - 850, + 915, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 855 + 920 ] } ], "insert_e_league_movement_types": [ - 874, + 939, { "objects": [ - 871, + 936, "[e_league_movement_types_insert_input!]!" ], "on_conflict": [ - 876 + 941 ] } ], "insert_e_league_movement_types_one": [ - 864, + 929, { "object": [ - 871, + 936, "e_league_movement_types_insert_input!" ], "on_conflict": [ - 876 + 941 ] } ], "insert_e_league_proposal_statuses": [ - 895, + 960, { "objects": [ - 892, + 957, "[e_league_proposal_statuses_insert_input!]!" ], "on_conflict": [ - 897 + 962 ] } ], "insert_e_league_proposal_statuses_one": [ - 885, + 950, { "object": [ - 892, + 957, "e_league_proposal_statuses_insert_input!" ], "on_conflict": [ - 897 + 962 ] } ], "insert_e_league_registration_statuses": [ - 916, + 981, { "objects": [ - 913, + 978, "[e_league_registration_statuses_insert_input!]!" ], "on_conflict": [ - 918 + 983 ] } ], "insert_e_league_registration_statuses_one": [ - 906, + 971, { "object": [ - 913, + 978, "e_league_registration_statuses_insert_input!" ], "on_conflict": [ - 918 + 983 ] } ], "insert_e_league_season_statuses": [ - 937, + 1002, { "objects": [ - 934, + 999, "[e_league_season_statuses_insert_input!]!" ], "on_conflict": [ - 939 + 1004 ] } ], "insert_e_league_season_statuses_one": [ - 927, + 992, { "object": [ - 934, + 999, "e_league_season_statuses_insert_input!" ], "on_conflict": [ - 939 + 1004 ] } ], "insert_e_lobby_access": [ - 958, + 1023, { "objects": [ - 955, + 1020, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 960 + 1025 ] } ], "insert_e_lobby_access_one": [ - 948, + 1013, { "object": [ - 955, + 1020, "e_lobby_access_insert_input!" ], "on_conflict": [ - 960 + 1025 ] } ], "insert_e_lobby_player_status": [ - 979, + 1044, { "objects": [ - 976, + 1041, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 980 + 1045 ] } ], "insert_e_lobby_player_status_one": [ - 969, + 1034, { "object": [ - 976, + 1041, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 980 + 1045 ] } ], "insert_e_map_pool_types": [ - 999, + 1064, { "objects": [ - 996, + 1061, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 1001 + 1066 ] } ], "insert_e_map_pool_types_one": [ - 989, + 1054, { "object": [ - 996, + 1061, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 1001 + 1066 ] } ], "insert_e_match_clip_visibility": [ - 1020, + 1085, { "objects": [ - 1017, + 1082, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 1021 + 1086 ] } ], "insert_e_match_clip_visibility_one": [ - 1010, + 1075, { "object": [ - 1017, + 1082, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 1021 + 1086 ] } ], "insert_e_match_map_status": [ - 1040, + 1105, { "objects": [ - 1037, + 1102, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 1042 + 1107 ] } ], "insert_e_match_map_status_one": [ - 1030, + 1095, { "object": [ - 1037, + 1102, "e_match_map_status_insert_input!" ], "on_conflict": [ - 1042 + 1107 ] } ], "insert_e_match_mode": [ - 1061, + 1126, { "objects": [ - 1058, + 1123, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 1062 + 1127 ] } ], "insert_e_match_mode_one": [ - 1051, + 1116, { "object": [ - 1058, + 1123, "e_match_mode_insert_input!" ], "on_conflict": [ - 1062 + 1127 ] } ], "insert_e_match_party_sources": [ - 1081, + 1146, { "objects": [ - 1078, + 1143, "[e_match_party_sources_insert_input!]!" ], "on_conflict": [ - 1082 + 1147 ] } ], "insert_e_match_party_sources_one": [ - 1071, + 1136, { "object": [ - 1078, + 1143, "e_match_party_sources_insert_input!" ], "on_conflict": [ - 1082 + 1147 ] } ], "insert_e_match_status": [ - 1101, + 1166, { "objects": [ - 1098, + 1163, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 1103 + 1168 ] } ], "insert_e_match_status_one": [ - 1091, + 1156, { "object": [ - 1098, + 1163, "e_match_status_insert_input!" ], "on_conflict": [ - 1103 + 1168 ] } ], "insert_e_match_types": [ - 1122, + 1187, { "objects": [ - 1119, + 1184, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 1124 + 1189 ] } ], "insert_e_match_types_one": [ - 1112, + 1177, { "object": [ - 1119, + 1184, "e_match_types_insert_input!" ], "on_conflict": [ - 1124 + 1189 ] } ], "insert_e_notification_types": [ - 1143, + 1208, { "objects": [ - 1140, + 1205, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 1144 + 1209 ] } ], "insert_e_notification_types_one": [ - 1133, + 1198, { "object": [ - 1140, + 1205, "e_notification_types_insert_input!" ], "on_conflict": [ - 1144 + 1209 ] } ], "insert_e_objective_types": [ - 1163, + 1228, { "objects": [ - 1160, + 1225, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 1164 + 1229 ] } ], "insert_e_objective_types_one": [ - 1153, + 1218, { "object": [ - 1160, + 1225, "e_objective_types_insert_input!" ], "on_conflict": [ - 1164 + 1229 ] } ], "insert_e_player_roles": [ - 1183, + 1248, { "objects": [ - 1180, + 1245, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 1184 + 1249 ] } ], "insert_e_player_roles_one": [ - 1173, + 1238, { "object": [ - 1180, + 1245, "e_player_roles_insert_input!" ], "on_conflict": [ - 1184 + 1249 ] } ], "insert_e_plugin_runtimes": [ - 1203, + 1268, { "objects": [ - 1200, + 1265, "[e_plugin_runtimes_insert_input!]!" ], "on_conflict": [ - 1204 + 1269 ] } ], "insert_e_plugin_runtimes_one": [ - 1193, + 1258, { "object": [ - 1200, + 1265, "e_plugin_runtimes_insert_input!" ], "on_conflict": [ - 1204 + 1269 ] } ], "insert_e_ready_settings": [ - 1223, + 1288, { "objects": [ - 1220, + 1285, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 1224 + 1289 ] } ], "insert_e_ready_settings_one": [ - 1213, + 1278, { "object": [ - 1220, + 1285, "e_ready_settings_insert_input!" ], "on_conflict": [ - 1224 + 1289 ] } ], "insert_e_sanction_types": [ - 1243, + 1308, { "objects": [ - 1240, + 1305, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 1245 + 1310 ] } ], "insert_e_sanction_types_one": [ - 1233, + 1298, { "object": [ - 1240, + 1305, "e_sanction_types_insert_input!" ], "on_conflict": [ - 1245 + 1310 ] } ], "insert_e_scrim_request_statuses": [ - 1264, + 1329, { "objects": [ - 1261, + 1326, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 1265 + 1330 ] } ], "insert_e_scrim_request_statuses_one": [ - 1254, + 1319, { "object": [ - 1261, + 1326, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 1265 + 1330 ] } ], "insert_e_server_types": [ - 1284, + 1349, { "objects": [ - 1281, + 1346, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 1285 + 1350 ] } ], "insert_e_server_types_one": [ - 1274, + 1339, { "object": [ - 1281, + 1346, "e_server_types_insert_input!" ], "on_conflict": [ - 1285 + 1350 ] } ], "insert_e_sides": [ - 1304, + 1369, { "objects": [ - 1301, + 1366, "[e_sides_insert_input!]!" ], "on_conflict": [ - 1305 + 1370 ] } ], "insert_e_sides_one": [ - 1294, + 1359, { "object": [ - 1301, + 1366, "e_sides_insert_input!" ], "on_conflict": [ - 1305 + 1370 ] } ], "insert_e_system_alert_types": [ - 1324, + 1389, { "objects": [ - 1321, + 1386, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 1325 + 1390 ] } ], "insert_e_system_alert_types_one": [ - 1314, + 1379, { "object": [ - 1321, + 1386, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 1325 + 1390 ] } ], "insert_e_team_roles": [ - 1344, + 1409, { "objects": [ - 1341, + 1406, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 1346 + 1411 ] } ], "insert_e_team_roles_one": [ - 1334, + 1399, { "object": [ - 1341, + 1406, "e_team_roles_insert_input!" ], "on_conflict": [ - 1346 + 1411 ] } ], "insert_e_team_roster_statuses": [ - 1365, + 1430, { "objects": [ - 1362, + 1427, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 1366 + 1431 ] } ], "insert_e_team_roster_statuses_one": [ - 1355, + 1420, { "object": [ - 1362, + 1427, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 1366 + 1431 ] } ], "insert_e_timeout_settings": [ - 1385, + 1450, { "objects": [ - 1382, + 1447, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 1386 + 1451 ] } ], "insert_e_timeout_settings_one": [ - 1375, + 1440, { "object": [ - 1382, + 1447, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 1386 + 1451 ] } ], "insert_e_tournament_categories": [ - 1405, + 1470, { "objects": [ - 1402, + 1467, "[e_tournament_categories_insert_input!]!" ], "on_conflict": [ - 1407 + 1472 ] } ], "insert_e_tournament_categories_one": [ - 1395, + 1460, { "object": [ - 1402, + 1467, "e_tournament_categories_insert_input!" ], "on_conflict": [ - 1407 + 1472 ] } ], "insert_e_tournament_stage_types": [ - 1426, + 1491, { "objects": [ - 1423, + 1488, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 1428 + 1493 ] } ], "insert_e_tournament_stage_types_one": [ - 1416, + 1481, { "object": [ - 1423, + 1488, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 1428 + 1493 ] } ], "insert_e_tournament_status": [ - 1447, + 1512, { "objects": [ - 1444, + 1509, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1449 + 1514 ] } ], "insert_e_tournament_status_one": [ - 1437, + 1502, { "object": [ - 1444, + 1509, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1449 + 1514 ] } ], "insert_e_utility_types": [ - 1468, + 1533, { "objects": [ - 1465, + 1530, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1469 + 1534 ] } ], "insert_e_utility_types_one": [ - 1458, + 1523, { "object": [ - 1465, + 1530, "e_utility_types_insert_input!" ], "on_conflict": [ - 1469 + 1534 ] } ], "insert_e_veto_pick_types": [ - 1488, + 1553, { "objects": [ - 1485, + 1550, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1489 + 1554 ] } ], "insert_e_veto_pick_types_one": [ - 1478, + 1543, { "object": [ - 1485, + 1550, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1489 + 1554 ] } ], "insert_e_winning_reasons": [ - 1508, + 1573, { "objects": [ - 1505, + 1570, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1509 + 1574 ] } ], "insert_e_winning_reasons_one": [ - 1498, + 1563, { "object": [ - 1505, + 1570, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1509 + 1574 ] } ], "insert_event_match_links": [ - 1526, + 1591, { "objects": [ - 1523, + 1588, "[event_match_links_insert_input!]!" ], "on_conflict": [ - 1527 + 1592 ] } ], "insert_event_match_links_one": [ - 1518, + 1583, { "object": [ - 1523, + 1588, "event_match_links_insert_input!" ], "on_conflict": [ - 1527 + 1592 ] } ], "insert_event_media": [ - 1553, + 1618, { "objects": [ - 1548, + 1613, "[event_media_insert_input!]!" ], "on_conflict": [ - 1555 + 1620 ] } ], "insert_event_media_one": [ - 1536, + 1601, { "object": [ - 1548, + 1613, "event_media_insert_input!" ], "on_conflict": [ - 1555 + 1620 ] } ], "insert_event_media_players": [ - 1575, + 1640, { "objects": [ - 1570, + 1635, "[event_media_players_insert_input!]!" ], "on_conflict": [ - 1576 + 1641 ] } ], "insert_event_media_players_one": [ - 1558, + 1623, { "object": [ - 1570, + 1635, "event_media_players_insert_input!" ], "on_conflict": [ - 1576 + 1641 ] } ], "insert_event_organizers": [ - 1636, + 1701, { "objects": [ - 1631, + 1696, "[event_organizers_insert_input!]!" ], "on_conflict": [ - 1637 + 1702 ] } ], "insert_event_organizers_one": [ - 1619, + 1684, { "object": [ - 1631, + 1696, "event_organizers_insert_input!" ], "on_conflict": [ - 1637 + 1702 ] } ], "insert_event_players": [ - 1677, + 1742, { "objects": [ - 1672, + 1737, "[event_players_insert_input!]!" ], "on_conflict": [ - 1678 + 1743 ] } ], "insert_event_players_one": [ - 1660, + 1725, { "object": [ - 1672, + 1737, "event_players_insert_input!" ], "on_conflict": [ - 1678 + 1743 ] } ], "insert_event_teams": [ - 1715, + 1780, { "objects": [ - 1710, + 1775, "[event_teams_insert_input!]!" ], "on_conflict": [ - 1716 + 1781 ] } ], "insert_event_teams_one": [ - 1701, + 1766, { "object": [ - 1710, + 1775, "event_teams_insert_input!" ], "on_conflict": [ - 1716 + 1781 ] } ], "insert_event_tournaments": [ - 1739, + 1804, { "objects": [ - 1734, + 1799, "[event_tournaments_insert_input!]!" ], "on_conflict": [ - 1740 + 1805 ] } ], "insert_event_tournaments_one": [ - 1725, + 1790, { "object": [ - 1734, + 1799, "event_tournaments_insert_input!" ], "on_conflict": [ - 1740 + 1805 ] } ], "insert_events": [ - 1759, + 1824, { "objects": [ - 1756, + 1821, "[events_insert_input!]!" ], "on_conflict": [ - 1761 + 1826 ] } ], "insert_events_one": [ - 1749, + 1814, { "object": [ - 1756, + 1821, "events_insert_input!" ], "on_conflict": [ - 1761 + 1826 ] } ], "insert_friends": [ - 1789, + 1854, { "objects": [ - 1786, + 1851, "[friends_insert_input!]!" ], "on_conflict": [ - 1790 + 1855 ] } ], "insert_friends_one": [ - 1779, + 1844, { "object": [ - 1786, + 1851, "friends_insert_input!" ], "on_conflict": [ - 1790 + 1855 + ] + } + ], + "insert_game_mode_plugins": [ + 1894, + { + "objects": [ + 1889, + "[game_mode_plugins_insert_input!]!" + ], + "on_conflict": [ + 1895 + ] + } + ], + "insert_game_mode_plugins_one": [ + 1871, + { + "object": [ + 1889, + "game_mode_plugins_insert_input!" + ], + "on_conflict": [ + 1895 + ] + } + ], + "insert_game_modes": [ + 1929, + { + "objects": [ + 1926, + "[game_modes_insert_input!]!" + ], + "on_conflict": [ + 1931 + ] + } + ], + "insert_game_modes_one": [ + 1921, + { + "object": [ + 1926, + "game_modes_insert_input!" + ], + "on_conflict": [ + 1931 + ] + } + ], + "insert_game_plugin_installs": [ + 1948, + { + "objects": [ + 1945, + "[game_plugin_installs_insert_input!]!" + ], + "on_conflict": [ + 1949 + ] + } + ], + "insert_game_plugin_installs_one": [ + 1940, + { + "object": [ + 1945, + "game_plugin_installs_insert_input!" + ], + "on_conflict": [ + 1949 + ] + } + ], + "insert_game_plugin_versions": [ + 1977, + { + "objects": [ + 1972, + "[game_plugin_versions_insert_input!]!" + ], + "on_conflict": [ + 1978 + ] + } + ], + "insert_game_plugin_versions_one": [ + 1958, + { + "object": [ + 1972, + "game_plugin_versions_insert_input!" + ], + "on_conflict": [ + 1978 + ] + } + ], + "insert_game_plugins": [ + 2016, + { + "objects": [ + 2013, + "[game_plugins_insert_input!]!" + ], + "on_conflict": [ + 2018 + ] + } + ], + "insert_game_plugins_one": [ + 2003, + { + "object": [ + 2013, + "game_plugins_insert_input!" + ], + "on_conflict": [ + 2018 + ] + } + ], + "insert_game_server_node_plugins": [ + 2051, + { + "objects": [ + 2046, + "[game_server_node_plugins_insert_input!]!" + ], + "on_conflict": [ + 2052 + ] + } + ], + "insert_game_server_node_plugins_one": [ + 2035, + { + "object": [ + 2046, + "game_server_node_plugins_insert_input!" + ], + "on_conflict": [ + 2052 ] } ], "insert_game_server_nodes": [ - 1829, + 2086, { "objects": [ - 1824, + 2081, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1831 + 2088 ] } ], "insert_game_server_nodes_one": [ - 1806, + 2063, { "object": [ - 1824, + 2081, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1831 + 2088 ] } ], "insert_game_versions": [ - 1871, + 2128, { "objects": [ - 1868, + 2125, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1873 + 2130 ] } ], "insert_game_versions_one": [ - 1857, + 2114, { "object": [ - 1868, + 2125, "game_versions_insert_input!" ], "on_conflict": [ - 1873 + 2130 ] } ], "insert_gamedata_signature_validations": [ - 1904, + 2161, { "objects": [ - 1901, + 2158, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1905 + 2162 ] } ], "insert_gamedata_signature_validations_one": [ - 1890, + 2147, { "object": [ - 1901, + 2158, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1905 + 2162 ] } ], "insert_leaderboard_entries": [ - 1942, + 2199, { "objects": [ - 1939, + 2196, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1933, + 2190, { "object": [ - 1939, + 2196, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 1967, + 2224, { "objects": [ - 1964, + 2221, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 1969 + 2226 ] } ], "insert_league_divisions_one": [ - 1957, + 2214, { "object": [ - 1964, + 2221, "league_divisions_insert_input!" ], "on_conflict": [ - 1969 + 2226 ] } ], "insert_league_match_weeks": [ - 2002, + 2259, { "objects": [ - 1997, + 2254, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 2003 + 2260 ] } ], "insert_league_match_weeks_one": [ - 1985, + 2242, { "object": [ - 1997, + 2254, "league_match_weeks_insert_input!" ], "on_conflict": [ - 2003 + 2260 ] } ], "insert_league_relegation_playoffs": [ - 2043, + 2300, { "objects": [ - 2038, + 2295, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 2044 + 2301 ] } ], "insert_league_relegation_playoffs_one": [ - 2026, + 2283, { "object": [ - 2038, + 2295, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 2044 + 2301 ] } ], "insert_league_scheduling_proposals": [ - 2084, + 2341, { "objects": [ - 2079, + 2336, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 2085 + 2342 ] } ], "insert_league_scheduling_proposals_one": [ - 2067, + 2324, { "object": [ - 2079, + 2336, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 2085 + 2342 ] } ], "insert_league_season_divisions": [ - 2122, + 2379, { "objects": [ - 2117, + 2374, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 2124 + 2381 ] } ], "insert_league_season_divisions_one": [ - 2108, + 2365, { "object": [ - 2117, + 2374, "league_season_divisions_insert_input!" ], "on_conflict": [ - 2124 + 2381 ] } ], "insert_league_seasons": [ - 2147, + 2404, { "objects": [ - 2144, + 2401, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 2149 + 2406 ] } ], "insert_league_seasons_one": [ - 2133, + 2390, { "object": [ - 2144, + 2401, "league_seasons_insert_input!" ], "on_conflict": [ - 2149 + 2406 ] } ], "insert_league_team_movements": [ - 2183, + 2440, { "objects": [ - 2178, + 2435, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 2184 + 2441 ] } ], "insert_league_team_movements_one": [ - 2166, + 2423, { "object": [ - 2178, + 2435, "league_team_movements_insert_input!" ], "on_conflict": [ - 2184 + 2441 ] } ], "insert_league_team_rosters": [ - 2224, + 2481, { "objects": [ - 2219, + 2476, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 2225 + 2482 ] } ], "insert_league_team_rosters_one": [ - 2207, + 2464, { "object": [ - 2219, + 2476, "league_team_rosters_insert_input!" ], "on_conflict": [ - 2225 + 2482 ] } ], "insert_league_team_seasons": [ - 2265, + 2522, { "objects": [ - 2260, + 2517, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 2267 + 2524 ] } ], "insert_league_team_seasons_one": [ - 2248, + 2505, { "object": [ - 2260, + 2517, "league_team_seasons_insert_input!" ], "on_conflict": [ - 2267 + 2524 ] } ], "insert_league_teams": [ - 2298, + 2555, { "objects": [ - 2295, + 2552, "[league_teams_insert_input!]!" ], "on_conflict": [ - 2300 + 2557 ] } ], "insert_league_teams_one": [ - 2290, + 2547, { "object": [ - 2295, + 2552, "league_teams_insert_input!" ], "on_conflict": [ - 2300 + 2557 ] } ], "insert_lobbies": [ - 2317, + 2574, { "objects": [ - 2314, + 2571, "[lobbies_insert_input!]!" ], "on_conflict": [ - 2319 + 2576 ] } ], "insert_lobbies_one": [ - 2309, + 2566, { "object": [ - 2314, + 2571, "lobbies_insert_input!" ], "on_conflict": [ - 2319 + 2576 ] } ], "insert_lobby_players": [ - 2347, + 2604, { "objects": [ - 2342, + 2599, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 2348 + 2605 ] } ], "insert_lobby_players_one": [ - 2328, + 2585, { "object": [ - 2342, + 2599, "lobby_players_insert_input!" ], "on_conflict": [ - 2348 + 2605 ] } ], "insert_map_pools": [ - 2381, + 2638, { "objects": [ - 2378, + 2635, "[map_pools_insert_input!]!" ], "on_conflict": [ - 2383 + 2640 ] } ], "insert_map_pools_one": [ - 2373, + 2630, { "object": [ - 2378, + 2635, "map_pools_insert_input!" ], "on_conflict": [ - 2383 + 2640 ] } ], "insert_maps": [ - 2408, + 2665, { "objects": [ - 2403, + 2660, "[maps_insert_input!]!" ], "on_conflict": [ - 2410 + 2667 ] } ], "insert_maps_one": [ - 2392, + 2649, { "object": [ - 2403, + 2660, "maps_insert_input!" ], "on_conflict": [ - 2410 + 2667 ] } ], "insert_match_clips": [ - 2438, + 2695, { "objects": [ - 2433, + 2690, "[match_clips_insert_input!]!" ], "on_conflict": [ - 2440 + 2697 ] } ], "insert_match_clips_one": [ - 2421, + 2678, { "object": [ - 2433, + 2690, "match_clips_insert_input!" ], "on_conflict": [ - 2440 + 2697 ] } ], "insert_match_demo_sessions": [ - 2484, + 2741, { "objects": [ - 2479, + 2736, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 2485 + 2742 ] } ], "insert_match_demo_sessions_one": [ - 2463, + 2720, { "object": [ - 2479, + 2736, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 2485 + 2742 ] } ], "insert_match_lineup_players": [ - 2528, + 2785, { "objects": [ - 2523, + 2780, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 2529 + 2786 ] } ], "insert_match_lineup_players_one": [ - 2509, + 2766, { "object": [ - 2523, + 2780, "match_lineup_players_insert_input!" ], "on_conflict": [ - 2529 + 2786 ] } ], "insert_match_lineups": [ - 2571, + 2828, { "objects": [ - 2566, + 2823, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 2573 + 2830 ] } ], "insert_match_lineups_one": [ - 2554, + 2811, { "object": [ - 2566, + 2823, "match_lineups_insert_input!" ], "on_conflict": [ - 2573 + 2830 ] } ], "insert_match_map_demos": [ - 2619, + 2876, { "objects": [ - 2614, + 2871, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2621 + 2878 ] } ], "insert_match_map_demos_one": [ - 2596, + 2853, { "object": [ - 2614, + 2871, "match_map_demos_insert_input!" ], "on_conflict": [ - 2621 + 2878 ] } ], "insert_match_map_rounds": [ - 2664, + 2921, { "objects": [ - 2659, + 2916, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2665 + 2922 ] } ], "insert_match_map_rounds_one": [ - 2647, + 2904, { "object": [ - 2659, + 2916, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2665 + 2922 ] } ], "insert_match_map_veto_picks": [ - 2704, + 2961, { "objects": [ - 2699, + 2956, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2705 + 2962 ] } ], "insert_match_map_veto_picks_one": [ - 2688, + 2945, { "object": [ - 2699, + 2956, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2705 + 2962 ] } ], "insert_match_maps": [ - 2733, + 2990, { "objects": [ - 2728, + 2985, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2735 + 2992 ] } ], "insert_match_maps_one": [ - 2716, + 2973, { "object": [ - 2728, + 2985, "match_maps_insert_input!" ], "on_conflict": [ - 2735 + 2992 ] } ], "insert_match_options": [ - 2768, + 3034, { "objects": [ - 2765, + 3029, "[match_options_insert_input!]!" ], "on_conflict": [ - 2770 + 3036 ] } ], "insert_match_options_one": [ - 2758, + 3015, { "object": [ - 2765, + 3029, "match_options_insert_input!" ], "on_conflict": [ - 2770 + 3036 ] } ], "insert_match_region_veto_picks": [ - 2802, + 3077, { "objects": [ - 2797, + 3072, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2803 + 3078 ] } ], "insert_match_region_veto_picks_one": [ - 2786, + 3061, { "object": [ - 2797, + 3072, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2803 + 3078 ] } ], "insert_match_streams": [ - 2837, + 3112, { "objects": [ - 2832, + 3107, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2838 + 3113 ] } ], "insert_match_streams_one": [ - 2814, + 3089, { "object": [ - 2832, + 3107, "match_streams_insert_input!" ], "on_conflict": [ - 2838 + 3113 ] } ], "insert_match_type_cfgs": [ - 2872, + 3147, { "objects": [ - 2869, + 3144, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2873 + 3148 ] } ], "insert_match_type_cfgs_one": [ - 2864, + 3139, { "object": [ - 2869, + 3144, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2873 + 3148 ] } ], "insert_matches": [ - 2899, + 3176, { "objects": [ - 2894, + 3171, "[matches_insert_input!]!" ], "on_conflict": [ - 2901 + 3178 ] } ], "insert_matches_one": [ - 2882, + 3157, { "object": [ - 2894, + 3171, "matches_insert_input!" ], "on_conflict": [ - 2901 + 3178 ] } ], "insert_migration_hashes_hashes": [ - 2932, + 3211, { "objects": [ - 2929, + 3208, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2933 + 3212 ] } ], "insert_migration_hashes_hashes_one": [ - 2924, + 3203, { "object": [ - 2929, + 3208, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2933 + 3212 ] } ], "insert_my_friends": [ - 2964, + 3243, { "objects": [ - 2959, + 3238, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2942, + 3221, { "object": [ - 2959, + 3238, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2998, + 3277, { "objects": [ - 2995, + 3274, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2999 + 3278 ] } ], "insert_news_articles_one": [ - 2988, + 3267, { "object": [ - 2995, + 3274, "news_articles_insert_input!" ], "on_conflict": [ - 2999 + 3278 ] } ], "insert_notification_preferences": [ - 3025, + 3304, { "objects": [ - 3022, + 3301, "[notification_preferences_insert_input!]!" ], "on_conflict": [ - 3026 + 3305 ] } ], "insert_notification_preferences_one": [ - 3015, + 3294, { "object": [ - 3022, + 3301, "notification_preferences_insert_input!" ], "on_conflict": [ - 3026 + 3305 ] } ], "insert_notifications": [ - 3065, + 3344, { "objects": [ - 3060, + 3339, "[notifications_insert_input!]!" ], "on_conflict": [ - 3066 + 3345 ] } ], "insert_notifications_one": [ - 3042, + 3321, { "object": [ - 3060, + 3339, "notifications_insert_input!" ], "on_conflict": [ - 3066 + 3345 ] } ], "insert_pending_match_import_players": [ - 3112, + 3391, { "objects": [ - 3107, + 3386, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 3113 + 3392 ] } ], "insert_pending_match_import_players_one": [ - 3095, + 3374, { "object": [ - 3107, + 3386, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 3113 + 3392 ] } ], "insert_pending_match_imports": [ - 3146, + 3425, { "objects": [ - 3143, + 3422, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 3148 + 3427 ] } ], "insert_pending_match_imports_one": [ - 3136, + 3415, { "object": [ - 3143, + 3422, "pending_match_imports_insert_input!" ], "on_conflict": [ - 3148 + 3427 ] } ], "insert_player_aim_stats_demo": [ - 3174, + 3453, { "objects": [ - 3171, + 3450, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 3175 + 3454 ] } ], "insert_player_aim_stats_demo_one": [ - 3164, + 3443, { "object": [ - 3171, + 3450, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 3175 + 3454 ] } ], "insert_player_aim_weapon_stats": [ - 3208, + 3487, { "objects": [ - 3203, + 3482, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 3209 + 3488 ] } ], "insert_player_aim_weapon_stats_one": [ - 3191, + 3470, { "object": [ - 3203, + 3482, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 3209 + 3488 ] } ], "insert_player_assists": [ - 3251, + 3530, { "objects": [ - 3246, + 3525, "[player_assists_insert_input!]!" ], "on_conflict": [ - 3252 + 3531 ] } ], "insert_player_assists_one": [ - 3232, + 3511, { "object": [ - 3246, + 3525, "player_assists_insert_input!" ], "on_conflict": [ - 3252 + 3531 ] } ], "insert_player_damages": [ - 3312, + 3591, { "objects": [ - 3307, + 3586, "[player_damages_insert_input!]!" ], "on_conflict": [ - 3313 + 3592 ] } ], "insert_player_damages_one": [ - 3295, + 3574, { "object": [ - 3307, + 3586, "player_damages_insert_input!" ], "on_conflict": [ - 3313 + 3592 ] } ], "insert_player_elo": [ - 3346, + 3625, { "objects": [ - 3343, + 3622, "[player_elo_insert_input!]!" ], "on_conflict": [ - 3347 + 3626 ] } ], "insert_player_elo_one": [ - 3336, + 3615, { "object": [ - 3343, + 3622, "player_elo_insert_input!" ], "on_conflict": [ - 3347 + 3626 ] } ], "insert_player_faceit_rank_history": [ - 3380, + 3659, { "objects": [ - 3375, + 3654, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 3381 + 3660 ] } ], "insert_player_faceit_rank_history_one": [ - 3363, + 3642, { "object": [ - 3375, + 3654, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 3381 + 3660 ] } ], "insert_player_flashes": [ - 3423, + 3702, { "objects": [ - 3418, + 3697, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 3424 + 3703 ] } ], "insert_player_flashes_one": [ - 3404, + 3683, { "object": [ - 3418, + 3697, "player_flashes_insert_input!" ], "on_conflict": [ - 3424 + 3703 ] } ], "insert_player_kills": [ - 3509, + 3788, { "objects": [ - 3504, + 3783, "[player_kills_insert_input!]!" ], "on_conflict": [ - 3510 + 3789 ] } ], "insert_player_kills_by_weapon": [ - 3478, + 3757, { "objects": [ - 3473, + 3752, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 3479 + 3758 ] } ], "insert_player_kills_by_weapon_one": [ - 3461, + 3740, { "object": [ - 3473, + 3752, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 3479 + 3758 ] } ], "insert_player_kills_one": [ - 3449, + 3728, { "object": [ - 3504, + 3783, "player_kills_insert_input!" ], "on_conflict": [ - 3510 + 3789 ] } ], "insert_player_leaderboard_rank": [ - 3544, + 3823, { "objects": [ - 3541, + 3820, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 3535, + 3814, { "object": [ - 3541, + 3820, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 3575, + 3854, { "objects": [ - 3570, + 3849, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 3576 + 3855 ] } ], "insert_player_match_map_stats_one": [ - 3558, + 3837, { "object": [ - 3570, + 3849, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 3576 + 3855 ] } ], "insert_player_objectives": [ - 3667, + 3946, { "objects": [ - 3662, + 3941, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3668 + 3947 ] } ], "insert_player_objectives_one": [ - 3650, + 3929, { "object": [ - 3662, + 3941, "player_objectives_insert_input!" ], "on_conflict": [ - 3668 + 3947 ] } ], "insert_player_premier_rank_history": [ - 3726, + 4005, { "objects": [ - 3721, + 4000, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3727 + 4006 ] } ], "insert_player_premier_rank_history_one": [ - 3709, + 3988, { "object": [ - 3721, + 4000, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3727 + 4006 ] } ], "insert_player_sanctions": [ - 3767, + 4046, { "objects": [ - 3762, + 4041, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3768 + 4047 ] } ], "insert_player_sanctions_one": [ - 3750, + 4029, { "object": [ - 3762, + 4041, "player_sanctions_insert_input!" ], "on_conflict": [ - 3768 + 4047 ] } ], "insert_player_season_stats": [ - 3818, + 4097, { "objects": [ - 3813, + 4092, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3819 + 4098 ] } ], "insert_player_season_stats_one": [ - 3791, + 4070, { "object": [ - 3813, + 4092, "player_season_stats_insert_input!" ], "on_conflict": [ - 3819 + 4098 ] } ], "insert_player_stats": [ - 3860, + 4139, { "objects": [ - 3857, + 4136, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3862 + 4141 ] } ], "insert_player_stats_one": [ - 3850, + 4129, { "object": [ - 3857, + 4136, "player_stats_insert_input!" ], "on_conflict": [ - 3862 + 4141 ] } ], "insert_player_steam_bot_friend": [ - 3892, + 4171, { "objects": [ - 3889, + 4168, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3893 + 4172 ] } ], "insert_player_steam_bot_friend_one": [ - 3878, + 4157, { "object": [ - 3889, + 4168, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3893 + 4172 ] } ], "insert_player_steam_match_auth": [ - 3920, + 4199, { "objects": [ - 3917, + 4196, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3921 + 4200 ] } ], "insert_player_steam_match_auth_one": [ - 3910, + 4189, { "object": [ - 3917, + 4196, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3921 + 4200 ] } ], "insert_player_unused_utility": [ - 3954, + 4233, { "objects": [ - 3949, + 4228, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3955 + 4234 ] } ], "insert_player_unused_utility_one": [ - 3937, + 4216, { "object": [ - 3949, + 4228, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3955 + 4234 ] } ], "insert_player_utility": [ - 3995, + 4274, { "objects": [ - 3990, + 4269, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3996 + 4275 ] } ], "insert_player_utility_one": [ - 3978, + 4257, { "object": [ - 3990, + 4269, "player_utility_insert_input!" ], "on_conflict": [ - 3996 + 4275 ] } ], "insert_players": [ - 4062, + 4341, { "objects": [ - 4059, + 4338, "[players_insert_input!]!" ], "on_conflict": [ - 4064 + 4343 ] } ], "insert_players_one": [ - 4052, + 4331, { "object": [ - 4059, + 4338, "players_insert_input!" ], "on_conflict": [ - 4064 + 4343 ] } ], "insert_plugin_versions": [ - 4090, + 4369, { "objects": [ - 4087, + 4366, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 4091 + 4370 ] } ], "insert_plugin_versions_one": [ - 4080, + 4359, { "object": [ - 4087, + 4366, "plugin_versions_insert_input!" ], "on_conflict": [ - 4091 + 4370 ] } ], "insert_push_subscriptions": [ - 4117, + 4396, { "objects": [ - 4114, + 4393, "[push_subscriptions_insert_input!]!" ], "on_conflict": [ - 4118 + 4397 ] } ], "insert_push_subscriptions_one": [ - 4107, + 4386, { "object": [ - 4114, + 4393, "push_subscriptions_insert_input!" ], "on_conflict": [ - 4118 + 4397 ] } ], "insert_seasons": [ - 4148, + 4427, { "objects": [ - 4145, + 4424, "[seasons_insert_input!]!" ], "on_conflict": [ - 4150 + 4429 ] } ], "insert_seasons_one": [ - 4138, + 4417, { "object": [ - 4145, + 4424, "seasons_insert_input!" ], "on_conflict": [ - 4150 + 4429 ] } ], "insert_server_regions": [ - 4175, + 4454, { "objects": [ - 4172, + 4451, "[server_regions_insert_input!]!" ], "on_conflict": [ - 4177 + 4456 ] } ], "insert_server_regions_one": [ - 4166, + 4445, { "object": [ - 4172, + 4451, "server_regions_insert_input!" ], "on_conflict": [ - 4177 + 4456 ] } ], "insert_servers": [ - 4212, + 4495, { "objects": [ - 4207, + 4490, "[servers_insert_input!]!" ], "on_conflict": [ - 4214 + 4497 ] } ], "insert_servers_one": [ - 4193, + 4472, { "object": [ - 4207, + 4490, "servers_insert_input!" ], "on_conflict": [ - 4214 + 4497 ] } ], "insert_settings": [ - 4247, + 4531, { "objects": [ - 4244, + 4528, "[settings_insert_input!]!" ], "on_conflict": [ - 4248 + 4532 ] } ], "insert_settings_one": [ - 4239, + 4523, { "object": [ - 4244, + 4528, "settings_insert_input!" ], "on_conflict": [ - 4248 + 4532 ] } ], "insert_steam_account_claims": [ - 4273, + 4557, { "objects": [ - 4268, + 4552, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 4274 + 4558 ] } ], "insert_steam_account_claims_one": [ - 4259, + 4543, { "object": [ - 4268, + 4552, "steam_account_claims_insert_input!" ], "on_conflict": [ - 4274 + 4558 ] } ], "insert_steam_accounts": [ - 4293, + 4577, { "objects": [ - 4290, + 4574, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 4295 + 4579 ] } ], "insert_steam_accounts_one": [ - 4283, + 4567, { "object": [ - 4290, + 4574, "steam_accounts_insert_input!" ], "on_conflict": [ - 4295 + 4579 ] } ], "insert_system_alerts": [ - 4321, + 4605, { "objects": [ - 4318, + 4602, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 4322 + 4606 ] } ], "insert_system_alerts_one": [ - 4311, + 4595, { "object": [ - 4318, + 4602, "system_alerts_insert_input!" ], "on_conflict": [ - 4322 + 4606 ] } ], "insert_team_invites": [ - 4355, + 4639, { "objects": [ - 4350, + 4634, "[team_invites_insert_input!]!" ], "on_conflict": [ - 4356 + 4640 ] } ], "insert_team_invites_one": [ - 4338, + 4622, { "object": [ - 4350, + 4634, "team_invites_insert_input!" ], "on_conflict": [ - 4356 + 4640 ] } ], "insert_team_roster": [ - 4398, + 4682, { "objects": [ - 4393, + 4677, "[team_roster_insert_input!]!" ], "on_conflict": [ - 4399 + 4683 ] } ], "insert_team_roster_one": [ - 4379, + 4663, { "object": [ - 4393, + 4677, "team_roster_insert_input!" ], "on_conflict": [ - 4399 + 4683 ] } ], "insert_team_scrim_alerts": [ - 4434, + 4718, { "objects": [ - 4431, + 4715, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 4435 + 4719 ] } ], "insert_team_scrim_alerts_one": [ - 4424, + 4708, { "object": [ - 4431, + 4715, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 4435 + 4719 ] } ], "insert_team_scrim_availability": [ - 4467, + 4751, { "objects": [ - 4462, + 4746, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 4468 + 4752 ] } ], "insert_team_scrim_availability_one": [ - 4451, + 4735, { "object": [ - 4462, + 4746, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 4468 + 4752 ] } ], "insert_team_scrim_request_proposals": [ - 4496, + 4780, { "objects": [ - 4491, + 4775, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 4497 + 4781 ] } ], "insert_team_scrim_request_proposals_one": [ - 4479, + 4763, { "object": [ - 4491, + 4775, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 4497 + 4781 ] } ], "insert_team_scrim_requests": [ - 4539, + 4823, { "objects": [ - 4534, + 4818, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 4541 + 4825 ] } ], "insert_team_scrim_requests_one": [ - 4520, + 4804, { "object": [ - 4534, + 4818, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 4541 + 4825 ] } ], "insert_team_scrim_settings": [ - 4576, + 4860, { "objects": [ - 4573, + 4857, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 4578 + 4862 ] } ], "insert_team_scrim_settings_one": [ - 4566, + 4850, { "object": [ - 4573, + 4857, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 4578 + 4862 ] } ], "insert_team_suggestions": [ - 4604, + 4888, { "objects": [ - 4601, + 4885, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 4605 + 4889 ] } ], "insert_team_suggestions_one": [ - 4594, + 4878, { "object": [ - 4601, + 4885, "team_suggestions_insert_input!" ], "on_conflict": [ - 4605 + 4889 ] } ], "insert_teams": [ - 4640, + 4924, { "objects": [ - 4635, + 4919, "[teams_insert_input!]!" ], "on_conflict": [ - 4642 + 4926 ] } ], "insert_teams_one": [ - 4621, + 4905, { "object": [ - 4635, + 4919, "teams_insert_input!" ], "on_conflict": [ - 4642 + 4926 ] } ], "insert_tournament_awards": [ - 4689, + 4973, { "objects": [ - 4684, + 4968, "[tournament_awards_insert_input!]!" ], "on_conflict": [ - 4691 + 4975 ] } ], "insert_tournament_awards_one": [ - 4672, + 4956, { "object": [ - 4684, + 4968, "tournament_awards_insert_input!" ], "on_conflict": [ - 4691 + 4975 ] } ], "insert_tournament_brackets": [ - 4733, + 5017, { "objects": [ - 4728, + 5012, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4735 + 5019 ] } ], "insert_tournament_brackets_one": [ - 4714, + 4998, { "object": [ - 4728, + 5012, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4735 + 5019 ] } ], "insert_tournament_categories": [ - 4774, + 5058, { "objects": [ - 4769, + 5053, "[tournament_categories_insert_input!]!" ], "on_conflict": [ - 4775 + 5059 ] } ], "insert_tournament_categories_one": [ - 4760, + 5044, { "object": [ - 4769, + 5053, "tournament_categories_insert_input!" ], "on_conflict": [ - 4775 + 5059 ] } ], "insert_tournament_organizer_teams": [ - 4798, + 5082, { "objects": [ - 4793, + 5077, "[tournament_organizer_teams_insert_input!]!" ], "on_conflict": [ - 4799 + 5083 ] } ], "insert_tournament_organizer_teams_one": [ - 4784, + 5068, { "object": [ - 4793, + 5077, "tournament_organizer_teams_insert_input!" ], "on_conflict": [ - 4799 + 5083 ] } ], "insert_tournament_organizers": [ - 4825, + 5109, { "objects": [ - 4820, + 5104, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4826 + 5110 ] } ], "insert_tournament_organizers_one": [ - 4808, + 5092, { "object": [ - 4820, + 5104, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4826 + 5110 ] } ], "insert_tournament_prizes": [ - 4866, + 5150, { "objects": [ - 4861, + 5145, "[tournament_prizes_insert_input!]!" ], "on_conflict": [ - 4867 + 5151 ] } ], "insert_tournament_prizes_one": [ - 4849, + 5133, { "object": [ - 4861, + 5145, "tournament_prizes_insert_input!" ], "on_conflict": [ - 4867 + 5151 ] } ], "insert_tournament_stage_windows": [ - 4907, + 5191, { "objects": [ - 4902, + 5186, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4908 + 5192 ] } ], "insert_tournament_stage_windows_one": [ - 4890, + 5174, { "object": [ - 4902, + 5186, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4908 + 5192 ] } ], "insert_tournament_stages": [ - 4954, + 5238, { "objects": [ - 4949, + 5233, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4956 + 5240 ] } ], "insert_tournament_stages_one": [ - 4931, + 5215, { "object": [ - 4949, + 5233, "tournament_stages_insert_input!" ], "on_conflict": [ - 4956 + 5240 ] } ], "insert_tournament_team_invites": [ - 4999, + 5283, { "objects": [ - 4994, + 5278, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 5000 + 5284 ] } ], "insert_tournament_team_invites_one": [ - 4982, + 5266, { "object": [ - 4994, + 5278, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 5000 + 5284 ] } ], "insert_tournament_team_roster": [ - 5040, + 5324, { "objects": [ - 5035, + 5319, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 5041 + 5325 ] } ], "insert_tournament_team_roster_one": [ - 5023, + 5307, { "object": [ - 5035, + 5319, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 5041 + 5325 ] } ], "insert_tournament_teams": [ - 5081, + 5365, { "objects": [ - 5076, + 5360, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 5083 + 5367 ] } ], "insert_tournament_teams_one": [ - 5064, + 5348, { "object": [ - 5076, + 5360, "tournament_teams_insert_input!" ], "on_conflict": [ - 5083 + 5367 ] } ], "insert_tournaments": [ - 5135, + 5419, { "objects": [ - 5130, + 5414, "[tournaments_insert_input!]!" ], "on_conflict": [ - 5137 + 5421 ] } ], "insert_tournaments_one": [ - 5106, + 5390, { "object": [ - 5130, + 5414, "tournaments_insert_input!" ], "on_conflict": [ - 5137 + 5421 ] } ], "insert_v_match_captains": [ - 5335, + 5619, { "objects": [ - 5332, + 5616, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 5326, + 5610, { "object": [ - 5332, + 5616, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 5446, + 5730, { "objects": [ - 5443, + 5727, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 5437, + 5721, { "object": [ - 5443, + 5727, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 5668, + 5952, { "objects": [ - 5663, + 5947, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 5652, + 5936, { "object": [ - 5663, + 5947, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5845, + 6129, { "objects": [ - 5840, + 6124, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5830, + 6114, { "object": [ - 5840, + 6124, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5939, + 6223, { "objects": [ - 5934, + 6218, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5941 + 6225 ] } ], "insert_v_team_stage_results_one": [ - 5912, + 6196, { "object": [ - 5934, + 6218, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5941 + 6225 + ] + } + ], + "installGamePlugin": [ + 87, + { + "slug": [ + 84, + "String!" + ], + "version": [ + 84 ] } ], "joinDraftGame": [ - 83, + 87, { "draftGameId": [ - 5170, + 5454, "uuid!" ], "inviteCode": [ - 80 + 84 ] } ], "joinDraftGameAsParty": [ - 83, + 87, { "draftGameId": [ - 5170, + 5454, "uuid!" ], "inviteCode": [ - 80 + 84 ] } ], "kickServerPlayer": [ - 42, + 43, { "reason": [ - 80 + 84 ], "serverId": [ - 80, + 84, "String!" ], "steam_id": [ - 80, + 84, "String!" ] } ], "league_award_forfeit": [ - 2882, + 3157, { "args": [ - 1956, + 2213, "league_award_forfeit_args!" ], "distinct_on": [ - 2904, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2902, + 3179, "[matches_order_by!]" ], "where": [ - 2891 + 3168 ] } ], "leaveLineup": [ - 83, + 87, { "match_id": [ - 80, + 84, "String!" ] } ], "linkSteamMatchHistory": [ - 72, + 76, { "auth_code": [ - 80, + 84, "String!" ], "share_code": [ - 80, + 84, "String!" ] } ], "loadFixtures": [ - 83 + 87 ], "logout": [ - 83 + 87 ], "moveServerItem": [ - 83, + 87, { "dest_path": [ - 80, + 84, "String!" ], "node_id": [ - 80, + 84, "String!" ], "server_id": [ - 80 + 84 ], "source_path": [ - 80, + 84, "String!" ] } ], "orphanedDemosScanResult": [ - 54 + 55 ], "pauseClipRenderBatch": [ - 83, + 87, { "match_map_id": [ - 5170, + 5454, "uuid!" ] } ], "pollSteamMatchHistory": [ - 73 + 77 ], "previewDraftGame": [ - 24, + 25, { "draftGameId": [ - 5170, + 5454, "uuid!" ], "inviteCode": [ - 80 + 84 + ] + } + ], + "previewGameMode": [ + 59, + { + "gameModeId": [ + 5454, + "uuid!" ] } ], "queueClipFromPreset": [ - 15, + 16, { "fps": [ - 40 + 41 ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "preset": [ - 80, + 84, "String!" ], "resolution": [ - 80 + 84 ], "target_name": [ - 80 + 84 ], "target_steam_id": [ - 80, + 84, "String!" ], "title": [ - 80 + 84 ] } ], "randomizeTeams": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], "rebootMatchServer": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], "recalculate_tournament_awards": [ - 195, + 200, { "args": [ - 4134, + 4413, "recalculate_tournament_awards_args!" ], "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "recomputePlayerElo": [ - 60 + 63 ], "recomputePlayerEloStatus": [ - 61 + 64 + ], + "reconcileNodePlugins": [ + 65, + { + "nodeId": [ + 84, + "String!" + ] + } ], "reconnectLive": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], "refreshAllPlayers": [ - 62 + 66 ], "refreshAllPlayersStatus": [ - 63 + 67 ], "refreshFaceitRank": [ - 83, + 87, { "steam_id": [ - 80, + 84, "String!" ] } ], "refreshLiveHud": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], "registerName": [ - 83, + 87, { "name": [ - 80, + 84, "String!" ] } ], "removeFixtures": [ - 83 + 87 ], "removeSteamPresenceBotAccount": [ - 83, + 87, { "account_id": [ - 80, + 84, "String!" ] } ], "remove_league_team_from_season": [ - 2248, + 2505, { "args": [ - 4135, + 4414, "remove_league_team_from_season_args!" ], "distinct_on": [ - 2270, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2268, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2514 ] } ], "renameServerItem": [ - 83, + 87, { "new_path": [ - 80, + 84, "String!" ], "node_id": [ - 80, + 84, "String!" ], "old_path": [ - 80, + 84, "String!" ], "server_id": [ - 80 + 84 ] } ], "reorder_league_divisions": [ - 1957, + 2214, { "args": [ - 4136, + 4415, "reorder_league_divisions_args!" ], "distinct_on": [ - 1972, + 2229, "[league_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1970, + 2227, "[league_divisions_order_by!]" ], "where": [ - 1961 + 2218 ] } ], "reparseAllDemos": [ - 64 + 68 ], "reparseAllDemosStatus": [ - 65 + 69 ], "reparseDemo": [ - 83, + 87, { "match_map_id": [ - 5170, + 5454, "uuid!" ] } ], "reparseMatchDemos": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], "requestNameChange": [ - 83, + 87, { "name": [ - 80, + 84, "String!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "requeueClipRender": [ - 83, + 87, { "job_id": [ - 5170, + 5454, "uuid!" ] } ], "respondDraftInvite": [ - 83, + 87, { "accept": [ - 5, + 6, "Boolean!" ], "draftGameId": [ - 5170, + 5454, "uuid!" ] } ], "respondToScrimRequest": [ - 83, + 87, { "accept": [ - 5, + 6, "Boolean!" ], "request_id": [ - 5170, + 5454, "uuid!" ] } ], "restartService": [ - 83, + 87, { "service": [ - 80, + 84, "String!" ] } ], "restart_league_season": [ - 2133, + 2390, { "args": [ - 4137, + 4416, "restart_league_season_args!" ], "distinct_on": [ - 2153, + 2410, "[league_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2150, + 2407, "[league_seasons_order_by!]" ], "where": [ - 2138 + 2395 ] } ], "resumeClipRenderBatch": [ - 83, + 87, { "match_map_id": [ - 5170, + 5454, "uuid!" ] } ], "retryClipRenderBatch": [ - 83, + 87, { "match_map_id": [ - 5170, + 5454, "uuid!" ], "only_failed": [ - 5 + 6 ] } ], "retryPendingMatchImport": [ - 55, + 56, { "valve_match_id": [ - 80, + 84, "String!" ] } ], "revokeAward": [ - 83, + 87, { "id": [ - 5170, + 5454, "uuid!" ] } ], "sanctionServerPlayer": [ - 66, + 70, { "duration": [ - 31 + 32 ], "reason": [ - 80 + 84 ], "serverId": [ - 80 + 84 ], "steam_id": [ - 80, + 84, "String!" ], "type": [ - 80, + 84, "String!" ] } ], "saveAward": [ - 3, + 4, { "allow_multiple": [ - 5 + 6 ], "description": [ - 80 + 84 ], "event_id": [ - 5170 + 5454 ], "id": [ - 5170 + 5454 ], "league_season_id": [ - 5170 + 5454 ], "name": [ - 80, + 84, "String!" ], "season_id": [ - 5170 + 5454 ], "silhouette": [ - 40 + 41 ], "tier": [ - 80, + 84, "String!" ], "tournament_id": [ - 5170 + 5454 ] } ], "saveNewsPost": [ - 50, + 51, { "content_markdown": [ - 80, + 84, "String!" ], "cover_image_url": [ - 80 + 84 ], "id": [ - 5170 + 5454 ], "teaser": [ - 80 + 84 ], "title": [ - 80, + 84, "String!" ] } ], "scanOrphanedDemos": [ - 67 + 71 ], "scanSteamBans": [ - 83 + 87 ], "scheduleMatch": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670 + 4954 ] } ], "sendScrimRequest": [ - 83, + 87, { "best_of": [ - 40 + 41 ], "from_team_id": [ - 5170, + 5454, "uuid!" ], "proposed_scheduled_at": [ - 4670, + 4954, "timestamptz!" ], "region": [ - 80 + 84 ], "to_team_id": [ - 5170, + 5454, "uuid!" ] } ], "setGameNodeSchedulingState": [ - 83, + 87, { "enabled": [ - 5, + 6, "Boolean!" ], "game_server_node_id": [ - 80, + 84, "String!" ] } ], "setHudMode": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ], "mode": [ - 80, + 84, "String!" ] } ], "setMapWinner": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "winning_lineup_id": [ - 5170, + 5454, "uuid!" ] } ], "setMatchWinner": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ], "winning_lineup_id": [ - 5170, + 5454, "uuid!" ] } ], "setNewsPostStatus": [ - 50, + 51, { "id": [ - 5170, + 5454, "uuid!" ], "status": [ - 80, + 84, "String!" ] } ], "setTournamentAward": [ - 102, + 107, { "award_id": [ - 5170 + 5454 ], "custom_name": [ - 80 + 84 ], "placement": [ - 40, + 41, "Int!" ], "silhouette": [ - 40 + 41 ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "setupGameServer": [ - 71 + 75 ], "skipShaders": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], "specAutodirector": [ - 83, + 87, { "enabled": [ - 5, + 6, "Boolean!" ], "match_id": [ - 5170, + 5454, "uuid!" ] } ], "specClick": [ - 83, + 87, { "button": [ - 80, + 84, "String!" ], "match_id": [ - 5170, + 5454, "uuid!" ] } ], "specHud": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ], "visible": [ - 5, + 6, "Boolean!" ] } ], "specHudSides": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], "specJump": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], "specPlayer": [ - 83, + 87, { "accountid": [ - 40, + 41, "Int!" ], "match_id": [ - 5170, + 5454, "uuid!" ] } ], "specScoreboard": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ], "show": [ - 5, + 6, "Boolean!" ] } ], "specSlot": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ], "slot": [ - 40, + 41, "Int!" ] } ], "specXray": [ - 83, + 87, { "enabled": [ - 5, + 6, "Boolean!" ], "match_id": [ - 5170, + 5454, "uuid!" ] } ], "startLive": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ], "mode": [ - 80, + 84, "String!" ] } ], "startMatch": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ], "server_id": [ - 5170 + 5454 ] } ], "stopGpuSession": [ - 83, + 87, { "game_server_node_id": [ - 5170, + 5454, "uuid!" ] } ], "stopLive": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], "stopWatchDemo": [ - 83, + 87, { "match_map_id": [ - 5170, + 5454, "uuid!" ] } ], "submitSteamPresenceSteamGuard": [ - 83, + 87, { "account_id": [ - 80, + 84, "String!" ], "code": [ - 80, + 84, "String!" ] } ], "swapLineups": [ - 83, + 87, { "match_id": [ - 5170, + 5454, "uuid!" ] } ], "switchLineup": [ - 83, + 87, { "match_id": [ - 80, + 84, "String!" ] } ], "switchLiveMatch": [ - 83, + 87, { "from_match_id": [ - 5170, + 5454, "uuid!" ], "mode": [ - 80, + 84, "String!" ], "to_match_id": [ - 5170, + 5454, "uuid!" ] } ], + "syncPluginRegistry": [ + 88 + ], "syncSteamFriends": [ - 83 + 87 ], "testFaceitIntegration": [ - 26 + 27 ], "testUpload": [ - 99 + 104 + ], + "uninstallGamePlugin": [ + 87, + { + "force": [ + 6 + ], + "slug": [ + 84, + "String!" + ] + } ], "unlinkDiscord": [ - 83 + 87 ], "unlinkSteamMatchHistory": [ - 83 + 87 ], "unsanctionServerPlayer": [ - 66, + 70, { "serverId": [ - 80 + 84 ], "steam_id": [ - 80, + 84, "String!" ], "type": [ - 80, + 84, "String!" ] } ], "updateClip": [ - 83, + 87, { "clip_id": [ - 5170, + 5454, "uuid!" ], "target_steam_id": [ - 80 + 84 ], "title": [ - 80 + 84 ], "visibility": [ - 80 + 84 ] } ], "updateCs": [ - 83, + 87, { "game": [ - 80 + 84 ], "game_server_node_id": [ - 5170 + 5454 ] } ], "updateDraftGame": [ - 83, + 87, { "draftGameId": [ - 5170, + 5454, "uuid!" ], "settings": [ - 1930, + 2187, "jsonb!" ] } ], "updateServices": [ - 83 + 87 ], "update__map_pool": [ - 115, + 120, { "_set": [ - 120 + 125 ], "where": [ - 110, + 115, "_map_pool_bool_exp!" ] } ], "update__map_pool_by_pk": [ - 107, + 112, { "_set": [ - 120 + 125 ], "pk_columns": [ - 118, + 123, "_map_pool_pk_columns_input!" ] } ], "update__map_pool_many": [ - 115, + 120, { "updates": [ - 124, + 129, "[_map_pool_updates!]!" ] } ], "update_abandoned_matches": [ - 143, + 148, { "_inc": [ - 137 + 142 ], "_set": [ - 148 + 153 ], "where": [ - 135, + 140, "abandoned_matches_bool_exp!" ] } ], "update_abandoned_matches_by_pk": [ - 126, + 131, { "_inc": [ - 137 + 142 ], "_set": [ - 148 + 153 ], "pk_columns": [ - 146, + 151, "abandoned_matches_pk_columns_input!" ] } ], "update_abandoned_matches_many": [ - 143, + 148, { "updates": [ - 160, + 165, "[abandoned_matches_updates!]!" ] } ], "update_api_keys": [ - 177, + 182, { "_inc": [ - 173 + 178 ], "_set": [ - 182 + 187 ], "where": [ - 171, + 176, "api_keys_bool_exp!" ] } ], "update_api_keys_by_pk": [ - 167, + 172, { "_inc": [ - 173 + 178 ], "_set": [ - 182 + 187 ], "pk_columns": [ - 180, + 185, "api_keys_pk_columns_input!" ] } ], "update_api_keys_many": [ - 177, + 182, { "updates": [ - 190, + 195, "[api_keys_updates!]!" ] } ], "update_award_recipients": [ - 212, + 217, { "_inc": [ - 206 + 211 ], "_set": [ - 217 + 222 ], "where": [ - 204, + 209, "award_recipients_bool_exp!" ] } ], "update_award_recipients_by_pk": [ - 195, + 200, { "_inc": [ - 206 + 211 ], "_set": [ - 217 + 222 ], "pk_columns": [ - 215, + 220, "award_recipients_pk_columns_input!" ] } ], "update_award_recipients_many": [ - 212, + 217, { "updates": [ - 229, + 234, "[award_recipients_updates!]!" ] } ], "update_awards": [ - 246, + 251, { "_inc": [ - 242 + 247 ], "_set": [ - 252 + 257 ], "where": [ - 240, + 245, "awards_bool_exp!" ] } ], "update_awards_by_pk": [ - 236, + 241, { "_inc": [ - 242 + 247 ], "_set": [ - 252 + 257 ], "pk_columns": [ - 250, + 255, "awards_pk_columns_input!" ] } ], "update_awards_many": [ - 246, + 251, { "updates": [ - 260, + 265, "[awards_updates!]!" ] } ], "update_chat_read_state": [ - 279, + 284, { "_inc": [ - 275 + 280 ], "_set": [ - 284 + 289 ], "where": [ - 273, + 278, "chat_read_state_bool_exp!" ] } ], "update_chat_read_state_by_pk": [ - 269, + 274, { "_inc": [ - 275 + 280 ], "_set": [ - 284 + 289 ], "pk_columns": [ - 282, + 287, "chat_read_state_pk_columns_input!" ] } ], "update_chat_read_state_many": [ - 279, + 284, { "updates": [ - 292, + 297, "[chat_read_state_updates!]!" ] } ], "update_clip_render_jobs": [ - 319, + 324, { "_append": [ - 304 + 309 ], "_delete_at_path": [ - 310 + 315 ], "_delete_elem": [ - 311 + 316 ], "_delete_key": [ - 312 + 317 ], "_inc": [ - 313 + 318 ], "_prepend": [ - 323 + 328 ], "_set": [ - 327 + 332 ], "where": [ - 308, + 313, "clip_render_jobs_bool_exp!" ] } ], "update_clip_render_jobs_by_pk": [ - 296, + 301, { "_append": [ - 304 + 309 ], "_delete_at_path": [ - 310 + 315 ], "_delete_elem": [ - 311 + 316 ], "_delete_key": [ - 312 + 317 ], "_inc": [ - 313 + 318 ], "_prepend": [ - 323 + 328 ], "_set": [ - 327 + 332 ], "pk_columns": [ - 322, + 327, "clip_render_jobs_pk_columns_input!" ] } ], "update_clip_render_jobs_many": [ - 319, + 324, { "updates": [ - 339, + 344, "[clip_render_jobs_updates!]!" ] } ], "update_custom_pages": [ - 362, + 367, { "_append": [ - 351 + 356 ], "_delete_at_path": [ - 355 + 360 ], "_delete_elem": [ - 356 + 361 ], "_delete_key": [ - 357 + 362 ], "_inc": [ - 358 + 363 ], "_prepend": [ - 366 + 371 ], "_set": [ - 368 + 373 ], "where": [ - 353, + 358, "custom_pages_bool_exp!" ] } ], "update_custom_pages_by_pk": [ - 348, + 353, { "_append": [ - 351 + 356 ], "_delete_at_path": [ - 355 + 360 ], "_delete_elem": [ - 356 + 361 ], "_delete_key": [ - 357 + 362 ], "_inc": [ - 358 + 363 ], "_prepend": [ - 366 + 371 ], "_set": [ - 368 + 373 ], "pk_columns": [ - 365, + 370, "custom_pages_pk_columns_input!" ] } ], "update_custom_pages_many": [ - 362, + 367, { "updates": [ - 376, + 381, "[custom_pages_updates!]!" ] } ], "update_db_backups": [ - 390, + 395, { "_inc": [ - 386 + 391 ], "_set": [ - 395 + 400 ], "where": [ - 384, + 389, "db_backups_bool_exp!" ] } ], "update_db_backups_by_pk": [ - 380, + 385, { "_inc": [ - 386 + 391 ], "_set": [ - 395 + 400 ], "pk_columns": [ - 393, + 398, "db_backups_pk_columns_input!" ] } ], "update_db_backups_many": [ - 390, + 395, { "updates": [ - 403, + 408, "[db_backups_updates!]!" ] } ], "update_direct_conversations": [ - 417, + 422, { "_inc": [ - 413 + 418 ], "_set": [ - 422 + 427 ], "where": [ - 411, + 416, "direct_conversations_bool_exp!" ] } ], "update_direct_conversations_by_pk": [ - 407, + 412, { "_inc": [ - 413 + 418 ], "_set": [ - 422 + 427 ], "pk_columns": [ - 420, + 425, "direct_conversations_pk_columns_input!" ] } ], "update_direct_conversations_many": [ - 417, + 422, { "updates": [ - 430, + 435, "[direct_conversations_updates!]!" ] } ], "update_direct_messages": [ - 444, + 449, { "_inc": [ - 440 + 445 ], "_set": [ - 449 + 454 ], "where": [ - 438, + 443, "direct_messages_bool_exp!" ] } ], "update_direct_messages_by_pk": [ - 434, + 439, { "_inc": [ - 440 + 445 ], "_set": [ - 449 + 454 ], "pk_columns": [ - 447, + 452, "direct_messages_pk_columns_input!" ] } ], "update_direct_messages_many": [ - 444, + 449, { "updates": [ - 457, + 462, "[direct_messages_updates!]!" ] } ], "update_draft_game_picks": [ - 480, + 485, { "_inc": [ - 474 + 479 ], "_set": [ - 487 + 492 ], "where": [ - 472, + 477, "draft_game_picks_bool_exp!" ] } ], "update_draft_game_picks_by_pk": [ - 461, + 466, { "_inc": [ - 474 + 479 ], "_set": [ - 487 + 492 ], "pk_columns": [ - 483, + 488, "draft_game_picks_pk_columns_input!" ] } ], "update_draft_game_picks_many": [ - 480, + 485, { "updates": [ - 499, + 504, "[draft_game_picks_updates!]!" ] } ], "update_draft_game_players": [ - 525, + 530, { "_inc": [ - 519 + 524 ], "_set": [ - 532 + 537 ], "where": [ - 517, + 522, "draft_game_players_bool_exp!" ] } ], "update_draft_game_players_by_pk": [ - 506, + 511, { "_inc": [ - 519 + 524 ], "_set": [ - 532 + 537 ], "pk_columns": [ - 528, + 533, "draft_game_players_pk_columns_input!" ] } ], "update_draft_game_players_many": [ - 525, + 530, { "updates": [ - 544, + 549, "[draft_game_players_updates!]!" ] } ], "update_draft_games": [ - 570, + 575, { "_inc": [ - 564 + 569 ], "_set": [ - 578 + 583 ], "where": [ - 562, + 567, "draft_games_bool_exp!" ] } ], "update_draft_games_by_pk": [ - 551, + 556, { "_inc": [ - 564 + 569 ], "_set": [ - 578 + 583 ], "pk_columns": [ - 574, + 579, "draft_games_pk_columns_input!" ] } ], "update_draft_games_many": [ - 570, + 575, { "updates": [ - 590, + 595, "[draft_games_updates!]!" ] } ], "update_e_award_sources": [ - 607, + 612, { "_set": [ - 612 + 617 ], "where": [ - 600, + 605, "e_award_sources_bool_exp!" ] } ], "update_e_award_sources_by_pk": [ - 597, + 602, { "_set": [ - 612 + 617 ], "pk_columns": [ - 610, + 615, "e_award_sources_pk_columns_input!" ] } ], "update_e_award_sources_many": [ - 607, + 612, { "updates": [ - 616, + 621, "[e_award_sources_updates!]!" ] } ], "update_e_award_tiers": [ - 627, + 632, { "_set": [ - 632 + 637 ], "where": [ - 620, + 625, "e_award_tiers_bool_exp!" ] } ], "update_e_award_tiers_by_pk": [ - 617, + 622, { "_set": [ - 632 + 637 ], "pk_columns": [ - 630, + 635, "e_award_tiers_pk_columns_input!" ] } ], "update_e_award_tiers_many": [ - 627, + 632, { "updates": [ - 636, + 641, "[e_award_tiers_updates!]!" ] } ], "update_e_check_in_settings": [ - 647, + 652, { "_set": [ - 652 + 657 ], "where": [ - 640, + 645, "e_check_in_settings_bool_exp!" ] } ], "update_e_check_in_settings_by_pk": [ - 637, + 642, { "_set": [ - 652 + 657 ], "pk_columns": [ - 650, + 655, "e_check_in_settings_pk_columns_input!" ] } ], "update_e_check_in_settings_many": [ - 647, + 652, { "updates": [ - 656, + 661, "[e_check_in_settings_updates!]!" ] } ], "update_e_draft_game_captain_selection": [ - 667, + 672, { "_set": [ - 673 + 678 ], "where": [ - 660, + 665, "e_draft_game_captain_selection_bool_exp!" ] } ], "update_e_draft_game_captain_selection_by_pk": [ - 657, + 662, { "_set": [ - 673 + 678 ], "pk_columns": [ - 671, + 676, "e_draft_game_captain_selection_pk_columns_input!" ] } ], "update_e_draft_game_captain_selection_many": [ - 667, + 672, { "updates": [ - 677, + 682, "[e_draft_game_captain_selection_updates!]!" ] } ], "update_e_draft_game_draft_order": [ - 688, + 693, { "_set": [ - 694 + 699 ], "where": [ - 681, + 686, "e_draft_game_draft_order_bool_exp!" ] } ], "update_e_draft_game_draft_order_by_pk": [ - 678, + 683, { "_set": [ - 694 + 699 ], "pk_columns": [ - 692, + 697, "e_draft_game_draft_order_pk_columns_input!" ] } ], "update_e_draft_game_draft_order_many": [ - 688, + 693, { "updates": [ - 698, + 703, "[e_draft_game_draft_order_updates!]!" ] } ], "update_e_draft_game_mode": [ - 709, + 714, { "_set": [ - 715 + 720 ], "where": [ - 702, + 707, "e_draft_game_mode_bool_exp!" ] } ], "update_e_draft_game_mode_by_pk": [ - 699, + 704, { "_set": [ - 715 + 720 ], "pk_columns": [ - 713, + 718, "e_draft_game_mode_pk_columns_input!" ] } ], "update_e_draft_game_mode_many": [ - 709, + 714, { "updates": [ - 719, + 724, "[e_draft_game_mode_updates!]!" ] } ], "update_e_draft_game_player_status": [ - 730, + 735, { "_set": [ - 736 + 741 ], "where": [ - 723, + 728, "e_draft_game_player_status_bool_exp!" ] } ], "update_e_draft_game_player_status_by_pk": [ - 720, + 725, { "_set": [ - 736 + 741 ], "pk_columns": [ - 734, + 739, "e_draft_game_player_status_pk_columns_input!" ] } ], "update_e_draft_game_player_status_many": [ - 730, + 735, { "updates": [ - 740, + 745, "[e_draft_game_player_status_updates!]!" ] } ], "update_e_draft_game_status": [ - 751, + 756, { "_set": [ - 757 + 762 ], "where": [ - 744, + 749, "e_draft_game_status_bool_exp!" ] } ], "update_e_draft_game_status_by_pk": [ - 741, + 746, { "_set": [ - 757 + 762 ], "pk_columns": [ - 755, + 760, "e_draft_game_status_pk_columns_input!" ] } ], "update_e_draft_game_status_many": [ - 751, + 756, { "updates": [ - 761, + 766, "[e_draft_game_status_updates!]!" ] } ], "update_e_event_media_access": [ - 772, + 777, { "_set": [ - 777 + 782 ], "where": [ - 765, + 770, "e_event_media_access_bool_exp!" ] } ], "update_e_event_media_access_by_pk": [ - 762, + 767, { "_set": [ - 777 + 782 ], "pk_columns": [ - 775, + 780, "e_event_media_access_pk_columns_input!" ] } ], "update_e_event_media_access_many": [ - 772, + 777, { "updates": [ - 781, + 786, "[e_event_media_access_updates!]!" ] } ], "update_e_event_visibility": [ - 792, + 797, { "_set": [ - 797 + 802 ], "where": [ - 785, + 790, "e_event_visibility_bool_exp!" ] } ], "update_e_event_visibility_by_pk": [ - 782, + 787, { "_set": [ - 797 + 802 ], "pk_columns": [ - 795, + 800, "e_event_visibility_pk_columns_input!" ] } ], "update_e_event_visibility_many": [ - 792, + 797, { "updates": [ - 801, + 806, "[e_event_visibility_updates!]!" ] } ], "update_e_friend_status": [ - 812, + 817, { "_set": [ - 818 + 823 ], "where": [ - 805, + 810, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 802, + 807, { "_set": [ - 818 + 823 ], "pk_columns": [ - 816, + 821, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 812, + 817, { "updates": [ - 822, + 827, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 833, + 838, { "_set": [ - 838 + 843 ], "where": [ - 826, + 831, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 823, + 828, { "_set": [ - 838 + 843 ], "pk_columns": [ - 836, + 841, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 833, + 838, { "updates": [ - 842, + 847, "[e_game_cfg_types_updates!]!" ] } ], + "update_e_game_plugin_channels": [ + 858, + { + "_set": [ + 863 + ], + "where": [ + 851, + "e_game_plugin_channels_bool_exp!" + ] + } + ], + "update_e_game_plugin_channels_by_pk": [ + 848, + { + "_set": [ + 863 + ], + "pk_columns": [ + 861, + "e_game_plugin_channels_pk_columns_input!" + ] + } + ], + "update_e_game_plugin_channels_many": [ + 858, + { + "updates": [ + 867, + "[e_game_plugin_channels_updates!]!" + ] + } + ], + "update_e_game_plugin_install_statuses": [ + 878, + { + "_set": [ + 883 + ], + "where": [ + 871, + "e_game_plugin_install_statuses_bool_exp!" + ] + } + ], + "update_e_game_plugin_install_statuses_by_pk": [ + 868, + { + "_set": [ + 883 + ], + "pk_columns": [ + 881, + "e_game_plugin_install_statuses_pk_columns_input!" + ] + } + ], + "update_e_game_plugin_install_statuses_many": [ + 878, + { + "updates": [ + 887, + "[e_game_plugin_install_statuses_updates!]!" + ] + } + ], + "update_e_game_plugin_kinds": [ + 898, + { + "_set": [ + 903 + ], + "where": [ + 891, + "e_game_plugin_kinds_bool_exp!" + ] + } + ], + "update_e_game_plugin_kinds_by_pk": [ + 888, + { + "_set": [ + 903 + ], + "pk_columns": [ + 901, + "e_game_plugin_kinds_pk_columns_input!" + ] + } + ], + "update_e_game_plugin_kinds_many": [ + 898, + { + "updates": [ + 907, + "[e_game_plugin_kinds_updates!]!" + ] + } + ], "update_e_game_server_node_statuses": [ - 853, + 918, { "_set": [ - 859 + 924 ], "where": [ - 846, + 911, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 843, + 908, { "_set": [ - 859 + 924 ], "pk_columns": [ - 857, + 922, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 853, + 918, { "updates": [ - 863, + 928, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_league_movement_types": [ - 874, + 939, { "_set": [ - 880 + 945 ], "where": [ - 867, + 932, "e_league_movement_types_bool_exp!" ] } ], "update_e_league_movement_types_by_pk": [ - 864, + 929, { "_set": [ - 880 + 945 ], "pk_columns": [ - 878, + 943, "e_league_movement_types_pk_columns_input!" ] } ], "update_e_league_movement_types_many": [ - 874, + 939, { "updates": [ - 884, + 949, "[e_league_movement_types_updates!]!" ] } ], "update_e_league_proposal_statuses": [ - 895, + 960, { "_set": [ - 901 + 966 ], "where": [ - 888, + 953, "e_league_proposal_statuses_bool_exp!" ] } ], "update_e_league_proposal_statuses_by_pk": [ - 885, + 950, { "_set": [ - 901 + 966 ], "pk_columns": [ - 899, + 964, "e_league_proposal_statuses_pk_columns_input!" ] } ], "update_e_league_proposal_statuses_many": [ - 895, + 960, { "updates": [ - 905, + 970, "[e_league_proposal_statuses_updates!]!" ] } ], "update_e_league_registration_statuses": [ - 916, + 981, { "_set": [ - 922 + 987 ], "where": [ - 909, + 974, "e_league_registration_statuses_bool_exp!" ] } ], "update_e_league_registration_statuses_by_pk": [ - 906, + 971, { "_set": [ - 922 + 987 ], "pk_columns": [ - 920, + 985, "e_league_registration_statuses_pk_columns_input!" ] } ], "update_e_league_registration_statuses_many": [ - 916, + 981, { "updates": [ - 926, + 991, "[e_league_registration_statuses_updates!]!" ] } ], "update_e_league_season_statuses": [ - 937, + 1002, { "_set": [ - 943 + 1008 ], "where": [ - 930, + 995, "e_league_season_statuses_bool_exp!" ] } ], "update_e_league_season_statuses_by_pk": [ - 927, + 992, { "_set": [ - 943 + 1008 ], "pk_columns": [ - 941, + 1006, "e_league_season_statuses_pk_columns_input!" ] } ], "update_e_league_season_statuses_many": [ - 937, + 1002, { "updates": [ - 947, + 1012, "[e_league_season_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 958, + 1023, { "_set": [ - 964 + 1029 ], "where": [ - 951, + 1016, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 948, + 1013, { "_set": [ - 964 + 1029 ], "pk_columns": [ - 962, + 1027, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 958, + 1023, { "updates": [ - 968, + 1033, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 979, + 1044, { "_set": [ - 984 + 1049 ], "where": [ - 972, + 1037, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 969, + 1034, { "_set": [ - 984 + 1049 ], "pk_columns": [ - 982, + 1047, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 979, + 1044, { "updates": [ - 988, + 1053, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 999, + 1064, { "_set": [ - 1005 + 1070 ], "where": [ - 992, + 1057, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 989, + 1054, { "_set": [ - 1005 + 1070 ], "pk_columns": [ - 1003, + 1068, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 999, + 1064, { "updates": [ - 1009, + 1074, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 1020, + 1085, { "_set": [ - 1025 + 1090 ], "where": [ - 1013, + 1078, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 1010, + 1075, { "_set": [ - 1025 + 1090 ], "pk_columns": [ - 1023, + 1088, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 1020, + 1085, { "updates": [ - 1029, + 1094, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 1040, + 1105, { "_set": [ - 1046 + 1111 ], "where": [ - 1033, + 1098, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 1030, + 1095, { "_set": [ - 1046 + 1111 ], "pk_columns": [ - 1044, + 1109, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 1040, + 1105, { "updates": [ - 1050, + 1115, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 1061, + 1126, { "_set": [ - 1066 + 1131 ], "where": [ - 1054, + 1119, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 1051, + 1116, { "_set": [ - 1066 + 1131 ], "pk_columns": [ - 1064, + 1129, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 1061, + 1126, { "updates": [ - 1070, + 1135, "[e_match_mode_updates!]!" ] } ], "update_e_match_party_sources": [ - 1081, + 1146, { "_set": [ - 1086 + 1151 ], "where": [ - 1074, + 1139, "e_match_party_sources_bool_exp!" ] } ], "update_e_match_party_sources_by_pk": [ - 1071, + 1136, { "_set": [ - 1086 + 1151 ], "pk_columns": [ - 1084, + 1149, "e_match_party_sources_pk_columns_input!" ] } ], "update_e_match_party_sources_many": [ - 1081, + 1146, { "updates": [ - 1090, + 1155, "[e_match_party_sources_updates!]!" ] } ], "update_e_match_status": [ - 1101, + 1166, { "_set": [ - 1107 + 1172 ], "where": [ - 1094, + 1159, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 1091, + 1156, { "_set": [ - 1107 + 1172 ], "pk_columns": [ - 1105, + 1170, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 1101, + 1166, { "updates": [ - 1111, + 1176, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 1122, + 1187, { "_set": [ - 1128 + 1193 ], "where": [ - 1115, + 1180, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 1112, + 1177, { "_set": [ - 1128 + 1193 ], "pk_columns": [ - 1126, + 1191, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 1122, + 1187, { "updates": [ - 1132, + 1197, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 1143, + 1208, { "_set": [ - 1148 + 1213 ], "where": [ - 1136, + 1201, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 1133, + 1198, { "_set": [ - 1148 + 1213 ], "pk_columns": [ - 1146, + 1211, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 1143, + 1208, { "updates": [ - 1152, + 1217, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 1163, + 1228, { "_set": [ - 1168 + 1233 ], "where": [ - 1156, + 1221, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 1153, + 1218, { "_set": [ - 1168 + 1233 ], "pk_columns": [ - 1166, + 1231, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 1163, + 1228, { "updates": [ - 1172, + 1237, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 1183, + 1248, { "_set": [ - 1188 + 1253 ], "where": [ - 1176, + 1241, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 1173, + 1238, { "_set": [ - 1188 + 1253 ], "pk_columns": [ - 1186, + 1251, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 1183, + 1248, { "updates": [ - 1192, + 1257, "[e_player_roles_updates!]!" ] } ], "update_e_plugin_runtimes": [ - 1203, + 1268, { "_set": [ - 1208 + 1273 ], "where": [ - 1196, + 1261, "e_plugin_runtimes_bool_exp!" ] } ], "update_e_plugin_runtimes_by_pk": [ - 1193, + 1258, { "_set": [ - 1208 + 1273 ], "pk_columns": [ - 1206, + 1271, "e_plugin_runtimes_pk_columns_input!" ] } ], "update_e_plugin_runtimes_many": [ - 1203, + 1268, { "updates": [ - 1212, + 1277, "[e_plugin_runtimes_updates!]!" ] } ], "update_e_ready_settings": [ - 1223, + 1288, { "_set": [ - 1228 + 1293 ], "where": [ - 1216, + 1281, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 1213, + 1278, { "_set": [ - 1228 + 1293 ], "pk_columns": [ - 1226, + 1291, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 1223, + 1288, { "updates": [ - 1232, + 1297, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 1243, + 1308, { "_set": [ - 1249 + 1314 ], "where": [ - 1236, + 1301, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 1233, + 1298, { "_set": [ - 1249 + 1314 ], "pk_columns": [ - 1247, + 1312, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 1243, + 1308, { "updates": [ - 1253, + 1318, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 1264, + 1329, { "_set": [ - 1269 + 1334 ], "where": [ - 1257, + 1322, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 1254, + 1319, { "_set": [ - 1269 + 1334 ], "pk_columns": [ - 1267, + 1332, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 1264, + 1329, { "updates": [ - 1273, + 1338, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 1284, + 1349, { "_set": [ - 1289 + 1354 ], "where": [ - 1277, + 1342, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 1274, + 1339, { "_set": [ - 1289 + 1354 ], "pk_columns": [ - 1287, + 1352, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 1284, + 1349, { "updates": [ - 1293, + 1358, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 1304, + 1369, { "_set": [ - 1309 + 1374 ], "where": [ - 1297, + 1362, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 1294, + 1359, { "_set": [ - 1309 + 1374 ], "pk_columns": [ - 1307, + 1372, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 1304, + 1369, { "updates": [ - 1313, + 1378, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 1324, + 1389, { "_set": [ - 1329 + 1394 ], "where": [ - 1317, + 1382, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 1314, + 1379, { "_set": [ - 1329 + 1394 ], "pk_columns": [ - 1327, + 1392, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 1324, + 1389, { "updates": [ - 1333, + 1398, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 1344, + 1409, { "_set": [ - 1350 + 1415 ], "where": [ - 1337, + 1402, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 1334, + 1399, { "_set": [ - 1350 + 1415 ], "pk_columns": [ - 1348, + 1413, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 1344, + 1409, { "updates": [ - 1354, + 1419, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 1365, + 1430, { "_set": [ - 1370 + 1435 ], "where": [ - 1358, + 1423, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 1355, + 1420, { "_set": [ - 1370 + 1435 ], "pk_columns": [ - 1368, + 1433, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 1365, + 1430, { "updates": [ - 1374, + 1439, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 1385, + 1450, { "_set": [ - 1390 + 1455 ], "where": [ - 1378, + 1443, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 1375, + 1440, { "_set": [ - 1390 + 1455 ], "pk_columns": [ - 1388, + 1453, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 1385, + 1450, { "updates": [ - 1394, + 1459, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_categories": [ - 1405, + 1470, { "_set": [ - 1411 + 1476 ], "where": [ - 1398, + 1463, "e_tournament_categories_bool_exp!" ] } ], "update_e_tournament_categories_by_pk": [ - 1395, + 1460, { "_set": [ - 1411 + 1476 ], "pk_columns": [ - 1409, + 1474, "e_tournament_categories_pk_columns_input!" ] } ], "update_e_tournament_categories_many": [ - 1405, + 1470, { "updates": [ - 1415, + 1480, "[e_tournament_categories_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 1426, + 1491, { "_set": [ - 1432 + 1497 ], "where": [ - 1419, + 1484, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 1416, + 1481, { "_set": [ - 1432 + 1497 ], "pk_columns": [ - 1430, + 1495, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 1426, + 1491, { "updates": [ - 1436, + 1501, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1447, + 1512, { "_set": [ - 1453 + 1518 ], "where": [ - 1440, + 1505, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1437, + 1502, { "_set": [ - 1453 + 1518 ], "pk_columns": [ - 1451, + 1516, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1447, + 1512, { "updates": [ - 1457, + 1522, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1468, + 1533, { "_set": [ - 1473 + 1538 ], "where": [ - 1461, + 1526, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1458, + 1523, { "_set": [ - 1473 + 1538 ], "pk_columns": [ - 1471, + 1536, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1468, + 1533, { "updates": [ - 1477, + 1542, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1488, + 1553, { "_set": [ - 1493 + 1558 ], "where": [ - 1481, + 1546, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1478, + 1543, { "_set": [ - 1493 + 1558 ], "pk_columns": [ - 1491, + 1556, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1488, + 1553, { "updates": [ - 1497, + 1562, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1508, + 1573, { "_set": [ - 1513 + 1578 ], "where": [ - 1501, + 1566, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1498, + 1563, { "_set": [ - 1513 + 1578 ], "pk_columns": [ - 1511, + 1576, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1508, + 1573, { "updates": [ - 1517, + 1582, "[e_winning_reasons_updates!]!" ] } ], "update_event_match_links": [ - 1526, + 1591, { "_set": [ - 1531 + 1596 ], "where": [ - 1521, + 1586, "event_match_links_bool_exp!" ] } ], "update_event_match_links_by_pk": [ - 1518, + 1583, { "_set": [ - 1531 + 1596 ], "pk_columns": [ - 1529, + 1594, "event_match_links_pk_columns_input!" ] } ], "update_event_match_links_many": [ - 1526, + 1591, { "updates": [ - 1535, + 1600, "[event_match_links_updates!]!" ] } ], "update_event_media": [ - 1553, + 1618, { "_inc": [ - 1547 + 1612 ], "_set": [ - 1600 + 1665 ], "where": [ - 1545, + 1610, "event_media_bool_exp!" ] } ], "update_event_media_by_pk": [ - 1536, + 1601, { "_inc": [ - 1547 + 1612 ], "_set": [ - 1600 + 1665 ], "pk_columns": [ - 1557, + 1622, "event_media_pk_columns_input!" ] } ], "update_event_media_many": [ - 1553, + 1618, { "updates": [ - 1612, + 1677, "[event_media_updates!]!" ] } ], "update_event_media_players": [ - 1575, + 1640, { "_inc": [ - 1569 + 1634 ], "_set": [ - 1580 + 1645 ], "where": [ - 1567, + 1632, "event_media_players_bool_exp!" ] } ], "update_event_media_players_by_pk": [ - 1558, + 1623, { "_inc": [ - 1569 + 1634 ], "_set": [ - 1580 + 1645 ], "pk_columns": [ - 1578, + 1643, "event_media_players_pk_columns_input!" ] } ], "update_event_media_players_many": [ - 1575, + 1640, { "updates": [ - 1592, + 1657, "[event_media_players_updates!]!" ] } ], "update_event_organizers": [ - 1636, + 1701, { "_inc": [ - 1630 + 1695 ], "_set": [ - 1641 + 1706 ], "where": [ - 1628, + 1693, "event_organizers_bool_exp!" ] } ], "update_event_organizers_by_pk": [ - 1619, + 1684, { "_inc": [ - 1630 + 1695 ], "_set": [ - 1641 + 1706 ], "pk_columns": [ - 1639, + 1704, "event_organizers_pk_columns_input!" ] } ], "update_event_organizers_many": [ - 1636, + 1701, { "updates": [ - 1653, + 1718, "[event_organizers_updates!]!" ] } ], "update_event_players": [ - 1677, + 1742, { "_inc": [ - 1671 + 1736 ], "_set": [ - 1682 + 1747 ], "where": [ - 1669, + 1734, "event_players_bool_exp!" ] } ], "update_event_players_by_pk": [ - 1660, + 1725, { "_inc": [ - 1671 + 1736 ], "_set": [ - 1682 + 1747 ], "pk_columns": [ - 1680, + 1745, "event_players_pk_columns_input!" ] } ], "update_event_players_many": [ - 1677, + 1742, { "updates": [ - 1694, + 1759, "[event_players_updates!]!" ] } ], "update_event_teams": [ - 1715, + 1780, { "_set": [ - 1720 + 1785 ], "where": [ - 1708, + 1773, "event_teams_bool_exp!" ] } ], "update_event_teams_by_pk": [ - 1701, + 1766, { "_set": [ - 1720 + 1785 ], "pk_columns": [ - 1718, + 1783, "event_teams_pk_columns_input!" ] } ], "update_event_teams_many": [ - 1715, + 1780, { "updates": [ - 1724, + 1789, "[event_teams_updates!]!" ] } ], "update_event_tournaments": [ - 1739, + 1804, { "_set": [ - 1744 + 1809 ], "where": [ - 1732, + 1797, "event_tournaments_bool_exp!" ] } ], "update_event_tournaments_by_pk": [ - 1725, + 1790, { "_set": [ - 1744 + 1809 ], "pk_columns": [ - 1742, + 1807, "event_tournaments_pk_columns_input!" ] } ], "update_event_tournaments_many": [ - 1739, + 1804, { "updates": [ - 1748, + 1813, "[event_tournaments_updates!]!" ] } ], "update_events": [ - 1759, + 1824, { "_inc": [ - 1755 + 1820 ], "_set": [ - 1765 + 1830 ], "where": [ - 1753, + 1818, "events_bool_exp!" ] } ], "update_events_by_pk": [ - 1749, + 1814, { "_inc": [ - 1755 + 1820 ], "_set": [ - 1765 + 1830 ], "pk_columns": [ - 1763, + 1828, "events_pk_columns_input!" ] } ], "update_events_many": [ - 1759, + 1824, { "updates": [ - 1773, + 1838, "[events_updates!]!" ] } ], "update_friends": [ - 1789, + 1854, { "_inc": [ - 1785 + 1850 ], "_set": [ - 1794 + 1859 ], "where": [ - 1783, + 1848, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1779, + 1844, { "_inc": [ - 1785 + 1850 ], "_set": [ - 1794 + 1859 ], "pk_columns": [ - 1792, + 1857, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1789, + 1854, { "updates": [ - 1802, + 1867, "[friends_updates!]!" ] } ], + "update_game_mode_plugins": [ + 1894, + { + "_append": [ + 1879 + ], + "_delete_at_path": [ + 1885 + ], + "_delete_elem": [ + 1886 + ], + "_delete_key": [ + 1887 + ], + "_inc": [ + 1888 + ], + "_prepend": [ + 1898 + ], + "_set": [ + 1902 + ], + "where": [ + 1883, + "game_mode_plugins_bool_exp!" + ] + } + ], + "update_game_mode_plugins_by_pk": [ + 1871, + { + "_append": [ + 1879 + ], + "_delete_at_path": [ + 1885 + ], + "_delete_elem": [ + 1886 + ], + "_delete_key": [ + 1887 + ], + "_inc": [ + 1888 + ], + "_prepend": [ + 1898 + ], + "_set": [ + 1902 + ], + "pk_columns": [ + 1897, + "game_mode_plugins_pk_columns_input!" + ] + } + ], + "update_game_mode_plugins_many": [ + 1894, + { + "updates": [ + 1914, + "[game_mode_plugins_updates!]!" + ] + } + ], + "update_game_modes": [ + 1929, + { + "_set": [ + 1935 + ], + "where": [ + 1924, + "game_modes_bool_exp!" + ] + } + ], + "update_game_modes_by_pk": [ + 1921, + { + "_set": [ + 1935 + ], + "pk_columns": [ + 1933, + "game_modes_pk_columns_input!" + ] + } + ], + "update_game_modes_many": [ + 1929, + { + "updates": [ + 1939, + "[game_modes_updates!]!" + ] + } + ], + "update_game_plugin_installs": [ + 1948, + { + "_set": [ + 1953 + ], + "where": [ + 1943, + "game_plugin_installs_bool_exp!" + ] + } + ], + "update_game_plugin_installs_by_pk": [ + 1940, + { + "_set": [ + 1953 + ], + "pk_columns": [ + 1951, + "game_plugin_installs_pk_columns_input!" + ] + } + ], + "update_game_plugin_installs_many": [ + 1948, + { + "updates": [ + 1957, + "[game_plugin_installs_updates!]!" + ] + } + ], + "update_game_plugin_versions": [ + 1977, + { + "_inc": [ + 1971 + ], + "_set": [ + 1984 + ], + "where": [ + 1969, + "game_plugin_versions_bool_exp!" + ] + } + ], + "update_game_plugin_versions_by_pk": [ + 1958, + { + "_inc": [ + 1971 + ], + "_set": [ + 1984 + ], + "pk_columns": [ + 1980, + "game_plugin_versions_pk_columns_input!" + ] + } + ], + "update_game_plugin_versions_many": [ + 1977, + { + "updates": [ + 1996, + "[game_plugin_versions_updates!]!" + ] + } + ], + "update_game_plugins": [ + 2016, + { + "_append": [ + 2006 + ], + "_delete_at_path": [ + 2010 + ], + "_delete_elem": [ + 2011 + ], + "_delete_key": [ + 2012 + ], + "_prepend": [ + 2021 + ], + "_set": [ + 2023 + ], + "where": [ + 2008, + "game_plugins_bool_exp!" + ] + } + ], + "update_game_plugins_by_pk": [ + 2003, + { + "_append": [ + 2006 + ], + "_delete_at_path": [ + 2010 + ], + "_delete_elem": [ + 2011 + ], + "_delete_key": [ + 2012 + ], + "_prepend": [ + 2021 + ], + "_set": [ + 2023 + ], + "pk_columns": [ + 2020, + "game_plugins_pk_columns_input!" + ] + } + ], + "update_game_plugins_many": [ + 2016, + { + "updates": [ + 2031, + "[game_plugins_updates!]!" + ] + } + ], + "update_game_server_node_plugins": [ + 2051, + { + "_set": [ + 2058 + ], + "where": [ + 2044, + "game_server_node_plugins_bool_exp!" + ] + } + ], + "update_game_server_node_plugins_by_pk": [ + 2035, + { + "_set": [ + 2058 + ], + "pk_columns": [ + 2054, + "game_server_node_plugins_pk_columns_input!" + ] + } + ], + "update_game_server_node_plugins_many": [ + 2051, + { + "updates": [ + 2062, + "[game_server_node_plugins_updates!]!" + ] + } + ], "update_game_server_nodes": [ - 1829, + 2086, { "_append": [ - 1814 + 2071 ], "_delete_at_path": [ - 1820 + 2077 ], "_delete_elem": [ - 1821 + 2078 ], "_delete_key": [ - 1822 + 2079 ], "_inc": [ - 1823 + 2080 ], "_prepend": [ - 1834 + 2091 ], "_set": [ - 1838 + 2095 ], "where": [ - 1818, + 2075, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1806, + 2063, { "_append": [ - 1814 + 2071 ], "_delete_at_path": [ - 1820 + 2077 ], "_delete_elem": [ - 1821 + 2078 ], "_delete_key": [ - 1822 + 2079 ], "_inc": [ - 1823 + 2080 ], "_prepend": [ - 1834 + 2091 ], "_set": [ - 1838 + 2095 ], "pk_columns": [ - 1833, + 2090, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1829, + 2086, { "updates": [ - 1850, + 2107, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1871, + 2128, { "_append": [ - 1860 + 2117 ], "_delete_at_path": [ - 1864 + 2121 ], "_delete_elem": [ - 1865 + 2122 ], "_delete_key": [ - 1866 + 2123 ], "_inc": [ - 1867 + 2124 ], "_prepend": [ - 1876 + 2133 ], "_set": [ - 1878 + 2135 ], "where": [ - 1862, + 2119, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1857, + 2114, { "_append": [ - 1860 + 2117 ], "_delete_at_path": [ - 1864 + 2121 ], "_delete_elem": [ - 1865 + 2122 ], "_delete_key": [ - 1866 + 2123 ], "_inc": [ - 1867 + 2124 ], "_prepend": [ - 1876 + 2133 ], "_set": [ - 1878 + 2135 ], "pk_columns": [ - 1875, + 2132, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1871, + 2128, { "updates": [ - 1886, + 2143, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1904, + 2161, { "_append": [ - 1893 + 2150 ], "_delete_at_path": [ - 1897 + 2154 ], "_delete_elem": [ - 1898 + 2155 ], "_delete_key": [ - 1899 + 2156 ], "_inc": [ - 1900 + 2157 ], "_prepend": [ - 1908 + 2165 ], "_set": [ - 1910 + 2167 ], "where": [ - 1895, + 2152, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1890, + 2147, { "_append": [ - 1893 + 2150 ], "_delete_at_path": [ - 1897 + 2154 ], "_delete_elem": [ - 1898 + 2155 ], "_delete_key": [ - 1899 + 2156 ], "_inc": [ - 1900 + 2157 ], "_prepend": [ - 1908 + 2165 ], "_set": [ - 1910 + 2167 ], "pk_columns": [ - 1907, + 2164, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1904, + 2161, { "updates": [ - 1918, + 2175, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1942, + 2199, { "_inc": [ - 1938 + 2195 ], "_set": [ - 1945 + 2202 ], "where": [ - 1937, + 2194, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1942, + 2199, { "updates": [ - 1952, + 2209, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 1967, + 2224, { "_inc": [ - 1963 + 2220 ], "_set": [ - 1973 + 2230 ], "where": [ - 1961, + 2218, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 1957, + 2214, { "_inc": [ - 1963 + 2220 ], "_set": [ - 1973 + 2230 ], "pk_columns": [ - 1971, + 2228, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 1967, + 2224, { "updates": [ - 1981, + 2238, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 2002, + 2259, { "_inc": [ - 1996 + 2253 ], "_set": [ - 2007 + 2264 ], "where": [ - 1994, + 2251, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 1985, + 2242, { "_inc": [ - 1996 + 2253 ], "_set": [ - 2007 + 2264 ], "pk_columns": [ - 2005, + 2262, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 2002, + 2259, { "updates": [ - 2019, + 2276, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 2043, + 2300, { "_inc": [ - 2037 + 2294 ], "_set": [ - 2048 + 2305 ], "where": [ - 2035, + 2292, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 2026, + 2283, { "_inc": [ - 2037 + 2294 ], "_set": [ - 2048 + 2305 ], "pk_columns": [ - 2046, + 2303, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 2043, + 2300, { "updates": [ - 2060, + 2317, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 2084, + 2341, { "_inc": [ - 2078 + 2335 ], "_set": [ - 2089 + 2346 ], "where": [ - 2076, + 2333, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 2067, + 2324, { "_inc": [ - 2078 + 2335 ], "_set": [ - 2089 + 2346 ], "pk_columns": [ - 2087, + 2344, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 2084, + 2341, { "updates": [ - 2101, + 2358, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 2122, + 2379, { "_set": [ - 2128 + 2385 ], "where": [ - 2115, + 2372, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 2108, + 2365, { "_set": [ - 2128 + 2385 ], "pk_columns": [ - 2126, + 2383, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 2122, + 2379, { "updates": [ - 2132, + 2389, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 2147, + 2404, { "_append": [ - 2136 + 2393 ], "_delete_at_path": [ - 2140 + 2397 ], "_delete_elem": [ - 2141 + 2398 ], "_delete_key": [ - 2142 + 2399 ], "_inc": [ - 2143 + 2400 ], "_prepend": [ - 2152 + 2409 ], "_set": [ - 2154 + 2411 ], "where": [ - 2138, + 2395, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 2133, + 2390, { "_append": [ - 2136 + 2393 ], "_delete_at_path": [ - 2140 + 2397 ], "_delete_elem": [ - 2141 + 2398 ], "_delete_key": [ - 2142 + 2399 ], "_inc": [ - 2143 + 2400 ], "_prepend": [ - 2152 + 2409 ], "_set": [ - 2154 + 2411 ], "pk_columns": [ - 2151, + 2408, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 2147, + 2404, { "updates": [ - 2162, + 2419, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 2183, + 2440, { "_inc": [ - 2177 + 2434 ], "_set": [ - 2188 + 2445 ], "where": [ - 2175, + 2432, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 2166, + 2423, { "_inc": [ - 2177 + 2434 ], "_set": [ - 2188 + 2445 ], "pk_columns": [ - 2186, + 2443, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 2183, + 2440, { "updates": [ - 2200, + 2457, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 2224, + 2481, { "_inc": [ - 2218 + 2475 ], "_set": [ - 2229 + 2486 ], "where": [ - 2216, + 2473, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 2207, + 2464, { "_inc": [ - 2218 + 2475 ], "_set": [ - 2229 + 2486 ], "pk_columns": [ - 2227, + 2484, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 2224, + 2481, { "updates": [ - 2241, + 2498, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 2265, + 2522, { "_inc": [ - 2259 + 2516 ], "_set": [ - 2271 + 2528 ], "where": [ - 2257, + 2514, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 2248, + 2505, { "_inc": [ - 2259 + 2516 ], "_set": [ - 2271 + 2528 ], "pk_columns": [ - 2269, + 2526, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 2265, + 2522, { "updates": [ - 2283, + 2540, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 2298, + 2555, { "_set": [ - 2304 + 2561 ], "where": [ - 2293, + 2550, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 2290, + 2547, { "_set": [ - 2304 + 2561 ], "pk_columns": [ - 2302, + 2559, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 2298, + 2555, { "updates": [ - 2308, + 2565, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 2317, + 2574, { "_set": [ - 2323 + 2580 ], "where": [ - 2312, + 2569, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 2309, + 2566, { "_set": [ - 2323 + 2580 ], "pk_columns": [ - 2321, + 2578, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 2317, + 2574, { "updates": [ - 2327, + 2584, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 2347, + 2604, { "_inc": [ - 2341 + 2598 ], "_set": [ - 2354 + 2611 ], "where": [ - 2339, + 2596, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 2328, + 2585, { "_inc": [ - 2341 + 2598 ], "_set": [ - 2354 + 2611 ], "pk_columns": [ - 2350, + 2607, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 2347, + 2604, { "updates": [ - 2366, + 2623, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 2381, + 2638, { "_set": [ - 2387 + 2644 ], "where": [ - 2376, + 2633, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 2373, + 2630, { "_set": [ - 2387 + 2644 ], "pk_columns": [ - 2385, + 2642, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 2381, + 2638, { "updates": [ - 2391, + 2648, "[map_pools_updates!]!" ] } ], "update_maps": [ - 2408, + 2665, { "_set": [ - 2416 + 2673 ], "where": [ - 2401, + 2658, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 2392, + 2649, { "_set": [ - 2416 + 2673 ], "pk_columns": [ - 2412, + 2669, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 2408, + 2665, { "updates": [ - 2420, + 2677, "[maps_updates!]!" ] } ], "update_match_clips": [ - 2438, + 2695, { "_inc": [ - 2432 + 2689 ], "_set": [ - 2444 + 2701 ], "where": [ - 2430, + 2687, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 2421, + 2678, { "_inc": [ - 2432 + 2689 ], "_set": [ - 2444 + 2701 ], "pk_columns": [ - 2442, + 2699, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 2438, + 2695, { "updates": [ - 2456, + 2713, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 2484, + 2741, { "_append": [ - 2469 + 2726 ], "_delete_at_path": [ - 2475 + 2732 ], "_delete_elem": [ - 2476 + 2733 ], "_delete_key": [ - 2477 + 2734 ], "_inc": [ - 2478 + 2735 ], "_prepend": [ - 2488 + 2745 ], "_set": [ - 2490 + 2747 ], "where": [ - 2473, + 2730, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 2463, + 2720, { "_append": [ - 2469 + 2726 ], "_delete_at_path": [ - 2475 + 2732 ], "_delete_elem": [ - 2476 + 2733 ], "_delete_key": [ - 2477 + 2734 ], "_inc": [ - 2478 + 2735 ], "_prepend": [ - 2488 + 2745 ], "_set": [ - 2490 + 2747 ], "pk_columns": [ - 2487, + 2744, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 2484, + 2741, { "updates": [ - 2502, + 2759, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 2528, + 2785, { "_inc": [ - 2522 + 2779 ], "_set": [ - 2535 + 2792 ], "where": [ - 2520, + 2777, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 2509, + 2766, { "_inc": [ - 2522 + 2779 ], "_set": [ - 2535 + 2792 ], "pk_columns": [ - 2531, + 2788, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 2528, + 2785, { "updates": [ - 2547, + 2804, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 2571, + 2828, { "_inc": [ - 2565 + 2822 ], "_set": [ - 2577 + 2834 ], "where": [ - 2563, + 2820, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 2554, + 2811, { "_inc": [ - 2565 + 2822 ], "_set": [ - 2577 + 2834 ], "pk_columns": [ - 2575, + 2832, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 2571, + 2828, { "updates": [ - 2589, + 2846, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2619, + 2876, { "_append": [ - 2604 + 2861 ], "_delete_at_path": [ - 2610 + 2867 ], "_delete_elem": [ - 2611 + 2868 ], "_delete_key": [ - 2612 + 2869 ], "_inc": [ - 2613 + 2870 ], "_prepend": [ - 2624 + 2881 ], "_set": [ - 2628 + 2885 ], "where": [ - 2608, + 2865, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2596, + 2853, { "_append": [ - 2604 + 2861 ], "_delete_at_path": [ - 2610 + 2867 ], "_delete_elem": [ - 2611 + 2868 ], "_delete_key": [ - 2612 + 2869 ], "_inc": [ - 2613 + 2870 ], "_prepend": [ - 2624 + 2881 ], "_set": [ - 2628 + 2885 ], "pk_columns": [ - 2623, + 2880, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2619, + 2876, { "updates": [ - 2640, + 2897, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2664, + 2921, { "_inc": [ - 2658 + 2915 ], "_set": [ - 2669 + 2926 ], "where": [ - 2656, + 2913, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2647, + 2904, { "_inc": [ - 2658 + 2915 ], "_set": [ - 2669 + 2926 ], "pk_columns": [ - 2667, + 2924, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2664, + 2921, { "updates": [ - 2681, + 2938, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2704, + 2961, { "_set": [ - 2711 + 2968 ], "where": [ - 2697, + 2954, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2688, + 2945, { "_set": [ - 2711 + 2968 ], "pk_columns": [ - 2707, + 2964, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2704, + 2961, { "updates": [ - 2715, + 2972, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2733, + 2990, { "_inc": [ - 2727 + 2984 ], "_set": [ - 2739 + 2996 ], "where": [ - 2725, + 2982, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2716, + 2973, { "_inc": [ - 2727 + 2984 ], "_set": [ - 2739 + 2996 ], "pk_columns": [ - 2737, + 2994, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2733, + 2990, { "updates": [ - 2751, + 3008, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2768, + 3034, { "_inc": [ - 2764 + 3028 ], "_set": [ - 2774 + 3042 ], "where": [ - 2762, + 3026, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2758, + 3015, { "_inc": [ - 2764 + 3028 ], "_set": [ - 2774 + 3042 ], "pk_columns": [ - 2772, + 3038, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2768, + 3034, { "updates": [ - 2782, + 3054, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2802, + 3077, { "_set": [ - 2809 + 3084 ], "where": [ - 2795, + 3070, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2786, + 3061, { "_set": [ - 2809 + 3084 ], "pk_columns": [ - 2805, + 3080, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2802, + 3077, { "updates": [ - 2813, + 3088, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2837, + 3112, { "_append": [ - 2822 + 3097 ], "_delete_at_path": [ - 2828 + 3103 ], "_delete_elem": [ - 2829 + 3104 ], "_delete_key": [ - 2830 + 3105 ], "_inc": [ - 2831 + 3106 ], "_prepend": [ - 2841 + 3116 ], "_set": [ - 2845 + 3120 ], "where": [ - 2826, + 3101, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2814, + 3089, { "_append": [ - 2822 + 3097 ], "_delete_at_path": [ - 2828 + 3103 ], "_delete_elem": [ - 2829 + 3104 ], "_delete_key": [ - 2830 + 3105 ], "_inc": [ - 2831 + 3106 ], "_prepend": [ - 2841 + 3116 ], "_set": [ - 2845 + 3120 ], "pk_columns": [ - 2840, + 3115, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2837, + 3112, { "updates": [ - 2857, + 3132, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2872, + 3147, { "_set": [ - 2877 + 3152 ], "where": [ - 2867, + 3142, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2864, + 3139, { "_set": [ - 2877 + 3152 ], "pk_columns": [ - 2875, + 3150, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2872, + 3147, { "updates": [ - 2881, + 3156, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2899, + 3176, { "_inc": [ - 2893 + 3170 ], "_set": [ - 2905 + 3184 ], "where": [ - 2891, + 3168, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2882, + 3157, { "_inc": [ - 2893 + 3170 ], "_set": [ - 2905 + 3184 ], "pk_columns": [ - 2903, + 3180, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2899, + 3176, { "updates": [ - 2917, + 3196, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2932, + 3211, { "_set": [ - 2937 + 3216 ], "where": [ - 2927, + 3206, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2924, + 3203, { "_set": [ - 2937 + 3216 ], "pk_columns": [ - 2935, + 3214, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2932, + 3211, { "updates": [ - 2941, + 3220, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2964, + 3243, { "_append": [ - 2950 + 3229 ], "_delete_at_path": [ - 2955 + 3234 ], "_delete_elem": [ - 2956 + 3235 ], "_delete_key": [ - 2957 + 3236 ], "_inc": [ - 2958 + 3237 ], "_prepend": [ - 2966 + 3245 ], "_set": [ - 2970 + 3249 ], "where": [ - 2954, + 3233, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2964, + 3243, { "updates": [ - 2981, + 3260, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2998, + 3277, { "_inc": [ - 2994 + 3273 ], "_set": [ - 3003 + 3282 ], "where": [ - 2992, + 3271, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2988, + 3267, { "_inc": [ - 2994 + 3273 ], "_set": [ - 3003 + 3282 ], "pk_columns": [ - 3001, + 3280, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2998, + 3277, { "updates": [ - 3011, + 3290, "[news_articles_updates!]!" ] } ], "update_notification_preferences": [ - 3025, + 3304, { "_inc": [ - 3021 + 3300 ], "_set": [ - 3030 + 3309 ], "where": [ - 3019, + 3298, "notification_preferences_bool_exp!" ] } ], "update_notification_preferences_by_pk": [ - 3015, + 3294, { "_inc": [ - 3021 + 3300 ], "_set": [ - 3030 + 3309 ], "pk_columns": [ - 3028, + 3307, "notification_preferences_pk_columns_input!" ] } ], "update_notification_preferences_many": [ - 3025, + 3304, { "updates": [ - 3038, + 3317, "[notification_preferences_updates!]!" ] } ], "update_notifications": [ - 3065, + 3344, { "_append": [ - 3050 + 3329 ], "_delete_at_path": [ - 3056 + 3335 ], "_delete_elem": [ - 3057 + 3336 ], "_delete_key": [ - 3058 + 3337 ], "_inc": [ - 3059 + 3338 ], "_prepend": [ - 3069 + 3348 ], "_set": [ - 3073 + 3352 ], "where": [ - 3054, + 3333, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 3042, + 3321, { "_append": [ - 3050 + 3329 ], "_delete_at_path": [ - 3056 + 3335 ], "_delete_elem": [ - 3057 + 3336 ], "_delete_key": [ - 3058 + 3337 ], "_inc": [ - 3059 + 3338 ], "_prepend": [ - 3069 + 3348 ], "_set": [ - 3073 + 3352 ], "pk_columns": [ - 3068, + 3347, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 3065, + 3344, { "updates": [ - 3085, + 3364, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 3112, + 3391, { "_inc": [ - 3106 + 3385 ], "_set": [ - 3117 + 3396 ], "where": [ - 3104, + 3383, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 3095, + 3374, { "_inc": [ - 3106 + 3385 ], "_set": [ - 3117 + 3396 ], "pk_columns": [ - 3115, + 3394, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 3112, + 3391, { "updates": [ - 3129, + 3408, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 3146, + 3425, { "_inc": [ - 3142 + 3421 ], "_set": [ - 3152 + 3431 ], "where": [ - 3140, + 3419, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 3136, + 3415, { "_inc": [ - 3142 + 3421 ], "_set": [ - 3152 + 3431 ], "pk_columns": [ - 3150, + 3429, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 3146, + 3425, { "updates": [ - 3160, + 3439, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 3174, + 3453, { "_inc": [ - 3170 + 3449 ], "_set": [ - 3179 + 3458 ], "where": [ - 3168, + 3447, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 3164, + 3443, { "_inc": [ - 3170 + 3449 ], "_set": [ - 3179 + 3458 ], "pk_columns": [ - 3177, + 3456, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 3174, + 3453, { "updates": [ - 3187, + 3466, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 3208, + 3487, { "_inc": [ - 3202 + 3481 ], "_set": [ - 3213 + 3492 ], "where": [ - 3200, + 3479, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 3191, + 3470, { "_inc": [ - 3202 + 3481 ], "_set": [ - 3213 + 3492 ], "pk_columns": [ - 3211, + 3490, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 3208, + 3487, { "updates": [ - 3225, + 3504, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 3251, + 3530, { "_inc": [ - 3245 + 3524 ], "_set": [ - 3258 + 3537 ], "where": [ - 3243, + 3522, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 3232, + 3511, { "_inc": [ - 3245 + 3524 ], "_set": [ - 3258 + 3537 ], "pk_columns": [ - 3254, + 3533, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 3251, + 3530, { "updates": [ - 3270, + 3549, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 3312, + 3591, { "_inc": [ - 3306 + 3585 ], "_set": [ - 3317 + 3596 ], "where": [ - 3304, + 3583, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 3295, + 3574, { "_inc": [ - 3306 + 3585 ], "_set": [ - 3317 + 3596 ], "pk_columns": [ - 3315, + 3594, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 3312, + 3591, { "updates": [ - 3329, + 3608, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 3346, + 3625, { "_inc": [ - 3342 + 3621 ], "_set": [ - 3351 + 3630 ], "where": [ - 3340, + 3619, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 3336, + 3615, { "_inc": [ - 3342 + 3621 ], "_set": [ - 3351 + 3630 ], "pk_columns": [ - 3349, + 3628, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 3346, + 3625, { "updates": [ - 3359, + 3638, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 3380, + 3659, { "_inc": [ - 3374 + 3653 ], "_set": [ - 3385 + 3664 ], "where": [ - 3372, + 3651, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 3363, + 3642, { "_inc": [ - 3374 + 3653 ], "_set": [ - 3385 + 3664 ], "pk_columns": [ - 3383, + 3662, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 3380, + 3659, { "updates": [ - 3397, + 3676, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 3423, + 3702, { "_inc": [ - 3417 + 3696 ], "_set": [ - 3430 + 3709 ], "where": [ - 3415, + 3694, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 3404, + 3683, { "_inc": [ - 3417 + 3696 ], "_set": [ - 3430 + 3709 ], "pk_columns": [ - 3426, + 3705, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 3423, + 3702, { "updates": [ - 3442, + 3721, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 3509, + 3788, { "_inc": [ - 3503 + 3782 ], "_set": [ - 3516 + 3795 ], "where": [ - 3460, + 3739, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 3449, + 3728, { "_inc": [ - 3503 + 3782 ], "_set": [ - 3516 + 3795 ], "pk_columns": [ - 3512, + 3791, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 3478, + 3757, { "_inc": [ - 3472 + 3751 ], "_set": [ - 3483 + 3762 ], "where": [ - 3470, + 3749, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 3461, + 3740, { "_inc": [ - 3472 + 3751 ], "_set": [ - 3483 + 3762 ], "pk_columns": [ - 3481, + 3760, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 3478, + 3757, { "updates": [ - 3495, + 3774, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 3509, + 3788, { "updates": [ - 3528, + 3807, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 3544, + 3823, { "_inc": [ - 3540 + 3819 ], "_set": [ - 3547 + 3826 ], "where": [ - 3539, + 3818, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 3544, + 3823, { "updates": [ - 3554, + 3833, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 3575, + 3854, { "_inc": [ - 3569 + 3848 ], "_set": [ - 3580 + 3859 ], "where": [ - 3567, + 3846, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 3558, + 3837, { "_inc": [ - 3569 + 3848 ], "_set": [ - 3580 + 3859 ], "pk_columns": [ - 3578, + 3857, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 3575, + 3854, { "updates": [ - 3592, + 3871, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3667, + 3946, { "_inc": [ - 3661 + 3940 ], "_set": [ - 3672 + 3951 ], "where": [ - 3659, + 3938, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3650, + 3929, { "_inc": [ - 3661 + 3940 ], "_set": [ - 3672 + 3951 ], "pk_columns": [ - 3670, + 3949, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3667, + 3946, { "updates": [ - 3684, + 3963, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3726, + 4005, { "_inc": [ - 3720 + 3999 ], "_set": [ - 3731 + 4010 ], "where": [ - 3718, + 3997, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3709, + 3988, { "_inc": [ - 3720 + 3999 ], "_set": [ - 3731 + 4010 ], "pk_columns": [ - 3729, + 4008, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3726, + 4005, { "updates": [ - 3743, + 4022, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3767, + 4046, { "_inc": [ - 3761 + 4040 ], "_set": [ - 3772 + 4051 ], "where": [ - 3759, + 4038, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3750, + 4029, { "_inc": [ - 3761 + 4040 ], "_set": [ - 3772 + 4051 ], "pk_columns": [ - 3770, + 4049, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3767, + 4046, { "updates": [ - 3784, + 4063, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3818, + 4097, { "_inc": [ - 3812 + 4091 ], "_set": [ - 3831 + 4110 ], "where": [ - 3810, + 4089, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3791, + 4070, { "_inc": [ - 3812 + 4091 ], "_set": [ - 3831 + 4110 ], "pk_columns": [ - 3821, + 4100, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3818, + 4097, { "updates": [ - 3843, + 4122, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3860, + 4139, { "_inc": [ - 3856 + 4135 ], "_set": [ - 3866 + 4145 ], "where": [ - 3854, + 4133, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3850, + 4129, { "_inc": [ - 3856 + 4135 ], "_set": [ - 3866 + 4145 ], "pk_columns": [ - 3864, + 4143, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3860, + 4139, { "updates": [ - 3874, + 4153, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3892, + 4171, { "_append": [ - 3881 + 4160 ], "_delete_at_path": [ - 3885 + 4164 ], "_delete_elem": [ - 3886 + 4165 ], "_delete_key": [ - 3887 + 4166 ], "_inc": [ - 3888 + 4167 ], "_prepend": [ - 3896 + 4175 ], "_set": [ - 3898 + 4177 ], "where": [ - 3883, + 4162, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3878, + 4157, { "_append": [ - 3881 + 4160 ], "_delete_at_path": [ - 3885 + 4164 ], "_delete_elem": [ - 3886 + 4165 ], "_delete_key": [ - 3887 + 4166 ], "_inc": [ - 3888 + 4167 ], "_prepend": [ - 3896 + 4175 ], "_set": [ - 3898 + 4177 ], "pk_columns": [ - 3895, + 4174, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3892, + 4171, { "updates": [ - 3906, + 4185, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3920, + 4199, { "_inc": [ - 3916 + 4195 ], "_set": [ - 3925 + 4204 ], "where": [ - 3914, + 4193, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3910, + 4189, { "_inc": [ - 3916 + 4195 ], "_set": [ - 3925 + 4204 ], "pk_columns": [ - 3923, + 4202, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3920, + 4199, { "updates": [ - 3933, + 4212, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3954, + 4233, { "_inc": [ - 3948 + 4227 ], "_set": [ - 3959 + 4238 ], "where": [ - 3946, + 4225, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3937, + 4216, { "_inc": [ - 3948 + 4227 ], "_set": [ - 3959 + 4238 ], "pk_columns": [ - 3957, + 4236, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3954, + 4233, { "updates": [ - 3971, + 4250, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3995, + 4274, { "_inc": [ - 3989 + 4268 ], "_set": [ - 4000 + 4279 ], "where": [ - 3987, + 4266, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3978, + 4257, { "_inc": [ - 3989 + 4268 ], "_set": [ - 4000 + 4279 ], "pk_columns": [ - 3998, + 4277, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3995, + 4274, { "updates": [ - 4012, + 4291, "[player_utility_updates!]!" ] } ], "update_players": [ - 4062, + 4341, { "_inc": [ - 4058 + 4337 ], "_set": [ - 4068 + 4347 ], "where": [ - 4056, + 4335, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 4052, + 4331, { "_inc": [ - 4058 + 4337 ], "_set": [ - 4068 + 4347 ], "pk_columns": [ - 4066, + 4345, "players_pk_columns_input!" ] } ], "update_players_many": [ - 4062, + 4341, { "updates": [ - 4076, + 4355, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 4090, + 4369, { "_inc": [ - 4086 + 4365 ], "_set": [ - 4095 + 4374 ], "where": [ - 4084, + 4363, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 4080, + 4359, { "_inc": [ - 4086 + 4365 ], "_set": [ - 4095 + 4374 ], "pk_columns": [ - 4093, + 4372, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 4090, + 4369, { "updates": [ - 4103, + 4382, "[plugin_versions_updates!]!" ] } ], "update_push_subscriptions": [ - 4117, + 4396, { "_inc": [ - 4113 + 4392 ], "_set": [ - 4122 + 4401 ], "where": [ - 4111, + 4390, "push_subscriptions_bool_exp!" ] } ], "update_push_subscriptions_by_pk": [ - 4107, + 4386, { "_inc": [ - 4113 + 4392 ], "_set": [ - 4122 + 4401 ], "pk_columns": [ - 4120, + 4399, "push_subscriptions_pk_columns_input!" ] } ], "update_push_subscriptions_many": [ - 4117, + 4396, { "updates": [ - 4130, + 4409, "[push_subscriptions_updates!]!" ] } ], "update_seasons": [ - 4148, + 4427, { "_inc": [ - 4144 + 4423 ], "_set": [ - 4154 + 4433 ], "where": [ - 4142, + 4421, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 4138, + 4417, { "_inc": [ - 4144 + 4423 ], "_set": [ - 4154 + 4433 ], "pk_columns": [ - 4152, + 4431, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 4148, + 4427, { "updates": [ - 4162, + 4441, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 4175, + 4454, { "_set": [ - 4181 + 4460 ], "where": [ - 4170, + 4449, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 4166, + 4445, { "_set": [ - 4181 + 4460 ], "pk_columns": [ - 4179, + 4458, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 4175, + 4454, { "updates": [ - 4189, + 4468, "[server_regions_updates!]!" ] } ], "update_servers": [ - 4212, + 4495, { + "_append": [ + 4480 + ], + "_delete_at_path": [ + 4486 + ], + "_delete_elem": [ + 4487 + ], + "_delete_key": [ + 4488 + ], "_inc": [ - 4206 + 4489 + ], + "_prepend": [ + 4500 ], "_set": [ - 4220 + 4504 ], "where": [ - 4204, + 4484, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 4193, + 4472, { + "_append": [ + 4480 + ], + "_delete_at_path": [ + 4486 + ], + "_delete_elem": [ + 4487 + ], + "_delete_key": [ + 4488 + ], "_inc": [ - 4206 + 4489 + ], + "_prepend": [ + 4500 ], "_set": [ - 4220 + 4504 ], "pk_columns": [ - 4216, + 4499, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 4212, + 4495, { "updates": [ - 4232, + 4516, "[servers_updates!]!" ] } ], "update_settings": [ - 4247, + 4531, { "_set": [ - 4252 + 4536 ], "where": [ - 4242, + 4526, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 4239, + 4523, { "_set": [ - 4252 + 4536 ], "pk_columns": [ - 4250, + 4534, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 4247, + 4531, { "updates": [ - 4256, + 4540, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 4273, + 4557, { "_set": [ - 4278 + 4562 ], "where": [ - 4266, + 4550, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 4259, + 4543, { "_set": [ - 4278 + 4562 ], "pk_columns": [ - 4276, + 4560, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 4273, + 4557, { "updates": [ - 4282, + 4566, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 4293, + 4577, { "_inc": [ - 4289 + 4573 ], "_set": [ - 4299 + 4583 ], "where": [ - 4287, + 4571, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 4283, + 4567, { "_inc": [ - 4289 + 4573 ], "_set": [ - 4299 + 4583 ], "pk_columns": [ - 4297, + 4581, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 4293, + 4577, { "updates": [ - 4307, + 4591, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 4321, + 4605, { "_inc": [ - 4317 + 4601 ], "_set": [ - 4326 + 4610 ], "where": [ - 4315, + 4599, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 4311, + 4595, { "_inc": [ - 4317 + 4601 ], "_set": [ - 4326 + 4610 ], "pk_columns": [ - 4324, + 4608, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 4321, + 4605, { "updates": [ - 4334, + 4618, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 4355, + 4639, { "_inc": [ - 4349 + 4633 ], "_set": [ - 4360 + 4644 ], "where": [ - 4347, + 4631, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 4338, + 4622, { "_inc": [ - 4349 + 4633 ], "_set": [ - 4360 + 4644 ], "pk_columns": [ - 4358, + 4642, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 4355, + 4639, { "updates": [ - 4372, + 4656, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 4398, + 4682, { "_inc": [ - 4392 + 4676 ], "_set": [ - 4405 + 4689 ], "where": [ - 4390, + 4674, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 4379, + 4663, { "_inc": [ - 4392 + 4676 ], "_set": [ - 4405 + 4689 ], "pk_columns": [ - 4401, + 4685, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 4398, + 4682, { "updates": [ - 4417, + 4701, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 4434, + 4718, { "_inc": [ - 4430 + 4714 ], "_set": [ - 4439 + 4723 ], "where": [ - 4428, + 4712, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 4424, + 4708, { "_inc": [ - 4430 + 4714 ], "_set": [ - 4439 + 4723 ], "pk_columns": [ - 4437, + 4721, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 4434, + 4718, { "updates": [ - 4447, + 4731, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 4467, + 4751, { "_set": [ - 4474 + 4758 ], "where": [ - 4460, + 4744, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 4451, + 4735, { "_set": [ - 4474 + 4758 ], "pk_columns": [ - 4470, + 4754, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 4467, + 4751, { "updates": [ - 4478, + 4762, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 4496, + 4780, { "_inc": [ - 4490 + 4774 ], "_set": [ - 4501 + 4785 ], "where": [ - 4488, + 4772, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 4479, + 4763, { "_inc": [ - 4490 + 4774 ], "_set": [ - 4501 + 4785 ], "pk_columns": [ - 4499, + 4783, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 4496, + 4780, { "updates": [ - 4513, + 4797, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 4539, + 4823, { "_inc": [ - 4533 + 4817 ], "_set": [ - 4547 + 4831 ], "where": [ - 4531, + 4815, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 4520, + 4804, { "_inc": [ - 4533 + 4817 ], "_set": [ - 4547 + 4831 ], "pk_columns": [ - 4543, + 4827, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 4539, + 4823, { "updates": [ - 4559, + 4843, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 4576, + 4860, { "_inc": [ - 4572 + 4856 ], "_set": [ - 4582 + 4866 ], "where": [ - 4570, + 4854, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 4566, + 4850, { "_inc": [ - 4572 + 4856 ], "_set": [ - 4582 + 4866 ], "pk_columns": [ - 4580, + 4864, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 4576, + 4860, { "updates": [ - 4590, + 4874, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 4604, + 4888, { "_inc": [ - 4600 + 4884 ], "_set": [ - 4609 + 4893 ], "where": [ - 4598, + 4882, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 4594, + 4878, { "_inc": [ - 4600 + 4884 ], "_set": [ - 4609 + 4893 ], "pk_columns": [ - 4607, + 4891, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 4604, + 4888, { "updates": [ - 4617, + 4901, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 4640, + 4924, { "_inc": [ - 4634 + 4918 ], "_set": [ - 4648 + 4932 ], "where": [ - 4632, + 4916, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 4621, + 4905, { "_inc": [ - 4634 + 4918 ], "_set": [ - 4648 + 4932 ], "pk_columns": [ - 4644, + 4928, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 4640, + 4924, { "updates": [ - 4660, + 4944, "[teams_updates!]!" ] } ], "update_tournament_awards": [ - 4689, + 4973, { "_inc": [ - 4683 + 4967 ], "_set": [ - 4695 + 4979 ], "where": [ - 4681, + 4965, "tournament_awards_bool_exp!" ] } ], "update_tournament_awards_by_pk": [ - 4672, + 4956, { "_inc": [ - 4683 + 4967 ], "_set": [ - 4695 + 4979 ], "pk_columns": [ - 4693, + 4977, "tournament_awards_pk_columns_input!" ] } ], "update_tournament_awards_many": [ - 4689, + 4973, { "updates": [ - 4707, + 4991, "[tournament_awards_updates!]!" ] } ], "update_tournament_brackets": [ - 4733, + 5017, { "_inc": [ - 4727 + 5011 ], "_set": [ - 4741 + 5025 ], "where": [ - 4725, + 5009, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4714, + 4998, { "_inc": [ - 4727 + 5011 ], "_set": [ - 4741 + 5025 ], "pk_columns": [ - 4737, + 5021, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4733, + 5017, { "updates": [ - 4753, + 5037, "[tournament_brackets_updates!]!" ] } ], "update_tournament_categories": [ - 4774, + 5058, { "_set": [ - 4779 + 5063 ], "where": [ - 4767, + 5051, "tournament_categories_bool_exp!" ] } ], "update_tournament_categories_by_pk": [ - 4760, + 5044, { "_set": [ - 4779 + 5063 ], "pk_columns": [ - 4777, + 5061, "tournament_categories_pk_columns_input!" ] } ], "update_tournament_categories_many": [ - 4774, + 5058, { "updates": [ - 4783, + 5067, "[tournament_categories_updates!]!" ] } ], "update_tournament_organizer_teams": [ - 4798, + 5082, { "_set": [ - 4803 + 5087 ], "where": [ - 4791, + 5075, "tournament_organizer_teams_bool_exp!" ] } ], "update_tournament_organizer_teams_by_pk": [ - 4784, + 5068, { "_set": [ - 4803 + 5087 ], "pk_columns": [ - 4801, + 5085, "tournament_organizer_teams_pk_columns_input!" ] } ], "update_tournament_organizer_teams_many": [ - 4798, + 5082, { "updates": [ - 4807, + 5091, "[tournament_organizer_teams_updates!]!" ] } ], "update_tournament_organizers": [ - 4825, + 5109, { "_inc": [ - 4819 + 5103 ], "_set": [ - 4830 + 5114 ], "where": [ - 4817, + 5101, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4808, + 5092, { "_inc": [ - 4819 + 5103 ], "_set": [ - 4830 + 5114 ], "pk_columns": [ - 4828, + 5112, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4825, + 5109, { "updates": [ - 4842, + 5126, "[tournament_organizers_updates!]!" ] } ], "update_tournament_prizes": [ - 4866, + 5150, { "_inc": [ - 4860 + 5144 ], "_set": [ - 4871 + 5155 ], "where": [ - 4858, + 5142, "tournament_prizes_bool_exp!" ] } ], "update_tournament_prizes_by_pk": [ - 4849, + 5133, { "_inc": [ - 4860 + 5144 ], "_set": [ - 4871 + 5155 ], "pk_columns": [ - 4869, + 5153, "tournament_prizes_pk_columns_input!" ] } ], "update_tournament_prizes_many": [ - 4866, + 5150, { "updates": [ - 4883, + 5167, "[tournament_prizes_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4907, + 5191, { "_inc": [ - 4901 + 5185 ], "_set": [ - 4912 + 5196 ], "where": [ - 4899, + 5183, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4890, + 5174, { "_inc": [ - 4901 + 5185 ], "_set": [ - 4912 + 5196 ], "pk_columns": [ - 4910, + 5194, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4907, + 5191, { "updates": [ - 4924, + 5208, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4954, + 5238, { "_append": [ - 4939 + 5223 ], "_delete_at_path": [ - 4945 + 5229 ], "_delete_elem": [ - 4946 + 5230 ], "_delete_key": [ - 4947 + 5231 ], "_inc": [ - 4948 + 5232 ], "_prepend": [ - 4959 + 5243 ], "_set": [ - 4963 + 5247 ], "where": [ - 4943, + 5227, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4931, + 5215, { "_append": [ - 4939 + 5223 ], "_delete_at_path": [ - 4945 + 5229 ], "_delete_elem": [ - 4946 + 5230 ], "_delete_key": [ - 4947 + 5231 ], "_inc": [ - 4948 + 5232 ], "_prepend": [ - 4959 + 5243 ], "_set": [ - 4963 + 5247 ], "pk_columns": [ - 4958, + 5242, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4954, + 5238, { "updates": [ - 4975, + 5259, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4999, + 5283, { "_inc": [ - 4993 + 5277 ], "_set": [ - 5004 + 5288 ], "where": [ - 4991, + 5275, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4982, + 5266, { "_inc": [ - 4993 + 5277 ], "_set": [ - 5004 + 5288 ], "pk_columns": [ - 5002, + 5286, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4999, + 5283, { "updates": [ - 5016, + 5300, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 5040, + 5324, { "_inc": [ - 5034 + 5318 ], "_set": [ - 5045 + 5329 ], "where": [ - 5032, + 5316, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 5023, + 5307, { "_inc": [ - 5034 + 5318 ], "_set": [ - 5045 + 5329 ], "pk_columns": [ - 5043, + 5327, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 5040, + 5324, { "updates": [ - 5057, + 5341, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 5081, + 5365, { "_inc": [ - 5075 + 5359 ], "_set": [ - 5087 + 5371 ], "where": [ - 5073, + 5357, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 5064, + 5348, { "_inc": [ - 5075 + 5359 ], "_set": [ - 5087 + 5371 ], "pk_columns": [ - 5085, + 5369, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 5081, + 5365, { "updates": [ - 5099, + 5383, "[tournament_teams_updates!]!" ] } ], "update_tournaments": [ - 5135, + 5419, { "_inc": [ - 5129 + 5413 ], "_set": [ - 5151 + 5435 ], "where": [ - 5127, + 5411, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 5106, + 5390, { "_inc": [ - 5129 + 5413 ], "_set": [ - 5151 + 5435 ], "pk_columns": [ - 5139, + 5423, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 5135, + 5419, { "updates": [ - 5163, + 5447, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 5335, + 5619, { "_inc": [ - 5331 + 5615 ], "_set": [ - 5339 + 5623 ], "where": [ - 5330, + 5614, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 5335, + 5619, { "updates": [ - 5346, + 5630, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 5446, + 5730, { "_inc": [ - 5442 + 5726 ], "_set": [ - 5449 + 5733 ], "where": [ - 5441, + 5725, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 5446, + 5730, { "updates": [ - 5456, + 5740, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 5668, + 5952, { "_inc": [ - 5662 + 5946 ], "_set": [ - 5671 + 5955 ], "where": [ - 5661, + 5945, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 5668, + 5952, { "updates": [ - 5682, + 5966, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5845, + 6129, { "_set": [ - 5850 + 6134 ], "where": [ - 5839, + 6123, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5845, + 6129, { "updates": [ - 5853, + 6137, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5939, + 6223, { "_inc": [ - 5933 + 6217 ], "_set": [ - 5953 + 6237 ], "where": [ - 5931, + 6215, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5912, + 6196, { "_inc": [ - 5933 + 6217 ], "_set": [ - 5953 + 6237 ], "pk_columns": [ - 5943, + 6227, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5939, + 6223, { "updates": [ - 5965, + 6249, "[v_team_stage_results_updates!]!" ] } ], "validateGamedata": [ - 83, + 87, { "game_server_node_id": [ - 5170, + 5454, "uuid!" ] } ], "watchDemo": [ - 104, + 109, { "match_map_demo_id": [ - 5170 + 5454 ], "match_map_id": [ - 5170, + 5454, "uuid!" ] } ], "writeServerFile": [ - 83, + 87, { "content": [ - 80, + 84, "String!" ], "file_path": [ - 80, + 84, "String!" ], "node_id": [ - 80, + 84, "String!" ], "server_id": [ - 80 + 84 ] } ], "__typename": [ - 80 + 84 ] }, "Subscription": { "_map_pool": [ - 107, + 112, { "distinct_on": [ - 119, + 124, "[_map_pool_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 117, + 122, "[_map_pool_order_by!]" ], "where": [ - 110 + 115 ] } ], "_map_pool_aggregate": [ - 108, + 113, { "distinct_on": [ - 119, + 124, "[_map_pool_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 117, + 122, "[_map_pool_order_by!]" ], "where": [ - 110 + 115 ] } ], "_map_pool_by_pk": [ - 107, + 112, { "map_id": [ - 5170, + 5454, "uuid!" ], "map_pool_id": [ - 5170, + 5454, "uuid!" ] } ], "_map_pool_stream": [ - 107, + 112, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 121, + 126, "[_map_pool_stream_cursor_input]!" ], "where": [ - 110 + 115 ] } ], "abandoned_matches": [ - 126, + 131, { "distinct_on": [ - 147, + 152, "[abandoned_matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 145, + 150, "[abandoned_matches_order_by!]" ], "where": [ - 135 + 140 ] } ], "abandoned_matches_aggregate": [ - 127, + 132, { "distinct_on": [ - 147, + 152, "[abandoned_matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 145, + 150, "[abandoned_matches_order_by!]" ], "where": [ - 135 + 140 ] } ], "abandoned_matches_by_pk": [ - 126, + 131, { "id": [ - 5170, + 5454, "uuid!" ] } ], "abandoned_matches_stream": [ - 126, + 131, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 155, + 160, "[abandoned_matches_stream_cursor_input]!" ], "where": [ - 135 + 140 ] } ], "api_keys": [ - 167, + 172, { "distinct_on": [ - 181, + 186, "[api_keys_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 179, + 184, "[api_keys_order_by!]" ], "where": [ - 171 + 176 ] } ], "api_keys_aggregate": [ - 168, + 173, { "distinct_on": [ - 181, + 186, "[api_keys_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 179, + 184, "[api_keys_order_by!]" ], "where": [ - 171 + 176 ] } ], "api_keys_by_pk": [ - 167, + 172, { "id": [ - 5170, + 5454, "uuid!" ] } ], "api_keys_stream": [ - 167, + 172, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 186, + 191, "[api_keys_stream_cursor_input]!" ], "where": [ - 171 + 176 ] } ], "award_recipients": [ - 195, + 200, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "award_recipients_aggregate": [ - 196, + 201, { "distinct_on": [ - 216, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 214, + 219, "[award_recipients_order_by!]" ], "where": [ - 204 + 209 ] } ], "award_recipients_by_pk": [ - 195, + 200, { "id": [ - 5170, + 5454, "uuid!" ] } ], "award_recipients_stream": [ - 195, + 200, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 224, + 229, "[award_recipients_stream_cursor_input]!" ], "where": [ - 204 + 209 ] } ], "awards": [ - 236, + 241, { "distinct_on": [ - 251, + 256, "[awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 249, + 254, "[awards_order_by!]" ], "where": [ - 240 + 245 ] } ], "awards_aggregate": [ - 237, + 242, { "distinct_on": [ - 251, + 256, "[awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 249, + 254, "[awards_order_by!]" ], "where": [ - 240 + 245 ] } ], "awards_by_pk": [ - 236, + 241, { "id": [ - 5170, + 5454, "uuid!" ] } ], "awards_stream": [ - 236, + 241, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 256, + 261, "[awards_stream_cursor_input]!" ], "where": [ - 240 + 245 ] } ], "chat_read_state": [ - 269, + 274, { "distinct_on": [ - 283, + 288, "[chat_read_state_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 281, + 286, "[chat_read_state_order_by!]" ], "where": [ - 273 + 278 ] } ], "chat_read_state_aggregate": [ - 270, + 275, { "distinct_on": [ - 283, + 288, "[chat_read_state_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 281, + 286, "[chat_read_state_order_by!]" ], "where": [ - 273 + 278 ] } ], "chat_read_state_by_pk": [ - 269, + 274, { "steam_id": [ - 264, + 269, "bigint!" ], "thread": [ - 80, + 84, "String!" ] } ], "chat_read_state_stream": [ - 269, + 274, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 288, + 293, "[chat_read_state_stream_cursor_input]!" ], "where": [ - 273 + 278 ] } ], "clip_render_jobs": [ - 296, + 301, { "distinct_on": [ - 324, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 321, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 313 ] } ], "clip_render_jobs_aggregate": [ - 297, + 302, { "distinct_on": [ - 324, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 321, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 313 ] } ], "clip_render_jobs_by_pk": [ - 296, + 301, { "id": [ - 5170, + 5454, "uuid!" ] } ], "clip_render_jobs_stream": [ - 296, + 301, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 334, + 339, "[clip_render_jobs_stream_cursor_input]!" ], "where": [ - 308 + 313 ] } ], "custom_pages": [ - 348, + 353, { "distinct_on": [ - 367, + 372, "[custom_pages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 364, + 369, "[custom_pages_order_by!]" ], "where": [ - 353 + 358 ] } ], "custom_pages_aggregate": [ - 349, + 354, { "distinct_on": [ - 367, + 372, "[custom_pages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 364, + 369, "[custom_pages_order_by!]" ], "where": [ - 353 + 358 ] } ], "custom_pages_by_pk": [ - 348, + 353, { "id": [ - 5170, + 5454, "uuid!" ] } ], "custom_pages_stream": [ - 348, + 353, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 372, + 377, "[custom_pages_stream_cursor_input]!" ], "where": [ - 353 + 358 ] } ], "db_backups": [ - 380, + 385, { "distinct_on": [ - 394, + 399, "[db_backups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 392, + 397, "[db_backups_order_by!]" ], "where": [ - 384 + 389 ] } ], "db_backups_aggregate": [ - 381, + 386, { "distinct_on": [ - 394, + 399, "[db_backups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 392, + 397, "[db_backups_order_by!]" ], "where": [ - 384 + 389 ] } ], "db_backups_by_pk": [ - 380, + 385, { "id": [ - 5170, + 5454, "uuid!" ] } ], "db_backups_stream": [ - 380, + 385, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 399, + 404, "[db_backups_stream_cursor_input]!" ], "where": [ - 384 + 389 ] } ], "direct_conversations": [ - 407, + 412, { "distinct_on": [ - 421, + 426, "[direct_conversations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 419, + 424, "[direct_conversations_order_by!]" ], "where": [ - 411 + 416 ] } ], "direct_conversations_aggregate": [ - 408, + 413, { "distinct_on": [ - 421, + 426, "[direct_conversations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 419, + 424, "[direct_conversations_order_by!]" ], "where": [ - 411 + 416 ] } ], "direct_conversations_by_pk": [ - 407, + 412, { "room_id": [ - 80, + 84, "String!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "direct_conversations_stream": [ - 407, + 412, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 426, + 431, "[direct_conversations_stream_cursor_input]!" ], "where": [ - 411 + 416 ] } ], "direct_messages": [ - 434, + 439, { "distinct_on": [ - 448, + 453, "[direct_messages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 446, + 451, "[direct_messages_order_by!]" ], "where": [ - 438 + 443 ] } ], "direct_messages_aggregate": [ - 435, + 440, { "distinct_on": [ - 448, + 453, "[direct_messages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 446, + 451, "[direct_messages_order_by!]" ], "where": [ - 438 + 443 ] } ], "direct_messages_by_pk": [ - 434, + 439, { "id": [ - 5170, + 5454, "uuid!" ] } ], "direct_messages_stream": [ - 434, + 439, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 453, + 458, "[direct_messages_stream_cursor_input]!" ], "where": [ - 438 + 443 ] } ], "draft_game_picks": [ - 461, + 466, { "distinct_on": [ - 484, + 489, "[draft_game_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 482, + 487, "[draft_game_picks_order_by!]" ], "where": [ - 472 + 477 ] } ], "draft_game_picks_aggregate": [ - 462, + 467, { "distinct_on": [ - 484, + 489, "[draft_game_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 482, + 487, "[draft_game_picks_order_by!]" ], "where": [ - 472 + 477 ] } ], "draft_game_picks_by_pk": [ - 461, + 466, { "id": [ - 5170, + 5454, "uuid!" ] } ], "draft_game_picks_stream": [ - 461, + 466, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 494, + 499, "[draft_game_picks_stream_cursor_input]!" ], "where": [ - 472 + 477 ] } ], "draft_game_players": [ - 506, + 511, { "distinct_on": [ - 529, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 527, + 532, "[draft_game_players_order_by!]" ], "where": [ - 517 + 522 ] } ], "draft_game_players_aggregate": [ - 507, + 512, { "distinct_on": [ - 529, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 527, + 532, "[draft_game_players_order_by!]" ], "where": [ - 517 + 522 ] } ], "draft_game_players_by_pk": [ - 506, + 511, { "draft_game_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "draft_game_players_stream": [ - 506, + 511, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 539, + 544, "[draft_game_players_stream_cursor_input]!" ], "where": [ - 517 + 522 ] } ], "draft_games": [ - 551, + 556, { "distinct_on": [ - 575, + 580, "[draft_games_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 573, + 578, "[draft_games_order_by!]" ], "where": [ - 562 + 567 ] } ], "draft_games_aggregate": [ - 552, + 557, { "distinct_on": [ - 575, + 580, "[draft_games_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 573, + 578, "[draft_games_order_by!]" ], "where": [ - 562 + 567 ] } ], "draft_games_by_pk": [ - 551, + 556, { "id": [ - 5170, + 5454, "uuid!" ] } ], "draft_games_stream": [ - 551, + 556, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 585, + 590, "[draft_games_stream_cursor_input]!" ], "where": [ - 562 + 567 ] } ], "e_award_sources": [ - 597, + 602, { "distinct_on": [ - 611, + 616, "[e_award_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 609, + 614, "[e_award_sources_order_by!]" ], "where": [ - 600 + 605 ] } ], "e_award_sources_aggregate": [ - 598, + 603, { "distinct_on": [ - 611, + 616, "[e_award_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 609, + 614, "[e_award_sources_order_by!]" ], "where": [ - 600 + 605 ] } ], "e_award_sources_by_pk": [ - 597, + 602, { "value": [ - 80, + 84, "String!" ] } ], "e_award_sources_stream": [ - 597, + 602, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 613, + 618, "[e_award_sources_stream_cursor_input]!" ], "where": [ - 600 + 605 ] } ], "e_award_tiers": [ - 617, + 622, { "distinct_on": [ - 631, + 636, "[e_award_tiers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 629, + 634, "[e_award_tiers_order_by!]" ], "where": [ - 620 + 625 ] } ], "e_award_tiers_aggregate": [ - 618, + 623, { "distinct_on": [ - 631, + 636, "[e_award_tiers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 629, + 634, "[e_award_tiers_order_by!]" ], "where": [ - 620 + 625 ] } ], "e_award_tiers_by_pk": [ - 617, + 622, { "value": [ - 80, + 84, "String!" ] } ], "e_award_tiers_stream": [ - 617, + 622, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 633, + 638, "[e_award_tiers_stream_cursor_input]!" ], "where": [ - 620 + 625 ] } ], "e_check_in_settings": [ - 637, + 642, { "distinct_on": [ - 651, + 656, "[e_check_in_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 649, + 654, "[e_check_in_settings_order_by!]" ], "where": [ - 640 + 645 ] } ], "e_check_in_settings_aggregate": [ - 638, + 643, { "distinct_on": [ - 651, + 656, "[e_check_in_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 649, + 654, "[e_check_in_settings_order_by!]" ], "where": [ - 640 + 645 ] } ], "e_check_in_settings_by_pk": [ - 637, + 642, { "value": [ - 80, + 84, "String!" ] } ], "e_check_in_settings_stream": [ - 637, + 642, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 653, + 658, "[e_check_in_settings_stream_cursor_input]!" ], "where": [ - 640 + 645 ] } ], "e_draft_game_captain_selection": [ - 657, + 662, { "distinct_on": [ - 672, + 677, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 670, + 675, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 660 + 665 ] } ], "e_draft_game_captain_selection_aggregate": [ - 658, + 663, { "distinct_on": [ - 672, + 677, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 670, + 675, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 660 + 665 ] } ], "e_draft_game_captain_selection_by_pk": [ - 657, + 662, { "value": [ - 80, + 84, "String!" ] } ], "e_draft_game_captain_selection_stream": [ - 657, + 662, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 674, + 679, "[e_draft_game_captain_selection_stream_cursor_input]!" ], "where": [ - 660 + 665 ] } ], "e_draft_game_draft_order": [ - 678, + 683, { "distinct_on": [ - 693, + 698, "[e_draft_game_draft_order_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 691, + 696, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 681 + 686 ] } ], "e_draft_game_draft_order_aggregate": [ - 679, + 684, { "distinct_on": [ - 693, + 698, "[e_draft_game_draft_order_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 691, + 696, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 681 + 686 ] } ], "e_draft_game_draft_order_by_pk": [ - 678, + 683, { "value": [ - 80, + 84, "String!" ] } ], "e_draft_game_draft_order_stream": [ - 678, + 683, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 695, + 700, "[e_draft_game_draft_order_stream_cursor_input]!" ], "where": [ - 681 + 686 ] } ], "e_draft_game_mode": [ - 699, + 704, { "distinct_on": [ - 714, + 719, "[e_draft_game_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 712, + 717, "[e_draft_game_mode_order_by!]" ], "where": [ - 702 + 707 ] } ], "e_draft_game_mode_aggregate": [ - 700, + 705, { "distinct_on": [ - 714, + 719, "[e_draft_game_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 712, + 717, "[e_draft_game_mode_order_by!]" ], "where": [ - 702 + 707 ] } ], "e_draft_game_mode_by_pk": [ - 699, + 704, { "value": [ - 80, + 84, "String!" ] } ], "e_draft_game_mode_stream": [ - 699, + 704, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 716, + 721, "[e_draft_game_mode_stream_cursor_input]!" ], "where": [ - 702 + 707 ] } ], "e_draft_game_player_status": [ - 720, + 725, { "distinct_on": [ - 735, + 740, "[e_draft_game_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 733, + 738, "[e_draft_game_player_status_order_by!]" ], "where": [ - 723 + 728 ] } ], "e_draft_game_player_status_aggregate": [ - 721, + 726, { "distinct_on": [ - 735, + 740, "[e_draft_game_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 733, + 738, "[e_draft_game_player_status_order_by!]" ], "where": [ - 723 + 728 ] } ], "e_draft_game_player_status_by_pk": [ - 720, + 725, { "value": [ - 80, + 84, "String!" ] } ], "e_draft_game_player_status_stream": [ - 720, + 725, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 737, + 742, "[e_draft_game_player_status_stream_cursor_input]!" ], "where": [ - 723 + 728 ] } ], "e_draft_game_status": [ - 741, + 746, { "distinct_on": [ - 756, + 761, "[e_draft_game_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 754, + 759, "[e_draft_game_status_order_by!]" ], "where": [ - 744 + 749 ] } ], "e_draft_game_status_aggregate": [ - 742, + 747, { "distinct_on": [ - 756, + 761, "[e_draft_game_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 754, + 759, "[e_draft_game_status_order_by!]" ], "where": [ - 744 + 749 ] } ], "e_draft_game_status_by_pk": [ - 741, + 746, { "value": [ - 80, + 84, "String!" ] } ], "e_draft_game_status_stream": [ - 741, + 746, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 758, + 763, "[e_draft_game_status_stream_cursor_input]!" ], "where": [ - 744 + 749 ] } ], "e_event_media_access": [ - 762, + 767, { "distinct_on": [ - 776, + 781, "[e_event_media_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 774, + 779, "[e_event_media_access_order_by!]" ], "where": [ - 765 + 770 ] } ], "e_event_media_access_aggregate": [ - 763, + 768, { "distinct_on": [ - 776, + 781, "[e_event_media_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 774, + 779, "[e_event_media_access_order_by!]" ], "where": [ - 765 + 770 ] } ], "e_event_media_access_by_pk": [ - 762, + 767, { "value": [ - 80, + 84, "String!" ] } ], "e_event_media_access_stream": [ - 762, + 767, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 778, + 783, "[e_event_media_access_stream_cursor_input]!" ], "where": [ - 765 + 770 ] } ], "e_event_visibility": [ - 782, + 787, { "distinct_on": [ - 796, + 801, "[e_event_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 794, + 799, "[e_event_visibility_order_by!]" ], "where": [ - 785 + 790 ] } ], "e_event_visibility_aggregate": [ - 783, + 788, { "distinct_on": [ - 796, + 801, "[e_event_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 794, + 799, "[e_event_visibility_order_by!]" ], "where": [ - 785 + 790 ] } ], "e_event_visibility_by_pk": [ - 782, + 787, { "value": [ - 80, + 84, "String!" ] } ], "e_event_visibility_stream": [ - 782, + 787, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 798, + 803, "[e_event_visibility_stream_cursor_input]!" ], "where": [ - 785 + 790 ] } ], "e_friend_status": [ - 802, + 807, { "distinct_on": [ - 817, + 822, "[e_friend_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 815, + 820, "[e_friend_status_order_by!]" ], "where": [ - 805 + 810 ] } ], "e_friend_status_aggregate": [ - 803, + 808, { "distinct_on": [ - 817, + 822, "[e_friend_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 815, + 820, "[e_friend_status_order_by!]" ], "where": [ - 805 + 810 ] } ], "e_friend_status_by_pk": [ - 802, + 807, { "value": [ - 80, + 84, "String!" ] } ], "e_friend_status_stream": [ - 802, + 807, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 819, + 824, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 805 + 810 ] } ], "e_game_cfg_types": [ - 823, + 828, { "distinct_on": [ - 837, + 842, "[e_game_cfg_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 835, + 840, "[e_game_cfg_types_order_by!]" ], "where": [ - 826 + 831 ] } ], "e_game_cfg_types_aggregate": [ - 824, + 829, { "distinct_on": [ - 837, + 842, "[e_game_cfg_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 835, + 840, "[e_game_cfg_types_order_by!]" ], "where": [ - 826 + 831 ] } ], "e_game_cfg_types_by_pk": [ - 823, + 828, { "value": [ - 80, + 84, "String!" ] } ], "e_game_cfg_types_stream": [ - 823, + 828, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 839, + 844, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 826 + 831 + ] + } + ], + "e_game_plugin_channels": [ + 848, + { + "distinct_on": [ + 862, + "[e_game_plugin_channels_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 860, + "[e_game_plugin_channels_order_by!]" + ], + "where": [ + 851 + ] + } + ], + "e_game_plugin_channels_aggregate": [ + 849, + { + "distinct_on": [ + 862, + "[e_game_plugin_channels_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 860, + "[e_game_plugin_channels_order_by!]" + ], + "where": [ + 851 + ] + } + ], + "e_game_plugin_channels_by_pk": [ + 848, + { + "value": [ + 84, + "String!" + ] + } + ], + "e_game_plugin_channels_stream": [ + 848, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 864, + "[e_game_plugin_channels_stream_cursor_input]!" + ], + "where": [ + 851 + ] + } + ], + "e_game_plugin_install_statuses": [ + 868, + { + "distinct_on": [ + 882, + "[e_game_plugin_install_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 880, + "[e_game_plugin_install_statuses_order_by!]" + ], + "where": [ + 871 + ] + } + ], + "e_game_plugin_install_statuses_aggregate": [ + 869, + { + "distinct_on": [ + 882, + "[e_game_plugin_install_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 880, + "[e_game_plugin_install_statuses_order_by!]" + ], + "where": [ + 871 + ] + } + ], + "e_game_plugin_install_statuses_by_pk": [ + 868, + { + "value": [ + 84, + "String!" + ] + } + ], + "e_game_plugin_install_statuses_stream": [ + 868, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 884, + "[e_game_plugin_install_statuses_stream_cursor_input]!" + ], + "where": [ + 871 + ] + } + ], + "e_game_plugin_kinds": [ + 888, + { + "distinct_on": [ + 902, + "[e_game_plugin_kinds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 900, + "[e_game_plugin_kinds_order_by!]" + ], + "where": [ + 891 + ] + } + ], + "e_game_plugin_kinds_aggregate": [ + 889, + { + "distinct_on": [ + 902, + "[e_game_plugin_kinds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 900, + "[e_game_plugin_kinds_order_by!]" + ], + "where": [ + 891 + ] + } + ], + "e_game_plugin_kinds_by_pk": [ + 888, + { + "value": [ + 84, + "String!" + ] + } + ], + "e_game_plugin_kinds_stream": [ + 888, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 904, + "[e_game_plugin_kinds_stream_cursor_input]!" + ], + "where": [ + 891 ] } ], "e_game_server_node_statuses": [ - 843, + 908, { "distinct_on": [ - 858, + 923, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 856, + 921, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 846 + 911 ] } ], "e_game_server_node_statuses_aggregate": [ - 844, + 909, { "distinct_on": [ - 858, + 923, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 856, + 921, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 846 + 911 ] } ], "e_game_server_node_statuses_by_pk": [ - 843, + 908, { "value": [ - 80, + 84, "String!" ] } ], "e_game_server_node_statuses_stream": [ - 843, + 908, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 860, + 925, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 846 + 911 ] } ], "e_league_movement_types": [ - 864, + 929, { "distinct_on": [ - 879, + 944, "[e_league_movement_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 877, + 942, "[e_league_movement_types_order_by!]" ], "where": [ - 867 + 932 ] } ], "e_league_movement_types_aggregate": [ - 865, + 930, { "distinct_on": [ - 879, + 944, "[e_league_movement_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 877, + 942, "[e_league_movement_types_order_by!]" ], "where": [ - 867 + 932 ] } ], "e_league_movement_types_by_pk": [ - 864, + 929, { "value": [ - 80, + 84, "String!" ] } ], "e_league_movement_types_stream": [ - 864, + 929, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 881, + 946, "[e_league_movement_types_stream_cursor_input]!" ], "where": [ - 867 + 932 ] } ], "e_league_proposal_statuses": [ - 885, + 950, { "distinct_on": [ - 900, + 965, "[e_league_proposal_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 898, + 963, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 888 + 953 ] } ], "e_league_proposal_statuses_aggregate": [ - 886, + 951, { "distinct_on": [ - 900, + 965, "[e_league_proposal_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 898, + 963, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 888 + 953 ] } ], "e_league_proposal_statuses_by_pk": [ - 885, + 950, { "value": [ - 80, + 84, "String!" ] } ], "e_league_proposal_statuses_stream": [ - 885, + 950, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 902, + 967, "[e_league_proposal_statuses_stream_cursor_input]!" ], "where": [ - 888 + 953 ] } ], "e_league_registration_statuses": [ - 906, + 971, { "distinct_on": [ - 921, + 986, "[e_league_registration_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 919, + 984, "[e_league_registration_statuses_order_by!]" ], "where": [ - 909 + 974 ] } ], "e_league_registration_statuses_aggregate": [ - 907, + 972, { "distinct_on": [ - 921, + 986, "[e_league_registration_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 919, + 984, "[e_league_registration_statuses_order_by!]" ], "where": [ - 909 + 974 ] } ], "e_league_registration_statuses_by_pk": [ - 906, + 971, { "value": [ - 80, + 84, "String!" ] } ], "e_league_registration_statuses_stream": [ - 906, + 971, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 923, + 988, "[e_league_registration_statuses_stream_cursor_input]!" ], "where": [ - 909 + 974 ] } ], "e_league_season_statuses": [ - 927, + 992, { "distinct_on": [ - 942, + 1007, "[e_league_season_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 940, + 1005, "[e_league_season_statuses_order_by!]" ], "where": [ - 930 + 995 ] } ], "e_league_season_statuses_aggregate": [ - 928, + 993, { "distinct_on": [ - 942, + 1007, "[e_league_season_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 940, + 1005, "[e_league_season_statuses_order_by!]" ], "where": [ - 930 + 995 ] } ], "e_league_season_statuses_by_pk": [ - 927, + 992, { "value": [ - 80, + 84, "String!" ] } ], "e_league_season_statuses_stream": [ - 927, + 992, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 944, + 1009, "[e_league_season_statuses_stream_cursor_input]!" ], "where": [ - 930 + 995 ] } ], "e_lobby_access": [ - 948, + 1013, { "distinct_on": [ - 963, + 1028, "[e_lobby_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 961, + 1026, "[e_lobby_access_order_by!]" ], "where": [ - 951 + 1016 ] } ], "e_lobby_access_aggregate": [ - 949, + 1014, { "distinct_on": [ - 963, + 1028, "[e_lobby_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 961, + 1026, "[e_lobby_access_order_by!]" ], "where": [ - 951 + 1016 ] } ], "e_lobby_access_by_pk": [ - 948, + 1013, { "value": [ - 80, + 84, "String!" ] } ], "e_lobby_access_stream": [ - 948, + 1013, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 965, + 1030, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 951 + 1016 ] } ], "e_lobby_player_status": [ - 969, + 1034, { "distinct_on": [ - 983, + 1048, "[e_lobby_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 981, + 1046, "[e_lobby_player_status_order_by!]" ], "where": [ - 972 + 1037 ] } ], "e_lobby_player_status_aggregate": [ - 970, + 1035, { "distinct_on": [ - 983, + 1048, "[e_lobby_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 981, + 1046, "[e_lobby_player_status_order_by!]" ], "where": [ - 972 + 1037 ] } ], "e_lobby_player_status_by_pk": [ - 969, + 1034, { "value": [ - 80, + 84, "String!" ] } ], "e_lobby_player_status_stream": [ - 969, + 1034, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 985, + 1050, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 972 + 1037 ] } ], "e_map_pool_types": [ - 989, + 1054, { "distinct_on": [ - 1004, + 1069, "[e_map_pool_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1002, + 1067, "[e_map_pool_types_order_by!]" ], "where": [ - 992 + 1057 ] } ], "e_map_pool_types_aggregate": [ - 990, + 1055, { "distinct_on": [ - 1004, + 1069, "[e_map_pool_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1002, + 1067, "[e_map_pool_types_order_by!]" ], "where": [ - 992 + 1057 ] } ], "e_map_pool_types_by_pk": [ - 989, + 1054, { "value": [ - 80, + 84, "String!" ] } ], "e_map_pool_types_stream": [ - 989, + 1054, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1006, + 1071, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 992 + 1057 ] } ], "e_match_clip_visibility": [ - 1010, + 1075, { "distinct_on": [ - 1024, + 1089, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1022, + 1087, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1013 + 1078 ] } ], "e_match_clip_visibility_aggregate": [ - 1011, + 1076, { "distinct_on": [ - 1024, + 1089, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1022, + 1087, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1013 + 1078 ] } ], "e_match_clip_visibility_by_pk": [ - 1010, + 1075, { "value": [ - 80, + 84, "String!" ] } ], "e_match_clip_visibility_stream": [ - 1010, + 1075, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1026, + 1091, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 1013 + 1078 ] } ], "e_match_map_status": [ - 1030, + 1095, { "distinct_on": [ - 1045, + 1110, "[e_match_map_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1043, + 1108, "[e_match_map_status_order_by!]" ], "where": [ - 1033 + 1098 ] } ], "e_match_map_status_aggregate": [ - 1031, + 1096, { "distinct_on": [ - 1045, + 1110, "[e_match_map_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1043, + 1108, "[e_match_map_status_order_by!]" ], "where": [ - 1033 + 1098 ] } ], "e_match_map_status_by_pk": [ - 1030, + 1095, { "value": [ - 80, + 84, "String!" ] } ], "e_match_map_status_stream": [ - 1030, + 1095, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1047, + 1112, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 1033 + 1098 ] } ], "e_match_mode": [ - 1051, + 1116, { "distinct_on": [ - 1065, + 1130, "[e_match_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1063, + 1128, "[e_match_mode_order_by!]" ], "where": [ - 1054 + 1119 ] } ], "e_match_mode_aggregate": [ - 1052, + 1117, { "distinct_on": [ - 1065, + 1130, "[e_match_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1063, + 1128, "[e_match_mode_order_by!]" ], "where": [ - 1054 + 1119 ] } ], "e_match_mode_by_pk": [ - 1051, + 1116, { "value": [ - 80, + 84, "String!" ] } ], "e_match_mode_stream": [ - 1051, + 1116, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1067, + 1132, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 1054 + 1119 ] } ], "e_match_party_sources": [ - 1071, + 1136, { "distinct_on": [ - 1085, + 1150, "[e_match_party_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1083, + 1148, "[e_match_party_sources_order_by!]" ], "where": [ - 1074 + 1139 ] } ], "e_match_party_sources_aggregate": [ - 1072, + 1137, { "distinct_on": [ - 1085, + 1150, "[e_match_party_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1083, + 1148, "[e_match_party_sources_order_by!]" ], "where": [ - 1074 + 1139 ] } ], "e_match_party_sources_by_pk": [ - 1071, + 1136, { "value": [ - 80, + 84, "String!" ] } ], "e_match_party_sources_stream": [ - 1071, + 1136, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1087, + 1152, "[e_match_party_sources_stream_cursor_input]!" ], "where": [ - 1074 + 1139 ] } ], "e_match_status": [ - 1091, + 1156, { "distinct_on": [ - 1106, + 1171, "[e_match_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1104, + 1169, "[e_match_status_order_by!]" ], "where": [ - 1094 + 1159 ] } ], "e_match_status_aggregate": [ - 1092, + 1157, { "distinct_on": [ - 1106, + 1171, "[e_match_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1104, + 1169, "[e_match_status_order_by!]" ], "where": [ - 1094 + 1159 ] } ], "e_match_status_by_pk": [ - 1091, + 1156, { "value": [ - 80, + 84, "String!" ] } ], "e_match_status_stream": [ - 1091, + 1156, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1108, + 1173, "[e_match_status_stream_cursor_input]!" ], "where": [ - 1094 + 1159 ] } ], "e_match_types": [ - 1112, + 1177, { "distinct_on": [ - 1127, + 1192, "[e_match_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1125, + 1190, "[e_match_types_order_by!]" ], "where": [ - 1115 + 1180 ] } ], "e_match_types_aggregate": [ - 1113, + 1178, { "distinct_on": [ - 1127, + 1192, "[e_match_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1125, + 1190, "[e_match_types_order_by!]" ], "where": [ - 1115 + 1180 ] } ], "e_match_types_by_pk": [ - 1112, + 1177, { "value": [ - 80, + 84, "String!" ] } ], "e_match_types_stream": [ - 1112, + 1177, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1129, + 1194, "[e_match_types_stream_cursor_input]!" ], "where": [ - 1115 + 1180 ] } ], "e_notification_types": [ - 1133, + 1198, { "distinct_on": [ - 1147, + 1212, "[e_notification_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1145, + 1210, "[e_notification_types_order_by!]" ], "where": [ - 1136 + 1201 ] } ], "e_notification_types_aggregate": [ - 1134, + 1199, { "distinct_on": [ - 1147, + 1212, "[e_notification_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1145, + 1210, "[e_notification_types_order_by!]" ], "where": [ - 1136 + 1201 ] } ], "e_notification_types_by_pk": [ - 1133, + 1198, { "value": [ - 80, + 84, "String!" ] } ], "e_notification_types_stream": [ - 1133, + 1198, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1149, + 1214, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 1136 + 1201 ] } ], "e_objective_types": [ - 1153, + 1218, { "distinct_on": [ - 1167, + 1232, "[e_objective_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1165, + 1230, "[e_objective_types_order_by!]" ], "where": [ - 1156 + 1221 ] } ], "e_objective_types_aggregate": [ - 1154, + 1219, { "distinct_on": [ - 1167, + 1232, "[e_objective_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1165, + 1230, "[e_objective_types_order_by!]" ], "where": [ - 1156 + 1221 ] } ], "e_objective_types_by_pk": [ - 1153, + 1218, { "value": [ - 80, + 84, "String!" ] } ], "e_objective_types_stream": [ - 1153, + 1218, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1169, + 1234, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 1156 + 1221 ] } ], "e_player_roles": [ - 1173, + 1238, { "distinct_on": [ - 1187, + 1252, "[e_player_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1185, + 1250, "[e_player_roles_order_by!]" ], "where": [ - 1176 + 1241 ] } ], "e_player_roles_aggregate": [ - 1174, + 1239, { "distinct_on": [ - 1187, + 1252, "[e_player_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1185, + 1250, "[e_player_roles_order_by!]" ], "where": [ - 1176 + 1241 ] } ], "e_player_roles_by_pk": [ - 1173, + 1238, { "value": [ - 80, + 84, "String!" ] } ], "e_player_roles_stream": [ - 1173, + 1238, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1189, + 1254, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 1176 + 1241 ] } ], "e_plugin_runtimes": [ - 1193, + 1258, { "distinct_on": [ - 1207, + 1272, "[e_plugin_runtimes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1205, + 1270, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1196 + 1261 ] } ], "e_plugin_runtimes_aggregate": [ - 1194, + 1259, { "distinct_on": [ - 1207, + 1272, "[e_plugin_runtimes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1205, + 1270, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1196 + 1261 ] } ], "e_plugin_runtimes_by_pk": [ - 1193, + 1258, { "value": [ - 80, + 84, "String!" ] } ], "e_plugin_runtimes_stream": [ - 1193, + 1258, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1209, + 1274, "[e_plugin_runtimes_stream_cursor_input]!" ], "where": [ - 1196 + 1261 ] } ], "e_ready_settings": [ - 1213, + 1278, { "distinct_on": [ - 1227, + 1292, "[e_ready_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1225, + 1290, "[e_ready_settings_order_by!]" ], "where": [ - 1216 + 1281 ] } ], "e_ready_settings_aggregate": [ - 1214, + 1279, { "distinct_on": [ - 1227, + 1292, "[e_ready_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1225, + 1290, "[e_ready_settings_order_by!]" ], "where": [ - 1216 + 1281 ] } ], "e_ready_settings_by_pk": [ - 1213, + 1278, { "value": [ - 80, + 84, "String!" ] } ], "e_ready_settings_stream": [ - 1213, + 1278, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1229, + 1294, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 1216 + 1281 ] } ], "e_sanction_types": [ - 1233, + 1298, { "distinct_on": [ - 1248, + 1313, "[e_sanction_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1246, + 1311, "[e_sanction_types_order_by!]" ], "where": [ - 1236 + 1301 ] } ], "e_sanction_types_aggregate": [ - 1234, + 1299, { "distinct_on": [ - 1248, + 1313, "[e_sanction_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1246, + 1311, "[e_sanction_types_order_by!]" ], "where": [ - 1236 + 1301 ] } ], "e_sanction_types_by_pk": [ - 1233, + 1298, { "value": [ - 80, + 84, "String!" ] } ], "e_sanction_types_stream": [ - 1233, + 1298, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1250, + 1315, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 1236 + 1301 ] } ], "e_scrim_request_statuses": [ - 1254, + 1319, { "distinct_on": [ - 1268, + 1333, "[e_scrim_request_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1266, + 1331, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1257 + 1322 ] } ], "e_scrim_request_statuses_aggregate": [ - 1255, + 1320, { "distinct_on": [ - 1268, + 1333, "[e_scrim_request_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1266, + 1331, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1257 + 1322 ] } ], "e_scrim_request_statuses_by_pk": [ - 1254, + 1319, { "value": [ - 80, + 84, "String!" ] } ], "e_scrim_request_statuses_stream": [ - 1254, + 1319, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1270, + 1335, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 1257 + 1322 ] } ], "e_server_types": [ - 1274, + 1339, { "distinct_on": [ - 1288, + 1353, "[e_server_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1286, + 1351, "[e_server_types_order_by!]" ], "where": [ - 1277 + 1342 ] } ], "e_server_types_aggregate": [ - 1275, + 1340, { "distinct_on": [ - 1288, + 1353, "[e_server_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1286, + 1351, "[e_server_types_order_by!]" ], "where": [ - 1277 + 1342 ] } ], "e_server_types_by_pk": [ - 1274, + 1339, { "value": [ - 80, + 84, "String!" ] } ], "e_server_types_stream": [ - 1274, + 1339, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1290, + 1355, "[e_server_types_stream_cursor_input]!" ], "where": [ - 1277 + 1342 ] } ], "e_sides": [ - 1294, + 1359, { "distinct_on": [ - 1308, + 1373, "[e_sides_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1306, + 1371, "[e_sides_order_by!]" ], "where": [ - 1297 + 1362 ] } ], "e_sides_aggregate": [ - 1295, + 1360, { "distinct_on": [ - 1308, + 1373, "[e_sides_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1306, + 1371, "[e_sides_order_by!]" ], "where": [ - 1297 + 1362 ] } ], "e_sides_by_pk": [ - 1294, + 1359, { "value": [ - 80, + 84, "String!" ] } ], "e_sides_stream": [ - 1294, + 1359, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1310, + 1375, "[e_sides_stream_cursor_input]!" ], "where": [ - 1297 + 1362 ] } ], "e_system_alert_types": [ - 1314, + 1379, { "distinct_on": [ - 1328, + 1393, "[e_system_alert_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1326, + 1391, "[e_system_alert_types_order_by!]" ], "where": [ - 1317 + 1382 ] } ], "e_system_alert_types_aggregate": [ - 1315, + 1380, { "distinct_on": [ - 1328, + 1393, "[e_system_alert_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1326, + 1391, "[e_system_alert_types_order_by!]" ], "where": [ - 1317 + 1382 ] } ], "e_system_alert_types_by_pk": [ - 1314, + 1379, { "value": [ - 80, + 84, "String!" ] } ], "e_system_alert_types_stream": [ - 1314, + 1379, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1330, + 1395, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 1317 + 1382 ] } ], "e_team_roles": [ - 1334, + 1399, { "distinct_on": [ - 1349, + 1414, "[e_team_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1347, + 1412, "[e_team_roles_order_by!]" ], "where": [ - 1337 + 1402 ] } ], "e_team_roles_aggregate": [ - 1335, + 1400, { "distinct_on": [ - 1349, + 1414, "[e_team_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1347, + 1412, "[e_team_roles_order_by!]" ], "where": [ - 1337 + 1402 ] } ], "e_team_roles_by_pk": [ - 1334, + 1399, { "value": [ - 80, + 84, "String!" ] } ], "e_team_roles_stream": [ - 1334, + 1399, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1351, + 1416, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 1337 + 1402 ] } ], "e_team_roster_statuses": [ - 1355, + 1420, { "distinct_on": [ - 1369, + 1434, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1367, + 1432, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1358 + 1423 ] } ], "e_team_roster_statuses_aggregate": [ - 1356, + 1421, { "distinct_on": [ - 1369, + 1434, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1367, + 1432, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1358 + 1423 ] } ], "e_team_roster_statuses_by_pk": [ - 1355, + 1420, { "value": [ - 80, + 84, "String!" ] } ], "e_team_roster_statuses_stream": [ - 1355, + 1420, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1371, + 1436, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 1358 + 1423 ] } ], "e_timeout_settings": [ - 1375, + 1440, { "distinct_on": [ - 1389, + 1454, "[e_timeout_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1387, + 1452, "[e_timeout_settings_order_by!]" ], "where": [ - 1378 + 1443 ] } ], "e_timeout_settings_aggregate": [ - 1376, + 1441, { "distinct_on": [ - 1389, + 1454, "[e_timeout_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1387, + 1452, "[e_timeout_settings_order_by!]" ], "where": [ - 1378 + 1443 ] } ], "e_timeout_settings_by_pk": [ - 1375, + 1440, { "value": [ - 80, + 84, "String!" ] } ], "e_timeout_settings_stream": [ - 1375, + 1440, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1391, + 1456, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 1378 + 1443 ] } ], "e_tournament_categories": [ - 1395, + 1460, { "distinct_on": [ - 1410, + 1475, "[e_tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1408, + 1473, "[e_tournament_categories_order_by!]" ], "where": [ - 1398 + 1463 ] } ], "e_tournament_categories_aggregate": [ - 1396, + 1461, { "distinct_on": [ - 1410, + 1475, "[e_tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1408, + 1473, "[e_tournament_categories_order_by!]" ], "where": [ - 1398 + 1463 ] } ], "e_tournament_categories_by_pk": [ - 1395, + 1460, { "value": [ - 80, + 84, "String!" ] } ], "e_tournament_categories_stream": [ - 1395, + 1460, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1412, + 1477, "[e_tournament_categories_stream_cursor_input]!" ], "where": [ - 1398 + 1463 ] } ], "e_tournament_stage_types": [ - 1416, + 1481, { "distinct_on": [ - 1431, + 1496, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1429, + 1494, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1419 + 1484 ] } ], "e_tournament_stage_types_aggregate": [ - 1417, + 1482, { "distinct_on": [ - 1431, + 1496, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1429, + 1494, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1419 + 1484 ] } ], "e_tournament_stage_types_by_pk": [ - 1416, + 1481, { "value": [ - 80, + 84, "String!" ] } ], "e_tournament_stage_types_stream": [ - 1416, + 1481, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1433, + 1498, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 1419 + 1484 ] } ], "e_tournament_status": [ - 1437, + 1502, { "distinct_on": [ - 1452, + 1517, "[e_tournament_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1450, + 1515, "[e_tournament_status_order_by!]" ], "where": [ - 1440 + 1505 ] } ], "e_tournament_status_aggregate": [ - 1438, + 1503, { "distinct_on": [ - 1452, + 1517, "[e_tournament_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1450, + 1515, "[e_tournament_status_order_by!]" ], "where": [ - 1440 + 1505 ] } ], "e_tournament_status_by_pk": [ - 1437, + 1502, { "value": [ - 80, + 84, "String!" ] } ], "e_tournament_status_stream": [ - 1437, + 1502, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1454, + 1519, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1440 + 1505 ] } ], "e_utility_types": [ - 1458, + 1523, { "distinct_on": [ - 1472, + 1537, "[e_utility_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1470, + 1535, "[e_utility_types_order_by!]" ], "where": [ - 1461 + 1526 ] } ], "e_utility_types_aggregate": [ - 1459, + 1524, { "distinct_on": [ - 1472, + 1537, "[e_utility_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1470, + 1535, "[e_utility_types_order_by!]" ], "where": [ - 1461 + 1526 ] } ], "e_utility_types_by_pk": [ - 1458, + 1523, { "value": [ - 80, + 84, "String!" ] } ], "e_utility_types_stream": [ - 1458, + 1523, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1474, + 1539, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1461 + 1526 ] } ], "e_veto_pick_types": [ - 1478, + 1543, { "distinct_on": [ - 1492, + 1557, "[e_veto_pick_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1490, + 1555, "[e_veto_pick_types_order_by!]" ], "where": [ - 1481 + 1546 ] } ], "e_veto_pick_types_aggregate": [ - 1479, + 1544, { "distinct_on": [ - 1492, + 1557, "[e_veto_pick_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1490, + 1555, "[e_veto_pick_types_order_by!]" ], "where": [ - 1481 + 1546 ] } ], "e_veto_pick_types_by_pk": [ - 1478, + 1543, { "value": [ - 80, + 84, "String!" ] } ], "e_veto_pick_types_stream": [ - 1478, + 1543, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1494, + 1559, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1481 + 1546 ] } ], "e_winning_reasons": [ - 1498, + 1563, { "distinct_on": [ - 1512, + 1577, "[e_winning_reasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1510, + 1575, "[e_winning_reasons_order_by!]" ], "where": [ - 1501 + 1566 ] } ], "e_winning_reasons_aggregate": [ - 1499, + 1564, { "distinct_on": [ - 1512, + 1577, "[e_winning_reasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1510, + 1575, "[e_winning_reasons_order_by!]" ], "where": [ - 1501 + 1566 ] } ], "e_winning_reasons_by_pk": [ - 1498, + 1563, { "value": [ - 80, + 84, "String!" ] } ], "e_winning_reasons_stream": [ - 1498, + 1563, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1514, + 1579, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1501 + 1566 ] } ], "event_match_links": [ - 1518, + 1583, { "distinct_on": [ - 1530, + 1595, "[event_match_links_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1528, + 1593, "[event_match_links_order_by!]" ], "where": [ - 1521 + 1586 ] } ], "event_match_links_aggregate": [ - 1519, + 1584, { "distinct_on": [ - 1530, + 1595, "[event_match_links_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1528, + 1593, "[event_match_links_order_by!]" ], "where": [ - 1521 + 1586 ] } ], "event_match_links_by_pk": [ - 1518, + 1583, { "event_id": [ - 5170, + 5454, "uuid!" ], "match_id": [ - 5170, + 5454, "uuid!" ] } ], "event_match_links_stream": [ - 1518, + 1583, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1532, + 1597, "[event_match_links_stream_cursor_input]!" ], "where": [ - 1521 + 1586 ] } ], "event_media": [ - 1536, + 1601, { "distinct_on": [ - 1599, + 1664, "[event_media_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1556, + 1621, "[event_media_order_by!]" ], "where": [ - 1545 + 1610 ] } ], "event_media_aggregate": [ - 1537, + 1602, { "distinct_on": [ - 1599, + 1664, "[event_media_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1556, + 1621, "[event_media_order_by!]" ], "where": [ - 1545 + 1610 ] } ], "event_media_by_pk": [ - 1536, + 1601, { "id": [ - 5170, + 5454, "uuid!" ] } ], "event_media_players": [ - 1558, + 1623, { "distinct_on": [ - 1579, + 1644, "[event_media_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1577, + 1642, "[event_media_players_order_by!]" ], "where": [ - 1567 + 1632 ] } ], "event_media_players_aggregate": [ - 1559, + 1624, { "distinct_on": [ - 1579, + 1644, "[event_media_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1577, + 1642, "[event_media_players_order_by!]" ], "where": [ - 1567 + 1632 ] } ], "event_media_players_by_pk": [ - 1558, + 1623, { "media_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "event_media_players_stream": [ - 1558, + 1623, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1587, + 1652, "[event_media_players_stream_cursor_input]!" ], "where": [ - 1567 + 1632 ] } ], "event_media_stream": [ - 1536, + 1601, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1607, + 1672, "[event_media_stream_cursor_input]!" ], "where": [ - 1545 + 1610 ] } ], "event_organizers": [ - 1619, + 1684, { "distinct_on": [ - 1640, + 1705, "[event_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1638, + 1703, "[event_organizers_order_by!]" ], "where": [ - 1628 + 1693 ] } ], "event_organizers_aggregate": [ - 1620, + 1685, { "distinct_on": [ - 1640, + 1705, "[event_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1638, + 1703, "[event_organizers_order_by!]" ], "where": [ - 1628 + 1693 ] } ], "event_organizers_by_pk": [ - 1619, + 1684, { "event_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "event_organizers_stream": [ - 1619, + 1684, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1648, + 1713, "[event_organizers_stream_cursor_input]!" ], "where": [ - 1628 + 1693 ] } ], "event_players": [ - 1660, + 1725, { "distinct_on": [ - 1681, + 1746, "[event_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1679, + 1744, "[event_players_order_by!]" ], "where": [ - 1669 + 1734 ] } ], "event_players_aggregate": [ - 1661, + 1726, { "distinct_on": [ - 1681, + 1746, "[event_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1679, + 1744, "[event_players_order_by!]" ], "where": [ - 1669 + 1734 ] } ], "event_players_by_pk": [ - 1660, + 1725, { "event_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "event_players_stream": [ - 1660, + 1725, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1689, + 1754, "[event_players_stream_cursor_input]!" ], "where": [ - 1669 + 1734 ] } ], "event_teams": [ - 1701, + 1766, { "distinct_on": [ - 1719, + 1784, "[event_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1717, + 1782, "[event_teams_order_by!]" ], "where": [ - 1708 + 1773 ] } ], "event_teams_aggregate": [ - 1702, + 1767, { "distinct_on": [ - 1719, + 1784, "[event_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1717, + 1782, "[event_teams_order_by!]" ], "where": [ - 1708 + 1773 ] } ], "event_teams_by_pk": [ - 1701, + 1766, { "event_id": [ - 5170, + 5454, "uuid!" ], "team_id": [ - 5170, + 5454, "uuid!" ] } ], "event_teams_stream": [ - 1701, + 1766, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1721, + 1786, "[event_teams_stream_cursor_input]!" ], "where": [ - 1708 + 1773 ] } ], "event_tournaments": [ - 1725, + 1790, { "distinct_on": [ - 1743, + 1808, "[event_tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1741, + 1806, "[event_tournaments_order_by!]" ], "where": [ - 1732 + 1797 ] } ], "event_tournaments_aggregate": [ - 1726, + 1791, { "distinct_on": [ - 1743, + 1808, "[event_tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1741, + 1806, "[event_tournaments_order_by!]" ], "where": [ - 1732 + 1797 ] } ], "event_tournaments_by_pk": [ - 1725, + 1790, { "event_id": [ - 5170, + 5454, "uuid!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "event_tournaments_stream": [ - 1725, + 1790, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1745, + 1810, "[event_tournaments_stream_cursor_input]!" ], "where": [ - 1732 + 1797 ] } ], "events": [ - 1749, + 1814, { "distinct_on": [ - 1764, + 1829, "[events_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1762, + 1827, "[events_order_by!]" ], "where": [ - 1753 + 1818 ] } ], "events_aggregate": [ - 1750, + 1815, { "distinct_on": [ - 1764, + 1829, "[events_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1762, + 1827, "[events_order_by!]" ], "where": [ - 1753 + 1818 ] } ], "events_by_pk": [ - 1749, + 1814, { "id": [ - 5170, + 5454, "uuid!" ] } ], "events_stream": [ - 1749, + 1814, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1769, + 1834, "[events_stream_cursor_input]!" ], "where": [ - 1753 + 1818 ] } ], "friends": [ - 1779, + 1844, { "distinct_on": [ - 1793, + 1858, "[friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1791, + 1856, "[friends_order_by!]" ], "where": [ - 1783 + 1848 ] } ], "friends_aggregate": [ - 1780, + 1845, { "distinct_on": [ - 1793, + 1858, "[friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1791, + 1856, "[friends_order_by!]" ], "where": [ - 1783 + 1848 ] } ], "friends_by_pk": [ - 1779, + 1844, { "other_player_steam_id": [ - 264, + 269, "bigint!" ], "player_steam_id": [ - 264, + 269, "bigint!" ] } ], "friends_stream": [ - 1779, + 1844, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1798, + 1863, "[friends_stream_cursor_input]!" ], "where": [ - 1783 + 1848 + ] + } + ], + "game_mode_plugins": [ + 1871, + { + "distinct_on": [ + 1899, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1896, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1883 + ] + } + ], + "game_mode_plugins_aggregate": [ + 1872, + { + "distinct_on": [ + 1899, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1896, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1883 + ] + } + ], + "game_mode_plugins_by_pk": [ + 1871, + { + "game_mode_id": [ + 5454, + "uuid!" + ], + "plugin_slug": [ + 84, + "String!" + ] + } + ], + "game_mode_plugins_stream": [ + 1871, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1909, + "[game_mode_plugins_stream_cursor_input]!" + ], + "where": [ + 1883 + ] + } + ], + "game_modes": [ + 1921, + { + "distinct_on": [ + 1934, + "[game_modes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1932, + "[game_modes_order_by!]" + ], + "where": [ + 1924 + ] + } + ], + "game_modes_aggregate": [ + 1922, + { + "distinct_on": [ + 1934, + "[game_modes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1932, + "[game_modes_order_by!]" + ], + "where": [ + 1924 + ] + } + ], + "game_modes_by_pk": [ + 1921, + { + "id": [ + 5454, + "uuid!" + ] + } + ], + "game_modes_stream": [ + 1921, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1936, + "[game_modes_stream_cursor_input]!" + ], + "where": [ + 1924 + ] + } + ], + "game_plugin_installs": [ + 1940, + { + "distinct_on": [ + 1952, + "[game_plugin_installs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1950, + "[game_plugin_installs_order_by!]" + ], + "where": [ + 1943 + ] + } + ], + "game_plugin_installs_aggregate": [ + 1941, + { + "distinct_on": [ + 1952, + "[game_plugin_installs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1950, + "[game_plugin_installs_order_by!]" + ], + "where": [ + 1943 + ] + } + ], + "game_plugin_installs_by_pk": [ + 1940, + { + "plugin_slug": [ + 84, + "String!" + ] + } + ], + "game_plugin_installs_stream": [ + 1940, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1954, + "[game_plugin_installs_stream_cursor_input]!" + ], + "where": [ + 1943 + ] + } + ], + "game_plugin_versions": [ + 1958, + { + "distinct_on": [ + 1981, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1979, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 1969 + ] + } + ], + "game_plugin_versions_aggregate": [ + 1959, + { + "distinct_on": [ + 1981, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1979, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 1969 + ] + } + ], + "game_plugin_versions_by_pk": [ + 1958, + { + "plugin_slug": [ + 84, + "String!" + ], + "runtime": [ + 1263, + "e_plugin_runtimes_enum!" + ], + "version": [ + 84, + "String!" + ] + } + ], + "game_plugin_versions_stream": [ + 1958, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1991, + "[game_plugin_versions_stream_cursor_input]!" + ], + "where": [ + 1969 + ] + } + ], + "game_plugins": [ + 2003, + { + "distinct_on": [ + 2022, + "[game_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2019, + "[game_plugins_order_by!]" + ], + "where": [ + 2008 + ] + } + ], + "game_plugins_aggregate": [ + 2004, + { + "distinct_on": [ + 2022, + "[game_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2019, + "[game_plugins_order_by!]" + ], + "where": [ + 2008 + ] + } + ], + "game_plugins_by_pk": [ + 2003, + { + "slug": [ + 84, + "String!" + ] + } + ], + "game_plugins_stream": [ + 2003, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2027, + "[game_plugins_stream_cursor_input]!" + ], + "where": [ + 2008 + ] + } + ], + "game_server_node_plugins": [ + 2035, + { + "distinct_on": [ + 2055, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2053, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2044 + ] + } + ], + "game_server_node_plugins_aggregate": [ + 2036, + { + "distinct_on": [ + 2055, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2053, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2044 + ] + } + ], + "game_server_node_plugins_by_pk": [ + 2035, + { + "id": [ + 5454, + "uuid!" + ] + } + ], + "game_server_node_plugins_stream": [ + 2035, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2059, + "[game_server_node_plugins_stream_cursor_input]!" + ], + "where": [ + 2044 ] } ], "game_server_nodes": [ - 1806, + 2063, { "distinct_on": [ - 1835, + 2092, "[game_server_nodes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1832, + 2089, "[game_server_nodes_order_by!]" ], "where": [ - 1818 + 2075 ] } ], "game_server_nodes_aggregate": [ - 1807, + 2064, { "distinct_on": [ - 1835, + 2092, "[game_server_nodes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1832, + 2089, "[game_server_nodes_order_by!]" ], "where": [ - 1818 + 2075 ] } ], "game_server_nodes_by_pk": [ - 1806, + 2063, { "id": [ - 80, + 84, "String!" ] } ], "game_server_nodes_stream": [ - 1806, + 2063, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1845, + 2102, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1818 + 2075 ] } ], "game_versions": [ - 1857, + 2114, { "distinct_on": [ - 1877, + 2134, "[game_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1874, + 2131, "[game_versions_order_by!]" ], "where": [ - 1862 + 2119 ] } ], "game_versions_aggregate": [ - 1858, + 2115, { "distinct_on": [ - 1877, + 2134, "[game_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1874, + 2131, "[game_versions_order_by!]" ], "where": [ - 1862 + 2119 ] } ], "game_versions_by_pk": [ - 1857, + 2114, { "build_id": [ - 40, + 41, "Int!" ] } ], "game_versions_stream": [ - 1857, + 2114, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1882, + 2139, "[game_versions_stream_cursor_input]!" ], "where": [ - 1862 + 2119 ] } ], "gamedata_signature_validations": [ - 1890, + 2147, { "distinct_on": [ - 1909, + 2166, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1906, + 2163, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1895 + 2152 ] } ], "gamedata_signature_validations_aggregate": [ - 1891, + 2148, { "distinct_on": [ - 1909, + 2166, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1906, + 2163, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1895 + 2152 ] } ], "gamedata_signature_validations_by_pk": [ - 1890, + 2147, { "id": [ - 5170, + 5454, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1890, + 2147, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1914, + 2171, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1895 + 2152 ] } ], "get_event_leaderboard": [ - 1933, + 2190, { "args": [ - 1922, + 2179, "get_event_leaderboard_args!" ], "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "get_event_leaderboard_aggregate": [ - 1934, + 2191, { "args": [ - 1922, + 2179, "get_event_leaderboard_args!" ], "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "get_leaderboard": [ - 1933, + 2190, { "args": [ - 1923, + 2180, "get_leaderboard_args!" ], "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "get_leaderboard_aggregate": [ - 1934, + 2191, { "args": [ - 1923, + 2180, "get_leaderboard_args!" ], "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "get_league_season_leaderboard": [ - 1933, + 2190, { "args": [ - 1924, + 2181, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "get_league_season_leaderboard_aggregate": [ - 1934, + 2191, { "args": [ - 1924, + 2181, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "get_player_leaderboard_rank": [ - 3535, + 3814, { "args": [ - 1925, + 2182, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3546, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3545, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3818 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3536, + 3815, { "args": [ - 1925, + 2182, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3546, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3545, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3818 ] } ], "leaderboard_entries": [ - 1933, + 2190, { "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "leaderboard_entries_aggregate": [ - 1934, + 2191, { "distinct_on": [ - 1944, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1943, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2194 ] } ], "leaderboard_entries_stream": [ - 1933, + 2190, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1949, + 2206, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1937 + 2194 ] } ], "league_divisions": [ - 1957, + 2214, { "distinct_on": [ - 1972, + 2229, "[league_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1970, + 2227, "[league_divisions_order_by!]" ], "where": [ - 1961 + 2218 ] } ], "league_divisions_aggregate": [ - 1958, + 2215, { "distinct_on": [ - 1972, + 2229, "[league_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1970, + 2227, "[league_divisions_order_by!]" ], "where": [ - 1961 + 2218 ] } ], "league_divisions_by_pk": [ - 1957, + 2214, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_divisions_stream": [ - 1957, + 2214, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1977, + 2234, "[league_divisions_stream_cursor_input]!" ], "where": [ - 1961 + 2218 ] } ], "league_match_weeks": [ - 1985, + 2242, { "distinct_on": [ - 2006, + 2263, "[league_match_weeks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2004, + 2261, "[league_match_weeks_order_by!]" ], "where": [ - 1994 + 2251 ] } ], "league_match_weeks_aggregate": [ - 1986, + 2243, { "distinct_on": [ - 2006, + 2263, "[league_match_weeks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2004, + 2261, "[league_match_weeks_order_by!]" ], "where": [ - 1994 + 2251 ] } ], "league_match_weeks_by_pk": [ - 1985, + 2242, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_match_weeks_stream": [ - 1985, + 2242, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2014, + 2271, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 1994 + 2251 ] } ], "league_relegation_playoffs": [ - 2026, + 2283, { "distinct_on": [ - 2047, + 2304, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2045, + 2302, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2035 + 2292 ] } ], "league_relegation_playoffs_aggregate": [ - 2027, + 2284, { "distinct_on": [ - 2047, + 2304, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2045, + 2302, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2035 + 2292 ] } ], "league_relegation_playoffs_by_pk": [ - 2026, + 2283, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 2026, + 2283, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2055, + 2312, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 2035 + 2292 ] } ], "league_scheduling_proposals": [ - 2067, + 2324, { "distinct_on": [ - 2088, + 2345, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2086, + 2343, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2076 + 2333 ] } ], "league_scheduling_proposals_aggregate": [ - 2068, + 2325, { "distinct_on": [ - 2088, + 2345, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2086, + 2343, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2076 + 2333 ] } ], "league_scheduling_proposals_by_pk": [ - 2067, + 2324, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 2067, + 2324, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2096, + 2353, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 2076 + 2333 ] } ], "league_season_divisions": [ - 2108, + 2365, { "distinct_on": [ - 2127, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2125, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2372 ] } ], "league_season_divisions_aggregate": [ - 2109, + 2366, { "distinct_on": [ - 2127, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2125, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2372 ] } ], "league_season_divisions_by_pk": [ - 2108, + 2365, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_season_divisions_stream": [ - 2108, + 2365, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2129, + 2386, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 2115 + 2372 ] } ], "league_seasons": [ - 2133, + 2390, { "distinct_on": [ - 2153, + 2410, "[league_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2150, + 2407, "[league_seasons_order_by!]" ], "where": [ - 2138 + 2395 ] } ], "league_seasons_aggregate": [ - 2134, + 2391, { "distinct_on": [ - 2153, + 2410, "[league_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2150, + 2407, "[league_seasons_order_by!]" ], "where": [ - 2138 + 2395 ] } ], "league_seasons_by_pk": [ - 2133, + 2390, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_seasons_stream": [ - 2133, + 2390, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2158, + 2415, "[league_seasons_stream_cursor_input]!" ], "where": [ - 2138 + 2395 ] } ], "league_team_movements": [ - 2166, + 2423, { "distinct_on": [ - 2187, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2185, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2432 ] } ], "league_team_movements_aggregate": [ - 2167, + 2424, { "distinct_on": [ - 2187, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2185, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2432 ] } ], "league_team_movements_by_pk": [ - 2166, + 2423, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_team_movements_stream": [ - 2166, + 2423, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2195, + 2452, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 2175 + 2432 ] } ], "league_team_rosters": [ - 2207, + 2464, { "distinct_on": [ - 2228, + 2485, "[league_team_rosters_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2226, + 2483, "[league_team_rosters_order_by!]" ], "where": [ - 2216 + 2473 ] } ], "league_team_rosters_aggregate": [ - 2208, + 2465, { "distinct_on": [ - 2228, + 2485, "[league_team_rosters_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2226, + 2483, "[league_team_rosters_order_by!]" ], "where": [ - 2216 + 2473 ] } ], "league_team_rosters_by_pk": [ - 2207, + 2464, { "league_team_season_id": [ - 5170, + 5454, "uuid!" ], "player_steam_id": [ - 264, + 269, "bigint!" ] } ], "league_team_rosters_stream": [ - 2207, + 2464, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2236, + 2493, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 2216 + 2473 ] } ], "league_team_seasons": [ - 2248, + 2505, { "distinct_on": [ - 2270, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2268, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2514 ] } ], "league_team_seasons_aggregate": [ - 2249, + 2506, { "distinct_on": [ - 2270, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2268, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2514 ] } ], "league_team_seasons_by_pk": [ - 2248, + 2505, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_team_seasons_stream": [ - 2248, + 2505, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2278, + 2535, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 2257 + 2514 ] } ], "league_teams": [ - 2290, + 2547, { "distinct_on": [ - 2303, + 2560, "[league_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2301, + 2558, "[league_teams_order_by!]" ], "where": [ - 2293 + 2550 ] } ], "league_teams_aggregate": [ - 2291, + 2548, { "distinct_on": [ - 2303, + 2560, "[league_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2301, + 2558, "[league_teams_order_by!]" ], "where": [ - 2293 + 2550 ] } ], "league_teams_by_pk": [ - 2290, + 2547, { "id": [ - 5170, + 5454, "uuid!" ] } ], "league_teams_stream": [ - 2290, + 2547, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2305, + 2562, "[league_teams_stream_cursor_input]!" ], "where": [ - 2293 + 2550 ] } ], "lobbies": [ - 2309, + 2566, { "distinct_on": [ - 2322, + 2579, "[lobbies_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2320, + 2577, "[lobbies_order_by!]" ], "where": [ - 2312 + 2569 ] } ], "lobbies_aggregate": [ - 2310, + 2567, { "distinct_on": [ - 2322, + 2579, "[lobbies_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2320, + 2577, "[lobbies_order_by!]" ], "where": [ - 2312 + 2569 ] } ], "lobbies_by_pk": [ - 2309, + 2566, { "id": [ - 5170, + 5454, "uuid!" ] } ], "lobbies_stream": [ - 2309, + 2566, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2324, + 2581, "[lobbies_stream_cursor_input]!" ], "where": [ - 2312 + 2569 ] } ], "lobby_players": [ - 2328, + 2585, { "distinct_on": [ - 2351, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2349, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2596 ] } ], "lobby_players_aggregate": [ - 2329, + 2586, { "distinct_on": [ - 2351, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2349, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2596 ] } ], "lobby_players_by_pk": [ - 2328, + 2585, { "lobby_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "lobby_players_stream": [ - 2328, + 2585, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2361, + 2618, "[lobby_players_stream_cursor_input]!" ], "where": [ - 2339 + 2596 ] } ], "map_pools": [ - 2373, + 2630, { "distinct_on": [ - 2386, + 2643, "[map_pools_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2384, + 2641, "[map_pools_order_by!]" ], "where": [ - 2376 + 2633 ] } ], "map_pools_aggregate": [ - 2374, + 2631, { "distinct_on": [ - 2386, + 2643, "[map_pools_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2384, + 2641, "[map_pools_order_by!]" ], "where": [ - 2376 + 2633 ] } ], "map_pools_by_pk": [ - 2373, + 2630, { "id": [ - 5170, + 5454, "uuid!" ] } ], "map_pools_stream": [ - 2373, + 2630, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2388, + 2645, "[map_pools_stream_cursor_input]!" ], "where": [ - 2376 + 2633 ] } ], "maps": [ - 2392, + 2649, { "distinct_on": [ - 2413, + 2670, "[maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2411, + 2668, "[maps_order_by!]" ], "where": [ - 2401 + 2658 ] } ], "maps_aggregate": [ - 2393, + 2650, { "distinct_on": [ - 2413, + 2670, "[maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2411, + 2668, "[maps_order_by!]" ], "where": [ - 2401 + 2658 ] } ], "maps_by_pk": [ - 2392, + 2649, { "id": [ - 5170, + 5454, "uuid!" ] } ], "maps_stream": [ - 2392, + 2649, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2417, + 2674, "[maps_stream_cursor_input]!" ], "where": [ - 2401 + 2658 ] } ], "match_clips": [ - 2421, + 2678, { "distinct_on": [ - 2443, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2441, + 2698, "[match_clips_order_by!]" ], "where": [ - 2430 + 2687 ] } ], "match_clips_aggregate": [ - 2422, + 2679, { "distinct_on": [ - 2443, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2441, + 2698, "[match_clips_order_by!]" ], "where": [ - 2430 + 2687 ] } ], "match_clips_by_pk": [ - 2421, + 2678, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_clips_stream": [ - 2421, + 2678, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2451, + 2708, "[match_clips_stream_cursor_input]!" ], "where": [ - 2430 + 2687 ] } ], "match_demo_sessions": [ - 2463, + 2720, { "distinct_on": [ - 2489, + 2746, "[match_demo_sessions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2486, + 2743, "[match_demo_sessions_order_by!]" ], "where": [ - 2473 + 2730 ] } ], "match_demo_sessions_aggregate": [ - 2464, + 2721, { "distinct_on": [ - 2489, + 2746, "[match_demo_sessions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2486, + 2743, "[match_demo_sessions_order_by!]" ], "where": [ - 2473 + 2730 ] } ], "match_demo_sessions_by_pk": [ - 2463, + 2720, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_demo_sessions_stream": [ - 2463, + 2720, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2497, + 2754, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 2473 + 2730 ] } ], "match_lineup_players": [ - 2509, + 2766, { "distinct_on": [ - 2532, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2530, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2777 ] } ], "match_lineup_players_aggregate": [ - 2510, + 2767, { "distinct_on": [ - 2532, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2530, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2777 ] } ], "match_lineup_players_by_pk": [ - 2509, + 2766, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_lineup_players_stream": [ - 2509, + 2766, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2542, + 2799, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 2520 + 2777 ] } ], "match_lineups": [ - 2554, + 2811, { "distinct_on": [ - 2576, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2574, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2820 ] } ], "match_lineups_aggregate": [ - 2555, + 2812, { "distinct_on": [ - 2576, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2574, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2820 ] } ], "match_lineups_by_pk": [ - 2554, + 2811, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_lineups_stream": [ - 2554, + 2811, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2584, + 2841, "[match_lineups_stream_cursor_input]!" ], "where": [ - 2563 + 2820 ] } ], "match_map_demos": [ - 2596, + 2853, { "distinct_on": [ - 2625, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2622, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2865 ] } ], "match_map_demos_aggregate": [ - 2597, + 2854, { "distinct_on": [ - 2625, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2622, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2865 ] } ], "match_map_demos_by_pk": [ - 2596, + 2853, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_map_demos_stream": [ - 2596, + 2853, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2635, + 2892, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2608 + 2865 ] } ], "match_map_rounds": [ - 2647, + 2904, { "distinct_on": [ - 2668, + 2925, "[match_map_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2666, + 2923, "[match_map_rounds_order_by!]" ], "where": [ - 2656 + 2913 ] } ], "match_map_rounds_aggregate": [ - 2648, + 2905, { "distinct_on": [ - 2668, + 2925, "[match_map_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2666, + 2923, "[match_map_rounds_order_by!]" ], "where": [ - 2656 + 2913 ] } ], "match_map_rounds_by_pk": [ - 2647, + 2904, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_map_rounds_stream": [ - 2647, + 2904, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2676, + 2933, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2656 + 2913 ] } ], "match_map_veto_picks": [ - 2688, + 2945, { "distinct_on": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2706, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2954 ] } ], "match_map_veto_picks_aggregate": [ - 2689, + 2946, { "distinct_on": [ - 2708, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2706, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2954 ] } ], "match_map_veto_picks_by_pk": [ - 2688, + 2945, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2688, + 2945, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2712, + 2969, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2697 + 2954 ] } ], "match_maps": [ - 2716, + 2973, { "distinct_on": [ - 2738, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2736, + 2993, "[match_maps_order_by!]" ], "where": [ - 2725 + 2982 ] } ], "match_maps_aggregate": [ - 2717, + 2974, { "distinct_on": [ - 2738, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2736, + 2993, "[match_maps_order_by!]" ], "where": [ - 2725 + 2982 ] } ], "match_maps_by_pk": [ - 2716, + 2973, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_maps_stream": [ - 2716, + 2973, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2746, + 3003, "[match_maps_stream_cursor_input]!" ], "where": [ - 2725 + 2982 ] } ], "match_options": [ - 2758, + 3015, { "distinct_on": [ - 2773, + 3039, "[match_options_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2771, + 3037, "[match_options_order_by!]" ], "where": [ - 2762 + 3026 ] } ], "match_options_aggregate": [ - 2759, + 3016, { "distinct_on": [ - 2773, + 3039, "[match_options_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2771, + 3037, "[match_options_order_by!]" ], "where": [ - 2762 + 3026 ] } ], "match_options_by_pk": [ - 2758, + 3015, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_options_stream": [ - 2758, + 3015, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2778, + 3049, "[match_options_stream_cursor_input]!" ], "where": [ - 2762 + 3026 ] } ], "match_region_veto_picks": [ - 2786, + 3061, { "distinct_on": [ - 2806, + 3081, "[match_region_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2804, + 3079, "[match_region_veto_picks_order_by!]" ], "where": [ - 2795 + 3070 ] } ], "match_region_veto_picks_aggregate": [ - 2787, + 3062, { "distinct_on": [ - 2806, + 3081, "[match_region_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2804, + 3079, "[match_region_veto_picks_order_by!]" ], "where": [ - 2795 + 3070 ] } ], "match_region_veto_picks_by_pk": [ - 2786, + 3061, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2786, + 3061, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2810, + 3085, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2795 + 3070 ] } ], "match_streams": [ - 2814, + 3089, { "distinct_on": [ - 2842, + 3117, "[match_streams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2839, + 3114, "[match_streams_order_by!]" ], "where": [ - 2826 + 3101 ] } ], "match_streams_aggregate": [ - 2815, + 3090, { "distinct_on": [ - 2842, + 3117, "[match_streams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2839, + 3114, "[match_streams_order_by!]" ], "where": [ - 2826 + 3101 ] } ], "match_streams_by_pk": [ - 2814, + 3089, { "id": [ - 5170, + 5454, "uuid!" ] } ], "match_streams_stream": [ - 2814, + 3089, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2852, + 3127, "[match_streams_stream_cursor_input]!" ], "where": [ - 2826 + 3101 ] } ], "match_type_cfgs": [ - 2864, + 3139, { "distinct_on": [ - 2876, + 3151, "[match_type_cfgs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2874, + 3149, "[match_type_cfgs_order_by!]" ], "where": [ - 2867 + 3142 ] } ], "match_type_cfgs_aggregate": [ - 2865, + 3140, { "distinct_on": [ - 2876, + 3151, "[match_type_cfgs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2874, + 3149, "[match_type_cfgs_order_by!]" ], "where": [ - 2867 + 3142 ] } ], "match_type_cfgs_by_pk": [ - 2864, + 3139, { "type": [ - 828, + 833, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 2864, + 3139, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2878, + 3153, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2867 + 3142 ] } ], "matches": [ - 2882, + 3157, { "distinct_on": [ - 2904, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2902, + 3179, "[matches_order_by!]" ], "where": [ - 2891 + 3168 ] } ], "matches_aggregate": [ - 2883, + 3158, { "distinct_on": [ - 2904, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2902, + 3179, "[matches_order_by!]" ], "where": [ - 2891 + 3168 ] } ], "matches_by_pk": [ - 2882, + 3157, { "id": [ - 5170, + 5454, "uuid!" ] } ], "matches_stream": [ - 2882, + 3157, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2912, + 3191, "[matches_stream_cursor_input]!" ], "where": [ - 2891 + 3168 ] } ], "migration_hashes_hashes": [ - 2924, + 3203, { "distinct_on": [ - 2936, + 3215, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2934, + 3213, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2927 + 3206 ] } ], "migration_hashes_hashes_aggregate": [ - 2925, + 3204, { "distinct_on": [ - 2936, + 3215, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2934, + 3213, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2927 + 3206 ] } ], "migration_hashes_hashes_by_pk": [ - 2924, + 3203, { "name": [ - 80, + 84, "String!" ] } ], "migration_hashes_hashes_stream": [ - 2924, + 3203, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2938, + 3217, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2927 + 3206 ] } ], "my_friends": [ - 2942, + 3221, { "distinct_on": [ - 2967, + 3246, "[my_friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2965, + 3244, "[my_friends_order_by!]" ], "where": [ - 2954 + 3233 ] } ], "my_friends_aggregate": [ - 2943, + 3222, { "distinct_on": [ - 2967, + 3246, "[my_friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2965, + 3244, "[my_friends_order_by!]" ], "where": [ - 2954 + 3233 ] } ], "my_friends_stream": [ - 2942, + 3221, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2977, + 3256, "[my_friends_stream_cursor_input]!" ], "where": [ - 2954 + 3233 ] } ], "news_articles": [ - 2988, + 3267, { "distinct_on": [ - 3002, + 3281, "[news_articles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3000, + 3279, "[news_articles_order_by!]" ], "where": [ - 2992 + 3271 ] } ], "news_articles_aggregate": [ - 2989, + 3268, { "distinct_on": [ - 3002, + 3281, "[news_articles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3000, + 3279, "[news_articles_order_by!]" ], "where": [ - 2992 + 3271 ] } ], "news_articles_by_pk": [ - 2988, + 3267, { "id": [ - 5170, + 5454, "uuid!" ] } ], "news_articles_stream": [ - 2988, + 3267, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3007, + 3286, "[news_articles_stream_cursor_input]!" ], "where": [ - 2992 + 3271 ] } ], "notification_preferences": [ - 3015, + 3294, { "distinct_on": [ - 3029, + 3308, "[notification_preferences_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3027, + 3306, "[notification_preferences_order_by!]" ], "where": [ - 3019 + 3298 ] } ], "notification_preferences_aggregate": [ - 3016, + 3295, { "distinct_on": [ - 3029, + 3308, "[notification_preferences_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3027, + 3306, "[notification_preferences_order_by!]" ], "where": [ - 3019 + 3298 ] } ], "notification_preferences_by_pk": [ - 3015, + 3294, { "channel": [ - 80, + 84, "String!" ], "key": [ - 80, + 84, "String!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "notification_preferences_stream": [ - 3015, + 3294, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3034, + 3313, "[notification_preferences_stream_cursor_input]!" ], "where": [ - 3019 + 3298 ] } ], "notifications": [ - 3042, + 3321, { "distinct_on": [ - 3070, + 3349, "[notifications_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3067, + 3346, "[notifications_order_by!]" ], "where": [ - 3054 + 3333 ] } ], "notifications_aggregate": [ - 3043, + 3322, { "distinct_on": [ - 3070, + 3349, "[notifications_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3067, + 3346, "[notifications_order_by!]" ], "where": [ - 3054 + 3333 ] } ], "notifications_by_pk": [ - 3042, + 3321, { "id": [ - 5170, + 5454, "uuid!" ] } ], "notifications_stream": [ - 3042, + 3321, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3080, + 3359, "[notifications_stream_cursor_input]!" ], "where": [ - 3054 + 3333 ] } ], "pending_match_import_players": [ - 3095, + 3374, { "distinct_on": [ - 3116, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3114, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3383 ] } ], "pending_match_import_players_aggregate": [ - 3096, + 3375, { "distinct_on": [ - 3116, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3114, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3383 ] } ], "pending_match_import_players_by_pk": [ - 3095, + 3374, { "steam_id": [ - 264, + 269, "bigint!" ], "valve_match_id": [ - 3092, + 3371, "numeric!" ] } ], "pending_match_import_players_stream": [ - 3095, + 3374, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3124, + 3403, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 3104 + 3383 ] } ], "pending_match_imports": [ - 3136, + 3415, { "distinct_on": [ - 3151, + 3430, "[pending_match_imports_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3149, + 3428, "[pending_match_imports_order_by!]" ], "where": [ - 3140 + 3419 ] } ], "pending_match_imports_aggregate": [ - 3137, + 3416, { "distinct_on": [ - 3151, + 3430, "[pending_match_imports_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3149, + 3428, "[pending_match_imports_order_by!]" ], "where": [ - 3140 + 3419 ] } ], "pending_match_imports_by_pk": [ - 3136, + 3415, { "valve_match_id": [ - 3092, + 3371, "numeric!" ] } ], "pending_match_imports_stream": [ - 3136, + 3415, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3156, + 3435, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 3140 + 3419 ] } ], "player_aim_stats_demo": [ - 3164, + 3443, { "distinct_on": [ - 3178, + 3457, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3176, + 3455, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3168 + 3447 ] } ], "player_aim_stats_demo_aggregate": [ - 3165, + 3444, { "distinct_on": [ - 3178, + 3457, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3176, + 3455, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3168 + 3447 ] } ], "player_aim_stats_demo_by_pk": [ - 3164, + 3443, { "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 3164, + 3443, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3183, + 3462, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 3168 + 3447 ] } ], "player_aim_weapon_stats": [ - 3191, + 3470, { "distinct_on": [ - 3212, + 3491, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3210, + 3489, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3200 + 3479 ] } ], "player_aim_weapon_stats_aggregate": [ - 3192, + 3471, { "distinct_on": [ - 3212, + 3491, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3210, + 3489, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3200 + 3479 ] } ], "player_aim_weapon_stats_by_pk": [ - 3191, + 3470, { "match_map_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ], "weapon_class": [ - 80, + 84, "String!" ] } ], "player_aim_weapon_stats_stream": [ - 3191, + 3470, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3220, + 3499, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 3200 + 3479 ] } ], "player_assists": [ - 3232, + 3511, { "distinct_on": [ - 3255, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3253, + 3532, "[player_assists_order_by!]" ], "where": [ - 3243 + 3522 ] } ], "player_assists_aggregate": [ - 3233, + 3512, { "distinct_on": [ - 3255, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3253, + 3532, "[player_assists_order_by!]" ], "where": [ - 3243 + 3522 ] } ], "player_assists_by_pk": [ - 3232, + 3511, { "attacked_steam_id": [ - 264, + 269, "bigint!" ], "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "player_assists_stream": [ - 3232, + 3511, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3265, + 3544, "[player_assists_stream_cursor_input]!" ], "where": [ - 3243 + 3522 ] } ], "player_career_stats_v": [ - 3277, + 3556, { "distinct_on": [ - 3285, + 3564, "[player_career_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3284, + 3563, "[player_career_stats_v_order_by!]" ], "where": [ - 3281 + 3560 ] } ], "player_career_stats_v_aggregate": [ - 3278, + 3557, { "distinct_on": [ - 3285, + 3564, "[player_career_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3284, + 3563, "[player_career_stats_v_order_by!]" ], "where": [ - 3281 + 3560 ] } ], "player_career_stats_v_stream": [ - 3277, + 3556, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3289, + 3568, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 3281 + 3560 ] } ], "player_damages": [ - 3295, + 3574, { "distinct_on": [ - 3316, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3314, + 3593, "[player_damages_order_by!]" ], "where": [ - 3304 + 3583 ] } ], "player_damages_aggregate": [ - 3296, + 3575, { "distinct_on": [ - 3316, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3314, + 3593, "[player_damages_order_by!]" ], "where": [ - 3304 + 3583 ] } ], "player_damages_by_pk": [ - 3295, + 3574, { "id": [ - 5170, + 5454, "uuid!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "player_damages_stream": [ - 3295, + 3574, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3324, + 3603, "[player_damages_stream_cursor_input]!" ], "where": [ - 3304 + 3583 ] } ], "player_elo": [ - 3336, + 3615, { "distinct_on": [ - 3350, + 3629, "[player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3348, + 3627, "[player_elo_order_by!]" ], "where": [ - 3340 + 3619 ] } ], "player_elo_aggregate": [ - 3337, + 3616, { "distinct_on": [ - 3350, + 3629, "[player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3348, + 3627, "[player_elo_order_by!]" ], "where": [ - 3340 + 3619 ] } ], "player_elo_by_pk": [ - 3336, + 3615, { "match_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ], "type": [ - 1117, + 1182, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 3336, + 3615, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3355, + 3634, "[player_elo_stream_cursor_input]!" ], "where": [ - 3340 + 3619 ] } ], "player_faceit_rank_history": [ - 3363, + 3642, { "distinct_on": [ - 3384, + 3663, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3382, + 3661, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3372 + 3651 ] } ], "player_faceit_rank_history_aggregate": [ - 3364, + 3643, { "distinct_on": [ - 3384, + 3663, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3382, + 3661, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3372 + 3651 ] } ], "player_faceit_rank_history_by_pk": [ - 3363, + 3642, { "id": [ - 5170, + 5454, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 3363, + 3642, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3392, + 3671, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 3372 + 3651 ] } ], "player_flashes": [ - 3404, + 3683, { "distinct_on": [ - 3427, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3425, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3694 ] } ], "player_flashes_aggregate": [ - 3405, + 3684, { "distinct_on": [ - 3427, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3425, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3694 ] } ], "player_flashes_by_pk": [ - 3404, + 3683, { "attacked_steam_id": [ - 264, + 269, "bigint!" ], "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "player_flashes_stream": [ - 3404, + 3683, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3437, + 3716, "[player_flashes_stream_cursor_input]!" ], "where": [ - 3415 + 3694 ] } ], "player_kills": [ - 3449, + 3728, { "distinct_on": [ - 3513, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3511, + 3790, "[player_kills_order_by!]" ], "where": [ - 3460 + 3739 ] } ], "player_kills_aggregate": [ - 3450, + 3729, { "distinct_on": [ - 3513, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3511, + 3790, "[player_kills_order_by!]" ], "where": [ - 3460 + 3739 ] } ], "player_kills_by_pk": [ - 3449, + 3728, { "attacked_steam_id": [ - 264, + 269, "bigint!" ], "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3461, + 3740, { "distinct_on": [ - 3482, + 3761, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3480, + 3759, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3470 + 3749 ] } ], "player_kills_by_weapon_aggregate": [ - 3462, + 3741, { "distinct_on": [ - 3482, + 3761, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3480, + 3759, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3470 + 3749 ] } ], "player_kills_by_weapon_by_pk": [ - 3461, + 3740, { "player_steam_id": [ - 264, + 269, "bigint!" ], "with": [ - 80, + 84, "String!" ] } ], "player_kills_by_weapon_stream": [ - 3461, + 3740, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3490, + 3769, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 3470 + 3749 ] } ], "player_kills_stream": [ - 3449, + 3728, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3523, + 3802, "[player_kills_stream_cursor_input]!" ], "where": [ - 3460 + 3739 ] } ], "player_leaderboard_rank": [ - 3535, + 3814, { "distinct_on": [ - 3546, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3545, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3818 ] } ], "player_leaderboard_rank_aggregate": [ - 3536, + 3815, { "distinct_on": [ - 3546, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3545, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3818 ] } ], "player_leaderboard_rank_stream": [ - 3535, + 3814, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3551, + 3830, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 3539 + 3818 ] } ], "player_match_map_stats": [ - 3558, + 3837, { "distinct_on": [ - 3579, + 3858, "[player_match_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3577, + 3856, "[player_match_map_stats_order_by!]" ], "where": [ - 3567 + 3846 ] } ], "player_match_map_stats_aggregate": [ - 3559, + 3838, { "distinct_on": [ - 3579, + 3858, "[player_match_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3577, + 3856, "[player_match_map_stats_order_by!]" ], "where": [ - 3567 + 3846 ] } ], "player_match_map_stats_by_pk": [ - 3558, + 3837, { "match_map_id": [ - 5170, + 5454, "uuid!" ], "steam_id": [ - 264, + 269, "bigint!" ] } ], "player_match_map_stats_stream": [ - 3558, + 3837, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3587, + 3866, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 3567 + 3846 ] } ], "player_match_performance_v": [ - 3599, + 3878, { "distinct_on": [ - 3607, + 3886, "[player_match_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3606, + 3885, "[player_match_performance_v_order_by!]" ], "where": [ - 3603 + 3882 ] } ], "player_match_performance_v_aggregate": [ - 3600, + 3879, { "distinct_on": [ - 3607, + 3886, "[player_match_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3606, + 3885, "[player_match_performance_v_order_by!]" ], "where": [ - 3603 + 3882 ] } ], "player_match_performance_v_stream": [ - 3599, + 3878, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3611, + 3890, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 3603 + 3882 ] } ], "player_match_stats_v": [ - 3617, + 3896, { "distinct_on": [ - 3633, + 3912, "[player_match_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3632, + 3911, "[player_match_stats_v_order_by!]" ], "where": [ - 3626 + 3905 ] } ], "player_match_stats_v_aggregate": [ - 3618, + 3897, { "distinct_on": [ - 3633, + 3912, "[player_match_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3632, + 3911, "[player_match_stats_v_order_by!]" ], "where": [ - 3626 + 3905 ] } ], "player_match_stats_v_stream": [ - 3617, + 3896, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3640, + 3919, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3626 + 3905 ] } ], "player_objectives": [ - 3650, + 3929, { "distinct_on": [ - 3671, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3669, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3938 ] } ], "player_objectives_aggregate": [ - 3651, + 3930, { "distinct_on": [ - 3671, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3669, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3938 ] } ], "player_objectives_by_pk": [ - 3650, + 3929, { "match_map_id": [ - 5170, + 5454, "uuid!" ], "player_steam_id": [ - 264, + 269, "bigint!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "player_objectives_stream": [ - 3650, + 3929, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3679, + 3958, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3659 + 3938 ] } ], "player_performance_v": [ - 3691, + 3970, { "distinct_on": [ - 3699, + 3978, "[player_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3698, + 3977, "[player_performance_v_order_by!]" ], "where": [ - 3695 + 3974 ] } ], "player_performance_v_aggregate": [ - 3692, + 3971, { "distinct_on": [ - 3699, + 3978, "[player_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3698, + 3977, "[player_performance_v_order_by!]" ], "where": [ - 3695 + 3974 ] } ], "player_performance_v_stream": [ - 3691, + 3970, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3703, + 3982, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3695 + 3974 ] } ], "player_premier_rank_history": [ - 3709, + 3988, { "distinct_on": [ - 3730, + 4009, "[player_premier_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3728, + 4007, "[player_premier_rank_history_order_by!]" ], "where": [ - 3718 + 3997 ] } ], "player_premier_rank_history_aggregate": [ - 3710, + 3989, { "distinct_on": [ - 3730, + 4009, "[player_premier_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3728, + 4007, "[player_premier_rank_history_order_by!]" ], "where": [ - 3718 + 3997 ] } ], "player_premier_rank_history_by_pk": [ - 3709, + 3988, { "id": [ - 5170, + 5454, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3709, + 3988, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3738, + 4017, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3718 + 3997 ] } ], "player_sanctions": [ - 3750, + 4029, { "distinct_on": [ - 3771, + 4050, "[player_sanctions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3769, + 4048, "[player_sanctions_order_by!]" ], "where": [ - 3759 + 4038 ] } ], "player_sanctions_aggregate": [ - 3751, + 4030, { "distinct_on": [ - 3771, + 4050, "[player_sanctions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3769, + 4048, "[player_sanctions_order_by!]" ], "where": [ - 3759 + 4038 ] } ], "player_sanctions_by_pk": [ - 3750, + 4029, { "created_at": [ - 4670, + 4954, "timestamptz!" ], "id": [ - 5170, + 5454, "uuid!" ] } ], "player_sanctions_stream": [ - 3750, + 4029, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3779, + 4058, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3759 + 4038 ] } ], "player_season_stats": [ - 3791, + 4070, { "distinct_on": [ - 3822, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3820, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4089 ] } ], "player_season_stats_aggregate": [ - 3792, + 4071, { "distinct_on": [ - 3822, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3820, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4089 ] } ], "player_season_stats_by_pk": [ - 3791, + 4070, { "player_steam_id": [ - 264, + 269, "bigint!" ], "season_id": [ - 5170, + 5454, "uuid!" ] } ], "player_season_stats_stream": [ - 3791, + 4070, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3838, + 4117, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3810 + 4089 ] } ], "player_stats": [ - 3850, + 4129, { "distinct_on": [ - 3865, + 4144, "[player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3863, + 4142, "[player_stats_order_by!]" ], "where": [ - 3854 + 4133 ] } ], "player_stats_aggregate": [ - 3851, + 4130, { "distinct_on": [ - 3865, + 4144, "[player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3863, + 4142, "[player_stats_order_by!]" ], "where": [ - 3854 + 4133 ] } ], "player_stats_by_pk": [ - 3850, + 4129, { "player_steam_id": [ - 264, + 269, "bigint!" ] } ], "player_stats_stream": [ - 3850, + 4129, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3870, + 4149, "[player_stats_stream_cursor_input]!" ], "where": [ - 3854 + 4133 ] } ], "player_steam_bot_friend": [ - 3878, + 4157, { "distinct_on": [ - 3897, + 4176, "[player_steam_bot_friend_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3894, + 4173, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3883 + 4162 ] } ], "player_steam_bot_friend_aggregate": [ - 3879, + 4158, { "distinct_on": [ - 3897, + 4176, "[player_steam_bot_friend_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3894, + 4173, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3883 + 4162 ] } ], "player_steam_bot_friend_by_pk": [ - 3878, + 4157, { "steam_id": [ - 264, + 269, "bigint!" ] } ], "player_steam_bot_friend_stream": [ - 3878, + 4157, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3902, + 4181, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3883 + 4162 ] } ], "player_steam_match_auth": [ - 3910, + 4189, { "distinct_on": [ - 3924, + 4203, "[player_steam_match_auth_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3922, + 4201, "[player_steam_match_auth_order_by!]" ], "where": [ - 3914 + 4193 ] } ], "player_steam_match_auth_aggregate": [ - 3911, + 4190, { "distinct_on": [ - 3924, + 4203, "[player_steam_match_auth_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3922, + 4201, "[player_steam_match_auth_order_by!]" ], "where": [ - 3914 + 4193 ] } ], "player_steam_match_auth_by_pk": [ - 3910, + 4189, { "steam_id": [ - 264, + 269, "bigint!" ] } ], "player_steam_match_auth_stream": [ - 3910, + 4189, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3929, + 4208, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3914 + 4193 ] } ], "player_unused_utility": [ - 3937, + 4216, { "distinct_on": [ - 3958, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3956, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4225 ] } ], "player_unused_utility_aggregate": [ - 3938, + 4217, { "distinct_on": [ - 3958, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3956, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4225 ] } ], "player_unused_utility_by_pk": [ - 3937, + 4216, { "match_map_id": [ - 5170, + 5454, "uuid!" ], "player_steam_id": [ - 264, + 269, "bigint!" ] } ], "player_unused_utility_stream": [ - 3937, + 4216, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3966, + 4245, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3946 + 4225 ] } ], "player_utility": [ - 3978, + 4257, { "distinct_on": [ - 3999, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3997, + 4276, "[player_utility_order_by!]" ], "where": [ - 3987 + 4266 ] } ], "player_utility_aggregate": [ - 3979, + 4258, { "distinct_on": [ - 3999, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3997, + 4276, "[player_utility_order_by!]" ], "where": [ - 3987 + 4266 ] } ], "player_utility_by_pk": [ - 3978, + 4257, { "attacker_steam_id": [ - 264, + 269, "bigint!" ], "match_map_id": [ - 5170, + 5454, "uuid!" ], "time": [ - 4670, + 4954, "timestamptz!" ] } ], "player_utility_stream": [ - 3978, + 4257, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4007, + 4286, "[player_utility_stream_cursor_input]!" ], "where": [ - 3987 + 4266 ] } ], "player_weapon_stats_v": [ - 4019, + 4298, { "distinct_on": [ - 4035, + 4314, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4034, + 4313, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4028 + 4307 ] } ], "player_weapon_stats_v_aggregate": [ - 4020, + 4299, { "distinct_on": [ - 4035, + 4314, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4034, + 4313, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4028 + 4307 ] } ], "player_weapon_stats_v_stream": [ - 4019, + 4298, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4042, + 4321, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 4028 + 4307 ] } ], "players": [ - 4052, + 4331, { "distinct_on": [ - 4067, + 4346, "[players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4065, + 4344, "[players_order_by!]" ], "where": [ - 4056 + 4335 ] } ], "players_aggregate": [ - 4053, + 4332, { "distinct_on": [ - 4067, + 4346, "[players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4065, + 4344, "[players_order_by!]" ], "where": [ - 4056 + 4335 ] } ], "players_by_pk": [ - 4052, + 4331, { "steam_id": [ - 264, + 269, "bigint!" ] } ], "players_stream": [ - 4052, + 4331, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4072, + 4351, "[players_stream_cursor_input]!" ], "where": [ - 4056 + 4335 ] } ], "plugin_versions": [ - 4080, + 4359, { "distinct_on": [ - 4094, + 4373, "[plugin_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4092, + 4371, "[plugin_versions_order_by!]" ], "where": [ - 4084 + 4363 ] } ], "plugin_versions_aggregate": [ - 4081, + 4360, { "distinct_on": [ - 4094, + 4373, "[plugin_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4092, + 4371, "[plugin_versions_order_by!]" ], "where": [ - 4084 + 4363 ] } ], "plugin_versions_by_pk": [ - 4080, + 4359, { "runtime": [ - 1198, + 1263, "e_plugin_runtimes_enum!" ], "version": [ - 80, + 84, "String!" ] } ], "plugin_versions_stream": [ - 4080, + 4359, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4099, + 4378, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 4084 + 4363 ] } ], "push_subscriptions": [ - 4107, + 4386, { "distinct_on": [ - 4121, + 4400, "[push_subscriptions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4119, + 4398, "[push_subscriptions_order_by!]" ], "where": [ - 4111 + 4390 ] } ], "push_subscriptions_aggregate": [ - 4108, + 4387, { "distinct_on": [ - 4121, + 4400, "[push_subscriptions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4119, + 4398, "[push_subscriptions_order_by!]" ], "where": [ - 4111 + 4390 ] } ], "push_subscriptions_by_pk": [ - 4107, + 4386, { "id": [ - 5170, + 5454, "uuid!" ] } ], "push_subscriptions_stream": [ - 4107, + 4386, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4126, + 4405, "[push_subscriptions_stream_cursor_input]!" ], "where": [ - 4111 + 4390 ] } ], "seasons": [ - 4138, + 4417, { "distinct_on": [ - 4153, + 4432, "[seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4151, + 4430, "[seasons_order_by!]" ], "where": [ - 4142 + 4421 ] } ], "seasons_aggregate": [ - 4139, + 4418, { "distinct_on": [ - 4153, + 4432, "[seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4151, + 4430, "[seasons_order_by!]" ], "where": [ - 4142 + 4421 ] } ], "seasons_by_pk": [ - 4138, + 4417, { "id": [ - 5170, + 5454, "uuid!" ] } ], "seasons_stream": [ - 4138, + 4417, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4158, + 4437, "[seasons_stream_cursor_input]!" ], "where": [ - 4142 + 4421 ] } ], "server_regions": [ - 4166, + 4445, { "distinct_on": [ - 4180, + 4459, "[server_regions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4178, + 4457, "[server_regions_order_by!]" ], "where": [ - 4170 + 4449 ] } ], "server_regions_aggregate": [ - 4167, + 4446, { "distinct_on": [ - 4180, + 4459, "[server_regions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4178, + 4457, "[server_regions_order_by!]" ], "where": [ - 4170 + 4449 ] } ], "server_regions_by_pk": [ - 4166, + 4445, { "value": [ - 80, + 84, "String!" ] } ], "server_regions_stream": [ - 4166, + 4445, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4185, + 4464, "[server_regions_stream_cursor_input]!" ], "where": [ - 4170 + 4449 ] } ], "servers": [ - 4193, + 4472, { "distinct_on": [ - 4217, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4215, + 4498, "[servers_order_by!]" ], "where": [ - 4204 + 4484 ] } ], "servers_aggregate": [ - 4194, + 4473, { "distinct_on": [ - 4217, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4215, + 4498, "[servers_order_by!]" ], "where": [ - 4204 + 4484 ] } ], "servers_by_pk": [ - 4193, + 4472, { "id": [ - 5170, + 5454, "uuid!" ] } ], "servers_stream": [ - 4193, + 4472, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4227, + 4511, "[servers_stream_cursor_input]!" ], "where": [ - 4204 + 4484 ] } ], "settings": [ - 4239, + 4523, { "distinct_on": [ - 4251, + 4535, "[settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4249, + 4533, "[settings_order_by!]" ], "where": [ - 4242 + 4526 ] } ], "settings_aggregate": [ - 4240, + 4524, { "distinct_on": [ - 4251, + 4535, "[settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4249, + 4533, "[settings_order_by!]" ], "where": [ - 4242 + 4526 ] } ], "settings_by_pk": [ - 4239, + 4523, { "name": [ - 80, + 84, "String!" ] } ], "settings_stream": [ - 4239, + 4523, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4253, + 4537, "[settings_stream_cursor_input]!" ], "where": [ - 4242 + 4526 ] } ], "steam_account_claims": [ - 4259, + 4543, { "distinct_on": [ - 4277, + 4561, "[steam_account_claims_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4275, + 4559, "[steam_account_claims_order_by!]" ], "where": [ - 4266 + 4550 ] } ], "steam_account_claims_aggregate": [ - 4260, + 4544, { "distinct_on": [ - 4277, + 4561, "[steam_account_claims_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4275, + 4559, "[steam_account_claims_order_by!]" ], "where": [ - 4266 + 4550 ] } ], "steam_account_claims_by_pk": [ - 4259, + 4543, { "id": [ - 5170, + 5454, "uuid!" ] } ], "steam_account_claims_stream": [ - 4259, + 4543, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4279, + 4563, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 4266 + 4550 ] } ], "steam_accounts": [ - 4283, + 4567, { "distinct_on": [ - 4298, + 4582, "[steam_accounts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4296, + 4580, "[steam_accounts_order_by!]" ], "where": [ - 4287 + 4571 ] } ], "steam_accounts_aggregate": [ - 4284, + 4568, { "distinct_on": [ - 4298, + 4582, "[steam_accounts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4296, + 4580, "[steam_accounts_order_by!]" ], "where": [ - 4287 + 4571 ] } ], "steam_accounts_by_pk": [ - 4283, + 4567, { "id": [ - 5170, + 5454, "uuid!" ] } ], "steam_accounts_stream": [ - 4283, + 4567, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4303, + 4587, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 4287 + 4571 ] } ], "system_alerts": [ - 4311, + 4595, { "distinct_on": [ - 4325, + 4609, "[system_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4323, + 4607, "[system_alerts_order_by!]" ], "where": [ - 4315 + 4599 ] } ], "system_alerts_aggregate": [ - 4312, + 4596, { "distinct_on": [ - 4325, + 4609, "[system_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4323, + 4607, "[system_alerts_order_by!]" ], "where": [ - 4315 + 4599 ] } ], "system_alerts_by_pk": [ - 4311, + 4595, { "id": [ - 5170, + 5454, "uuid!" ] } ], "system_alerts_stream": [ - 4311, + 4595, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4330, + 4614, "[system_alerts_stream_cursor_input]!" ], "where": [ - 4315 + 4599 ] } ], "team_invites": [ - 4338, + 4622, { "distinct_on": [ - 4359, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4357, + 4641, "[team_invites_order_by!]" ], "where": [ - 4347 + 4631 ] } ], "team_invites_aggregate": [ - 4339, + 4623, { "distinct_on": [ - 4359, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4357, + 4641, "[team_invites_order_by!]" ], "where": [ - 4347 + 4631 ] } ], "team_invites_by_pk": [ - 4338, + 4622, { "id": [ - 5170, + 5454, "uuid!" ] } ], "team_invites_stream": [ - 4338, + 4622, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4367, + 4651, "[team_invites_stream_cursor_input]!" ], "where": [ - 4347 + 4631 ] } ], "team_roster": [ - 4379, + 4663, { "distinct_on": [ - 4402, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4400, + 4684, "[team_roster_order_by!]" ], "where": [ - 4390 + 4674 ] } ], "team_roster_aggregate": [ - 4380, + 4664, { "distinct_on": [ - 4402, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4400, + 4684, "[team_roster_order_by!]" ], "where": [ - 4390 + 4674 ] } ], "team_roster_by_pk": [ - 4379, + 4663, { "player_steam_id": [ - 264, + 269, "bigint!" ], "team_id": [ - 5170, + 5454, "uuid!" ] } ], "team_roster_stream": [ - 4379, + 4663, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4412, + 4696, "[team_roster_stream_cursor_input]!" ], "where": [ - 4390 + 4674 ] } ], "team_scrim_alerts": [ - 4424, + 4708, { "distinct_on": [ - 4438, + 4722, "[team_scrim_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4436, + 4720, "[team_scrim_alerts_order_by!]" ], "where": [ - 4428 + 4712 ] } ], "team_scrim_alerts_aggregate": [ - 4425, + 4709, { "distinct_on": [ - 4438, + 4722, "[team_scrim_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4436, + 4720, "[team_scrim_alerts_order_by!]" ], "where": [ - 4428 + 4712 ] } ], "team_scrim_alerts_by_pk": [ - 4424, + 4708, { "id": [ - 5170, + 5454, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 4424, + 4708, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4443, + 4727, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 4428 + 4712 ] } ], "team_scrim_availability": [ - 4451, + 4735, { "distinct_on": [ - 4471, + 4755, "[team_scrim_availability_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4469, + 4753, "[team_scrim_availability_order_by!]" ], "where": [ - 4460 + 4744 ] } ], "team_scrim_availability_aggregate": [ - 4452, + 4736, { "distinct_on": [ - 4471, + 4755, "[team_scrim_availability_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4469, + 4753, "[team_scrim_availability_order_by!]" ], "where": [ - 4460 + 4744 ] } ], "team_scrim_availability_by_pk": [ - 4451, + 4735, { "id": [ - 5170, + 5454, "uuid!" ] } ], "team_scrim_availability_stream": [ - 4451, + 4735, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4475, + 4759, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 4460 + 4744 ] } ], "team_scrim_request_proposals": [ - 4479, + 4763, { "distinct_on": [ - 4500, + 4784, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4498, + 4782, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4488 + 4772 ] } ], "team_scrim_request_proposals_aggregate": [ - 4480, + 4764, { "distinct_on": [ - 4500, + 4784, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4498, + 4782, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4488 + 4772 ] } ], "team_scrim_request_proposals_by_pk": [ - 4479, + 4763, { "id": [ - 5170, + 5454, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 4479, + 4763, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4508, + 4792, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 4488 + 4772 ] } ], "team_scrim_requests": [ - 4520, + 4804, { "distinct_on": [ - 4544, + 4828, "[team_scrim_requests_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4542, + 4826, "[team_scrim_requests_order_by!]" ], "where": [ - 4531 + 4815 ] } ], "team_scrim_requests_aggregate": [ - 4521, + 4805, { "distinct_on": [ - 4544, + 4828, "[team_scrim_requests_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4542, + 4826, "[team_scrim_requests_order_by!]" ], "where": [ - 4531 + 4815 ] } ], "team_scrim_requests_by_pk": [ - 4520, + 4804, { "id": [ - 5170, + 5454, "uuid!" ] } ], "team_scrim_requests_stream": [ - 4520, + 4804, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4554, + 4838, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 4531 + 4815 ] } ], "team_scrim_settings": [ - 4566, + 4850, { "distinct_on": [ - 4581, + 4865, "[team_scrim_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4579, + 4863, "[team_scrim_settings_order_by!]" ], "where": [ - 4570 + 4854 ] } ], "team_scrim_settings_aggregate": [ - 4567, + 4851, { "distinct_on": [ - 4581, + 4865, "[team_scrim_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4579, + 4863, "[team_scrim_settings_order_by!]" ], "where": [ - 4570 + 4854 ] } ], "team_scrim_settings_by_pk": [ - 4566, + 4850, { "id": [ - 5170, + 5454, "uuid!" ] } ], "team_scrim_settings_stream": [ - 4566, + 4850, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4586, + 4870, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 4570 + 4854 ] } ], "team_suggestions": [ - 4594, + 4878, { "distinct_on": [ - 4608, + 4892, "[team_suggestions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4606, + 4890, "[team_suggestions_order_by!]" ], "where": [ - 4598 + 4882 ] } ], "team_suggestions_aggregate": [ - 4595, + 4879, { "distinct_on": [ - 4608, + 4892, "[team_suggestions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4606, + 4890, "[team_suggestions_order_by!]" ], "where": [ - 4598 + 4882 ] } ], "team_suggestions_by_pk": [ - 4594, + 4878, { "id": [ - 5170, + 5454, "uuid!" ] } ], "team_suggestions_stream": [ - 4594, + 4878, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4613, + 4897, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 4598 + 4882 ] } ], "teams": [ - 4621, + 4905, { "distinct_on": [ - 4645, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4643, + 4927, "[teams_order_by!]" ], "where": [ - 4632 + 4916 ] } ], "teams_aggregate": [ - 4622, + 4906, { "distinct_on": [ - 4645, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4643, + 4927, "[teams_order_by!]" ], "where": [ - 4632 + 4916 ] } ], "teams_by_pk": [ - 4621, + 4905, { "id": [ - 5170, + 5454, "uuid!" ] } ], "teams_stream": [ - 4621, + 4905, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4655, + 4939, "[teams_stream_cursor_input]!" ], "where": [ - 4632 + 4916 ] } ], "tournament_awards": [ - 4672, + 4956, { "distinct_on": [ - 4694, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4692, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4965 ] } ], "tournament_awards_aggregate": [ - 4673, + 4957, { "distinct_on": [ - 4694, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4692, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4965 ] } ], "tournament_awards_by_pk": [ - 4672, + 4956, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_awards_stream": [ - 4672, + 4956, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4702, + 4986, "[tournament_awards_stream_cursor_input]!" ], "where": [ - 4681 + 4965 ] } ], "tournament_brackets": [ - 4714, + 4998, { "distinct_on": [ - 4738, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4736, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5009 ] } ], "tournament_brackets_aggregate": [ - 4715, + 4999, { "distinct_on": [ - 4738, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4736, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5009 ] } ], "tournament_brackets_by_pk": [ - 4714, + 4998, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_brackets_stream": [ - 4714, + 4998, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4748, + 5032, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4725 + 5009 ] } ], "tournament_categories": [ - 4760, + 5044, { "distinct_on": [ - 4778, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4776, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5051 ] } ], "tournament_categories_aggregate": [ - 4761, + 5045, { "distinct_on": [ - 4778, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4776, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5051 ] } ], "tournament_categories_by_pk": [ - 4760, + 5044, { "category": [ - 1400, + 1465, "e_tournament_categories_enum!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_categories_stream": [ - 4760, + 5044, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4780, + 5064, "[tournament_categories_stream_cursor_input]!" ], "where": [ - 4767 + 5051 ] } ], "tournament_organizer_teams": [ - 4784, + 5068, { "distinct_on": [ - 4802, + 5086, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4800, + 5084, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4791 + 5075 ] } ], "tournament_organizer_teams_aggregate": [ - 4785, + 5069, { "distinct_on": [ - 4802, + 5086, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4800, + 5084, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4791 + 5075 ] } ], "tournament_organizer_teams_by_pk": [ - 4784, + 5068, { "team_id": [ - 5170, + 5454, "uuid!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_organizer_teams_stream": [ - 4784, + 5068, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4804, + 5088, "[tournament_organizer_teams_stream_cursor_input]!" ], "where": [ - 4791 + 5075 ] } ], "tournament_organizers": [ - 4808, + 5092, { "distinct_on": [ - 4829, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4827, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5101 ] } ], "tournament_organizers_aggregate": [ - 4809, + 5093, { "distinct_on": [ - 4829, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4827, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5101 ] } ], "tournament_organizers_by_pk": [ - 4808, + 5092, { "steam_id": [ - 264, + 269, "bigint!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_organizers_stream": [ - 4808, + 5092, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4837, + 5121, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4817 + 5101 ] } ], "tournament_prizes": [ - 4849, + 5133, { "distinct_on": [ - 4870, + 5154, "[tournament_prizes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4868, + 5152, "[tournament_prizes_order_by!]" ], "where": [ - 4858 + 5142 ] } ], "tournament_prizes_aggregate": [ - 4850, + 5134, { "distinct_on": [ - 4870, + 5154, "[tournament_prizes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4868, + 5152, "[tournament_prizes_order_by!]" ], "where": [ - 4858 + 5142 ] } ], "tournament_prizes_by_pk": [ - 4849, + 5133, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_prizes_stream": [ - 4849, + 5133, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4878, + 5162, "[tournament_prizes_stream_cursor_input]!" ], "where": [ - 4858 + 5142 ] } ], "tournament_stage_windows": [ - 4890, + 5174, { "distinct_on": [ - 4911, + 5195, "[tournament_stage_windows_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4909, + 5193, "[tournament_stage_windows_order_by!]" ], "where": [ - 4899 + 5183 ] } ], "tournament_stage_windows_aggregate": [ - 4891, + 5175, { "distinct_on": [ - 4911, + 5195, "[tournament_stage_windows_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4909, + 5193, "[tournament_stage_windows_order_by!]" ], "where": [ - 4899 + 5183 ] } ], "tournament_stage_windows_by_pk": [ - 4890, + 5174, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4890, + 5174, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4919, + 5203, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4899 + 5183 ] } ], "tournament_stages": [ - 4931, + 5215, { "distinct_on": [ - 4960, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4957, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5227 ] } ], "tournament_stages_aggregate": [ - 4932, + 5216, { "distinct_on": [ - 4960, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4957, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5227 ] } ], "tournament_stages_by_pk": [ - 4931, + 5215, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_stages_stream": [ - 4931, + 5215, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4970, + 5254, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4943 + 5227 ] } ], "tournament_team_invites": [ - 4982, + 5266, { "distinct_on": [ - 5003, + 5287, "[tournament_team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5001, + 5285, "[tournament_team_invites_order_by!]" ], "where": [ - 4991 + 5275 ] } ], "tournament_team_invites_aggregate": [ - 4983, + 5267, { "distinct_on": [ - 5003, + 5287, "[tournament_team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5001, + 5285, "[tournament_team_invites_order_by!]" ], "where": [ - 4991 + 5275 ] } ], "tournament_team_invites_by_pk": [ - 4982, + 5266, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4982, + 5266, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5011, + 5295, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4991 + 5275 ] } ], "tournament_team_roster": [ - 5023, + 5307, { "distinct_on": [ - 5044, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5042, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5316 ] } ], "tournament_team_roster_aggregate": [ - 5024, + 5308, { "distinct_on": [ - 5044, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5042, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5316 ] } ], "tournament_team_roster_by_pk": [ - 5023, + 5307, { "player_steam_id": [ - 264, + 269, "bigint!" ], "tournament_id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_team_roster_stream": [ - 5023, + 5307, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5052, + 5336, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 5032 + 5316 ] } ], "tournament_teams": [ - 5064, + 5348, { "distinct_on": [ - 5086, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5084, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5357 ] } ], "tournament_teams_aggregate": [ - 5065, + 5349, { "distinct_on": [ - 5086, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5084, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5357 ] } ], "tournament_teams_by_pk": [ - 5064, + 5348, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournament_teams_stream": [ - 5064, + 5348, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5094, + 5378, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 5073 + 5357 ] } ], "tournaments": [ - 5106, + 5390, { "distinct_on": [ - 5140, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5138, + 5422, "[tournaments_order_by!]" ], "where": [ - 5127 + 5411 ] } ], "tournaments_aggregate": [ - 5107, + 5391, { "distinct_on": [ - 5140, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5138, + 5422, "[tournaments_order_by!]" ], "where": [ - 5127 + 5411 ] } ], "tournaments_by_pk": [ - 5106, + 5390, { "id": [ - 5170, + 5454, "uuid!" ] } ], "tournaments_stream": [ - 5106, + 5390, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5158, + 5442, "[tournaments_stream_cursor_input]!" ], "where": [ - 5127 + 5411 ] } ], "v_event_player_stats": [ - 5173, + 5457, { "distinct_on": [ - 5199, + 5483, "[v_event_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5198, + 5482, "[v_event_player_stats_order_by!]" ], "where": [ - 5192 + 5476 ] } ], "v_event_player_stats_aggregate": [ - 5174, + 5458, { "distinct_on": [ - 5199, + 5483, "[v_event_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5198, + 5482, "[v_event_player_stats_order_by!]" ], "where": [ - 5192 + 5476 ] } ], "v_event_player_stats_stream": [ - 5173, + 5457, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5214, + 5498, "[v_event_player_stats_stream_cursor_input]!" ], "where": [ - 5192 + 5476 ] } ], "v_gpu_pool_status": [ - 5224, + 5508, { "distinct_on": [ - 5232, + 5516, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5231, + 5515, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5228 + 5512 ] } ], "v_gpu_pool_status_aggregate": [ - 5225, + 5509, { "distinct_on": [ - 5232, + 5516, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5231, + 5515, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5228 + 5512 ] } ], "v_gpu_pool_status_stream": [ - 5224, + 5508, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5236, + 5520, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 5228 + 5512 ] } ], "v_league_division_standings": [ - 5242, + 5526, { "distinct_on": [ - 5258, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5257, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5535 ] } ], "v_league_division_standings_aggregate": [ - 5243, + 5527, { "distinct_on": [ - 5258, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5257, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5535 ] } ], "v_league_division_standings_stream": [ - 5242, + 5526, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5265, + 5549, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 5251 + 5535 ] } ], "v_league_season_player_stats": [ - 5275, + 5559, { "distinct_on": [ - 5301, + 5585, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5300, + 5584, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5294 + 5578 ] } ], "v_league_season_player_stats_aggregate": [ - 5276, + 5560, { "distinct_on": [ - 5301, + 5585, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5300, + 5584, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5294 + 5578 ] } ], "v_league_season_player_stats_stream": [ - 5275, + 5559, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5316, + 5600, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 5294 + 5578 ] } ], "v_match_captains": [ - 5326, + 5610, { "distinct_on": [ - 5338, + 5622, "[v_match_captains_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5337, + 5621, "[v_match_captains_order_by!]" ], "where": [ - 5330 + 5614 ] } ], "v_match_captains_aggregate": [ - 5327, + 5611, { "distinct_on": [ - 5338, + 5622, "[v_match_captains_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5337, + 5621, "[v_match_captains_order_by!]" ], "where": [ - 5330 + 5614 ] } ], "v_match_captains_stream": [ - 5326, + 5610, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5343, + 5627, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 5330 + 5614 ] } ], "v_match_clutches": [ - 5350, + 5634, { "distinct_on": [ - 5366, + 5650, "[v_match_clutches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5365, + 5649, "[v_match_clutches_order_by!]" ], "where": [ - 5359 + 5643 ] } ], "v_match_clutches_aggregate": [ - 5351, + 5635, { "distinct_on": [ - 5366, + 5650, "[v_match_clutches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5365, + 5649, "[v_match_clutches_order_by!]" ], "where": [ - 5359 + 5643 ] } ], "v_match_clutches_stream": [ - 5350, + 5634, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5373, + 5657, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 5359 + 5643 ] } ], "v_match_kill_pairs": [ - 5383, + 5667, { "distinct_on": [ - 5391, + 5675, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5390, + 5674, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5387 + 5671 ] } ], "v_match_kill_pairs_aggregate": [ - 5384, + 5668, { "distinct_on": [ - 5391, + 5675, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5390, + 5674, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5387 + 5671 ] } ], "v_match_kill_pairs_stream": [ - 5383, + 5667, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5395, + 5679, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 5387 + 5671 ] } ], "v_match_lineup_buy_types": [ - 5401, + 5685, { "distinct_on": [ - 5409, + 5693, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5408, + 5692, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5405 + 5689 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5402, + 5686, { "distinct_on": [ - 5409, + 5693, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5408, + 5692, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5405 + 5689 ] } ], "v_match_lineup_buy_types_stream": [ - 5401, + 5685, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5413, + 5697, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 5405 + 5689 ] } ], "v_match_lineup_map_stats": [ - 5419, + 5703, { "distinct_on": [ - 5427, + 5711, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5426, + 5710, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5423 + 5707 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5420, + 5704, { "distinct_on": [ - 5427, + 5711, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5426, + 5710, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5423 + 5707 ] } ], "v_match_lineup_map_stats_stream": [ - 5419, + 5703, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5431, + 5715, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 5423 + 5707 ] } ], "v_match_map_backup_rounds": [ - 5437, + 5721, { "distinct_on": [ - 5448, + 5732, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5447, + 5731, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5441 + 5725 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5438, + 5722, { "distinct_on": [ - 5448, + 5732, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5447, + 5731, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5441 + 5725 ] } ], "v_match_map_backup_rounds_stream": [ - 5437, + 5721, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5453, + 5737, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 5441 + 5725 ] } ], "v_match_player_buy_types": [ - 5460, + 5744, { "distinct_on": [ - 5468, + 5752, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5467, + 5751, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5464 + 5748 ] } ], "v_match_player_buy_types_aggregate": [ - 5461, + 5745, { "distinct_on": [ - 5468, + 5752, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5467, + 5751, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5464 + 5748 ] } ], "v_match_player_buy_types_stream": [ - 5460, + 5744, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5472, + 5756, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 5464 + 5748 ] } ], "v_match_player_opening_duels": [ - 5478, + 5762, { "distinct_on": [ - 5494, + 5778, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5493, + 5777, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5487 + 5771 ] } ], "v_match_player_opening_duels_aggregate": [ - 5479, + 5763, { "distinct_on": [ - 5494, + 5778, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5493, + 5777, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5487 + 5771 ] } ], "v_match_player_opening_duels_stream": [ - 5478, + 5762, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5501, + 5785, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 5487 + 5771 ] } ], "v_player_arch_nemesis": [ - 5511, + 5795, { "distinct_on": [ - 5519, + 5803, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5518, + 5802, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5515 + 5799 ] } ], "v_player_arch_nemesis_aggregate": [ - 5512, + 5796, { "distinct_on": [ - 5519, + 5803, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5518, + 5802, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5515 + 5799 ] } ], "v_player_arch_nemesis_stream": [ - 5511, + 5795, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5523, + 5807, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 5515 + 5799 ] } ], "v_player_damage": [ - 5529, + 5813, { "distinct_on": [ - 5537, + 5821, "[v_player_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5536, + 5820, "[v_player_damage_order_by!]" ], "where": [ - 5533 + 5817 ] } ], "v_player_damage_aggregate": [ - 5530, + 5814, { "distinct_on": [ - 5537, + 5821, "[v_player_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5536, + 5820, "[v_player_damage_order_by!]" ], "where": [ - 5533 + 5817 ] } ], "v_player_damage_stream": [ - 5529, + 5813, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5541, + 5825, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 5533 + 5817 ] } ], "v_player_elo": [ - 5547, + 5831, { "distinct_on": [ - 5573, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5572, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5850 ] } ], "v_player_elo_aggregate": [ - 5548, + 5832, { "distinct_on": [ - 5573, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5572, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5850 ] } ], "v_player_elo_stream": [ - 5547, + 5831, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5588, + 5872, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 5566 + 5850 ] } ], "v_player_map_losses": [ - 5598, + 5882, { "distinct_on": [ - 5606, + 5890, "[v_player_map_losses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5605, + 5889, "[v_player_map_losses_order_by!]" ], "where": [ - 5602 + 5886 ] } ], "v_player_map_losses_aggregate": [ - 5599, + 5883, { "distinct_on": [ - 5606, + 5890, "[v_player_map_losses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5605, + 5889, "[v_player_map_losses_order_by!]" ], "where": [ - 5602 + 5886 ] } ], "v_player_map_losses_stream": [ - 5598, + 5882, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5610, + 5894, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 5602 + 5886 ] } ], "v_player_map_wins": [ - 5616, + 5900, { "distinct_on": [ - 5624, + 5908, "[v_player_map_wins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5623, + 5907, "[v_player_map_wins_order_by!]" ], "where": [ - 5620 + 5904 ] } ], "v_player_map_wins_aggregate": [ - 5617, + 5901, { "distinct_on": [ - 5624, + 5908, "[v_player_map_wins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5623, + 5907, "[v_player_map_wins_order_by!]" ], "where": [ - 5620 + 5904 ] } ], "v_player_map_wins_stream": [ - 5616, + 5900, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5628, + 5912, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 5620 + 5904 ] } ], "v_player_match_head_to_head": [ - 5634, + 5918, { "distinct_on": [ - 5642, + 5926, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5641, + 5925, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5638 + 5922 ] } ], "v_player_match_head_to_head_aggregate": [ - 5635, + 5919, { "distinct_on": [ - 5642, + 5926, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5641, + 5925, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5638 + 5922 ] } ], "v_player_match_head_to_head_stream": [ - 5634, + 5918, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5646, + 5930, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 5638 + 5922 ] } ], "v_player_match_map_hltv": [ - 5652, + 5936, { "distinct_on": [ - 5670, + 5954, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5669, + 5953, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5661 + 5945 ] } ], "v_player_match_map_hltv_aggregate": [ - 5653, + 5937, { "distinct_on": [ - 5670, + 5954, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5669, + 5953, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5661 + 5945 ] } ], "v_player_match_map_hltv_stream": [ - 5652, + 5936, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5678, + 5962, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 5661 + 5945 ] } ], "v_player_match_map_roles": [ - 5689, + 5973, { "distinct_on": [ - 5697, + 5981, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5696, + 5980, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5693 + 5977 ] } ], "v_player_match_map_roles_aggregate": [ - 5690, + 5974, { "distinct_on": [ - 5697, + 5981, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5696, + 5980, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5693 + 5977 ] } ], "v_player_match_map_roles_stream": [ - 5689, + 5973, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5701, + 5985, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 5693 + 5977 ] } ], "v_player_match_performance": [ - 5707, + 5991, { "distinct_on": [ - 5715, + 5999, "[v_player_match_performance_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5714, + 5998, "[v_player_match_performance_order_by!]" ], "where": [ - 5711 + 5995 ] } ], "v_player_match_performance_aggregate": [ - 5708, + 5992, { "distinct_on": [ - 5715, + 5999, "[v_player_match_performance_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5714, + 5998, "[v_player_match_performance_order_by!]" ], "where": [ - 5711 + 5995 ] } ], "v_player_match_performance_stream": [ - 5707, + 5991, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5719, + 6003, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 5711 + 5995 ] } ], "v_player_match_rating": [ - 5725, + 6009, { "distinct_on": [ - 5733, + 6017, "[v_player_match_rating_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5732, + 6016, "[v_player_match_rating_order_by!]" ], "where": [ - 5729 + 6013 ] } ], "v_player_match_rating_aggregate": [ - 5726, + 6010, { "distinct_on": [ - 5733, + 6017, "[v_player_match_rating_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5732, + 6016, "[v_player_match_rating_order_by!]" ], "where": [ - 5729 + 6013 ] } ], "v_player_match_rating_stream": [ - 5725, + 6009, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5737, + 6021, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 5729 + 6013 ] } ], "v_player_multi_kills": [ - 5743, + 6027, { "distinct_on": [ - 5759, + 6043, "[v_player_multi_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5758, + 6042, "[v_player_multi_kills_order_by!]" ], "where": [ - 5752 + 6036 ] } ], "v_player_multi_kills_aggregate": [ - 5744, + 6028, { "distinct_on": [ - 5759, + 6043, "[v_player_multi_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5758, + 6042, "[v_player_multi_kills_order_by!]" ], "where": [ - 5752 + 6036 ] } ], "v_player_multi_kills_stream": [ - 5743, + 6027, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5766, + 6050, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 5752 + 6036 ] } ], "v_player_queue_partners": [ - 5776, + 6060, { "distinct_on": [ - 5784, + 6068, "[v_player_queue_partners_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5783, + 6067, "[v_player_queue_partners_order_by!]" ], "where": [ - 5780 + 6064 ] } ], "v_player_queue_partners_aggregate": [ - 5777, + 6061, { "distinct_on": [ - 5784, + 6068, "[v_player_queue_partners_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5783, + 6067, "[v_player_queue_partners_order_by!]" ], "where": [ - 5780 + 6064 ] } ], "v_player_queue_partners_stream": [ - 5776, + 6060, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5788, + 6072, "[v_player_queue_partners_stream_cursor_input]!" ], "where": [ - 5780 + 6064 ] } ], "v_player_weapon_damage": [ - 5794, + 6078, { "distinct_on": [ - 5802, + 6086, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5801, + 6085, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5798 + 6082 ] } ], "v_player_weapon_damage_aggregate": [ - 5795, + 6079, { "distinct_on": [ - 5802, + 6086, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5801, + 6085, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5798 + 6082 ] } ], "v_player_weapon_damage_stream": [ - 5794, + 6078, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5806, + 6090, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5798 + 6082 ] } ], "v_player_weapon_kills": [ - 5812, + 6096, { "distinct_on": [ - 5820, + 6104, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5819, + 6103, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5816 + 6100 ] } ], "v_player_weapon_kills_aggregate": [ - 5813, + 6097, { "distinct_on": [ - 5820, + 6104, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5819, + 6103, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5816 + 6100 ] } ], "v_player_weapon_kills_stream": [ - 5812, + 6096, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5824, + 6108, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5816 + 6100 ] } ], "v_pool_maps": [ - 5830, + 6114, { "distinct_on": [ - 5847, + 6131, "[v_pool_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5846, + 6130, "[v_pool_maps_order_by!]" ], "where": [ - 5839 + 6123 ] } ], "v_pool_maps_aggregate": [ - 5831, + 6115, { "distinct_on": [ - 5847, + 6131, "[v_pool_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5846, + 6130, "[v_pool_maps_order_by!]" ], "where": [ - 5839 + 6123 ] } ], "v_pool_maps_stream": [ - 5830, + 6114, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5851, + 6135, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5839 + 6123 ] } ], "v_steam_account_pool_status": [ - 5854, + 6138, { "distinct_on": [ - 5862, + 6146, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5861, + 6145, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5858 + 6142 ] } ], "v_steam_account_pool_status_aggregate": [ - 5855, + 6139, { "distinct_on": [ - 5862, + 6146, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5861, + 6145, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5858 + 6142 ] } ], "v_steam_account_pool_status_stream": [ - 5854, + 6138, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5866, + 6150, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5858 + 6142 ] } ], "v_team_ranks": [ - 5872, + 6156, { "distinct_on": [ - 5882, + 6166, "[v_team_ranks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5881, + 6165, "[v_team_ranks_order_by!]" ], "where": [ - 5876 + 6160 ] } ], "v_team_ranks_aggregate": [ - 5873, + 6157, { "distinct_on": [ - 5882, + 6166, "[v_team_ranks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5881, + 6165, "[v_team_ranks_order_by!]" ], "where": [ - 5876 + 6160 ] } ], "v_team_ranks_stream": [ - 5872, + 6156, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5886, + 6170, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5876 + 6160 ] } ], "v_team_reputation": [ - 5892, + 6176, { "distinct_on": [ - 5902, + 6186, "[v_team_reputation_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5901, + 6185, "[v_team_reputation_order_by!]" ], "where": [ - 5896 + 6180 ] } ], "v_team_reputation_aggregate": [ - 5893, + 6177, { "distinct_on": [ - 5902, + 6186, "[v_team_reputation_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5901, + 6185, "[v_team_reputation_order_by!]" ], "where": [ - 5896 + 6180 ] } ], "v_team_reputation_stream": [ - 5892, + 6176, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5906, + 6190, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5896 + 6180 ] } ], "v_team_stage_results": [ - 5912, + 6196, { "distinct_on": [ - 5944, + 6228, "[v_team_stage_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5942, + 6226, "[v_team_stage_results_order_by!]" ], "where": [ - 5931 + 6215 ] } ], "v_team_stage_results_aggregate": [ - 5913, + 6197, { "distinct_on": [ - 5944, + 6228, "[v_team_stage_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5942, + 6226, "[v_team_stage_results_order_by!]" ], "where": [ - 5931 + 6215 ] } ], "v_team_stage_results_by_pk": [ - 5912, + 6196, { "tournament_stage_id": [ - 5170, + 5454, "uuid!" ], "tournament_team_id": [ - 5170, + 5454, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5912, + 6196, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5960, + 6244, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5931 + 6215 ] } ], "v_team_tournament_results": [ - 5972, + 6256, { "distinct_on": [ - 5998, + 6282, "[v_team_tournament_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5997, + 6281, "[v_team_tournament_results_order_by!]" ], "where": [ - 5991 + 6275 ] } ], "v_team_tournament_results_aggregate": [ - 5973, + 6257, { "distinct_on": [ - 5998, + 6282, "[v_team_tournament_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5997, + 6281, "[v_team_tournament_results_order_by!]" ], "where": [ - 5991 + 6275 ] } ], "v_team_tournament_results_stream": [ - 5972, + 6256, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6013, + 6297, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5991 + 6275 ] } ], "v_tournament_player_stats": [ - 6023, + 6307, { "distinct_on": [ - 6049, + 6333, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6048, + 6332, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6042 + 6326 ] } ], "v_tournament_player_stats_aggregate": [ - 6024, + 6308, { "distinct_on": [ - 6049, + 6333, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6048, + 6332, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6042 + 6326 ] } ], "v_tournament_player_stats_stream": [ - 6023, + 6307, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6064, + 6348, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 6042 + 6326 ] } ], "__typename": [ - 80 + 84 ] } } diff --git a/hasura/enums/game-modes.sql b/hasura/enums/game-modes.sql new file mode 100644 index 000000000..8a524e127 --- /dev/null +++ b/hasura/enums/game-modes.sql @@ -0,0 +1,48 @@ +-- Starter modes, seeded on every boot so a fresh install has something to pick +-- besides "Competitive". Enum-style upsert: the name and description follow the +-- ship, but enabled / competitive_safe / cfg are left alone once an operator has +-- touched them, and anything they add of their own is untouched. +-- +-- Runtime compatibility is NOT declared here. It is derived from the plugins +-- each mode selects, so a mode whose plugin has no build for this deployment +-- reports that by name rather than booting a server with nothing loaded. +insert into game_modes (slug, name, description, competitive_safe, enabled, cfg) +values + ( + 'retakes', + 'Retakes', + 'Bombsite retakes: the bomb is planted, T''s defend, CT''s retake. Fast rounds, no buy time.', + false, + true, + 'mp_maxrounds 0' || chr(10) || + 'mp_freezetime 3' || chr(10) || + 'mp_round_restart_delay 3' || chr(10) || + 'mp_ignore_round_win_conditions 1' || chr(10) || + 'mp_respawn_on_death_ct 0' || chr(10) || + 'mp_respawn_on_death_t 0' + ), + ( + 'deathmatch', + 'Deathmatch', + 'Free-for-all warmup with instant respawns and a weapon menu.', + false, + true, + 'mp_maxrounds 0' || chr(10) || + 'mp_freezetime 0' || chr(10) || + 'mp_respawn_immunitytime 2' || chr(10) || + 'mp_ignore_round_win_conditions 1' || chr(10) || + 'mp_teammates_are_enemies 1' + ) +on conflict (slug) do update set + name = excluded.name, + description = excluded.description; + +-- Wire each starter mode to its plugin, but only once that plugin is in the +-- catalog: the registry syncs on its own schedule, so on a first boot these +-- modes exist with no plugins and pick them up on a later pass. +insert into game_mode_plugins (game_mode_id, plugin_slug, load_order) +select m.id, p.slug, 0 + from game_modes m + join game_plugins p on p.slug = m.slug + where m.slug in ('retakes', 'deathmatch') +on conflict (game_mode_id, plugin_slug) do nothing; diff --git a/hasura/enums/game-plugin-channels.sql b/hasura/enums/game-plugin-channels.sql new file mode 100644 index 000000000..5c56ba21e --- /dev/null +++ b/hasura/enums/game-plugin-channels.sql @@ -0,0 +1,4 @@ +insert into e_game_plugin_channels ("value", "description") values + ('Pinned', 'Stay on the installed version; a newer release only raises a notification'), + ('Auto', 'Install new upstream releases automatically') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/enums/game-plugin-install-statuses.sql b/hasura/enums/game-plugin-install-statuses.sql new file mode 100644 index 000000000..1b290bca3 --- /dev/null +++ b/hasura/enums/game-plugin-install-statuses.sql @@ -0,0 +1,7 @@ +insert into e_game_plugin_install_statuses ("value", "description") values + ('Pending', 'Queued for install on the node'), + ('Installing', 'Downloading and unpacking into the node plugin store'), + ('Installed', 'Present in the node plugin store and ready to be selected by a mode'), + ('Failed', 'Install did not complete; see the recorded error'), + ('Removing', 'Being deleted from the node plugin store') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/enums/game-plugin-kinds.sql b/hasura/enums/game-plugin-kinds.sql new file mode 100644 index 000000000..a2ef291d0 --- /dev/null +++ b/hasura/enums/game-plugin-kinds.sql @@ -0,0 +1,5 @@ +insert into e_game_plugin_kinds ("value", "description") values + ('game', 'A CS2 server plugin that loads into the game server'), + ('panel', 'A web app that mounts as a page inside the panel'), + ('bundle', 'A panel plugin and a game plugin installed and wired together') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/functions/game-plugins/install_state.sql b/hasura/functions/game-plugins/install_state.sql new file mode 100644 index 000000000..78693f110 --- /dev/null +++ b/hasura/functions/game-plugins/install_state.sql @@ -0,0 +1,85 @@ +-- How far a requested plugin has actually got. Nodes converge on their own +-- schedule, so "installed" is never a single boolean: it is a count of the +-- nodes that have it against the nodes that should. +-- +-- Every count below joins game_server_nodes and filters the same way as +-- game_plugin_target_node_count. Counting rows for nodes the target excludes is +-- what let a plugin present only on disabled nodes report Installed, and let a +-- Failed row on a decommissioned node pin the plugin at Failed forever -- +-- disabling a node does not delete what it reported. +CREATE OR REPLACE FUNCTION public.game_plugin_installed_node_count( + plugin public.game_plugins +) RETURNS integer AS $$ + SELECT count(*)::integer + FROM public.game_server_node_plugins n + INNER JOIN public.game_server_nodes g ON g.id = n.game_server_node_id + WHERE n.plugin_slug = plugin.slug + AND n.source = 'managed' + AND n.detected = true + AND g.enabled = true + AND g.status IN ('Online', 'NotAcceptingNewMatches'); +$$ LANGUAGE sql STABLE; + +CREATE OR REPLACE FUNCTION public.game_plugin_target_node_count( + plugin public.game_plugins +) RETURNS integer AS $$ + SELECT count(*)::integer + FROM public.game_server_nodes + WHERE enabled = true + AND status IN ('Online', 'NotAcceptingNewMatches'); +$$ LANGUAGE sql STABLE; + +CREATE OR REPLACE FUNCTION public.game_plugin_install_state( + plugin public.game_plugins +) RETURNS text AS $$ +DECLARE + _requested boolean; + _installed integer; + _target integer; + _failed integer; + _manual boolean; +BEGIN + SELECT EXISTS ( + SELECT 1 FROM public.game_plugin_installs + WHERE plugin_slug = plugin.slug AND enabled = true + ) INTO _requested; + + SELECT count(*) FILTER (WHERE n.source = 'managed' AND n.detected = true), + count(*) FILTER (WHERE n.status = 'Failed'), + bool_or(n.source = 'manual') + INTO _installed, _failed, _manual + FROM public.game_server_node_plugins n + INNER JOIN public.game_server_nodes g ON g.id = n.game_server_node_id + WHERE n.plugin_slug = plugin.slug + AND g.enabled = true + AND g.status IN ('Online', 'NotAcceptingNewMatches'); + + IF NOT _requested THEN + -- Present without being asked for: dropped in by hand. Reported rather + -- than hidden, because it loads on every server regardless of mode. + IF _installed > 0 OR COALESCE(_manual, false) THEN + RETURN 'Manual'; + END IF; + + RETURN 'NotInstalled'; + END IF; + + SELECT count(*) INTO _target + FROM public.game_server_nodes + WHERE enabled = true AND status IN ('Online', 'NotAcceptingNewMatches'); + + IF _failed > 0 THEN + RETURN 'Failed'; + END IF; + + IF _target = 0 OR _installed = 0 THEN + RETURN 'Pending'; + END IF; + + IF _installed >= _target THEN + RETURN 'Installed'; + END IF; + + RETURN 'Partial'; +END; +$$ LANGUAGE plpgsql STABLE; diff --git a/hasura/functions/game-plugins/mode_runtimes.sql b/hasura/functions/game-plugins/mode_runtimes.sql new file mode 100644 index 000000000..0a54b6c80 --- /dev/null +++ b/hasura/functions/game-plugins/mode_runtimes.sql @@ -0,0 +1,59 @@ +-- These returned text[] before. CREATE OR REPLACE cannot change a function's +-- return type, so any database that already has the old signature needs it +-- dropped first -- this file is re-applied on every boot. +DROP FUNCTION IF EXISTS public.game_mode_supported_runtimes(public.game_modes); +DROP FUNCTION IF EXISTS public.game_mode_runtime_conflicts(public.game_modes); + +-- Which frameworks a mode can actually run on: the intersection of what every +-- plugin in it publishes for. An empty result means the selection is impossible +-- -- two plugins that exist for different frameworks and can never load together. +-- jsonb, not text[]: Hasura only accepts a base type as a computed field's +-- return, and an array type is not one. It arrives in GraphQL as a JSON array +-- either way. +CREATE OR REPLACE FUNCTION public.game_mode_supported_runtimes(mode public.game_modes) + RETURNS jsonb + LANGUAGE sql + STABLE + AS $$ + SELECT to_jsonb(CASE + -- A mode with no plugins is just cvars and a map pool, so it runs anywhere. + WHEN NOT EXISTS ( + SELECT 1 FROM public.game_mode_plugins WHERE game_mode_id = mode.id + ) + THEN ARRAY(SELECT value FROM public.e_plugin_runtimes ORDER BY value) + ELSE ARRAY( + SELECT r.value + FROM public.e_plugin_runtimes r + WHERE NOT EXISTS ( + SELECT 1 + FROM public.game_mode_plugins mp + WHERE mp.game_mode_id = mode.id + AND NOT EXISTS ( + SELECT 1 + FROM public.game_plugin_versions v + WHERE v.plugin_slug = mp.plugin_slug + AND v.runtime = r.value + ) + ) + ORDER BY r.value + ) + END); +$$; + +-- Named so the panel can say which plugin is the odd one out rather than only +-- that the combination does not work. +CREATE OR REPLACE FUNCTION public.game_mode_runtime_conflicts(mode public.game_modes) + RETURNS jsonb + LANGUAGE sql + STABLE + AS $$ + SELECT to_jsonb(COALESCE(array_agg(mp.plugin_slug ORDER BY mp.plugin_slug), ARRAY[]::text[])) + FROM public.game_mode_plugins mp + WHERE mp.game_mode_id = mode.id + AND NOT EXISTS ( + SELECT 1 + FROM public.game_plugin_versions v + WHERE v.plugin_slug = mp.plugin_slug + AND v.runtime = public.active_plugin_runtime() + ); +$$; diff --git a/hasura/functions/leaderboard/get_leaderboard.sql b/hasura/functions/leaderboard/get_leaderboard.sql index 6932035d0..c69c5a1f4 100644 --- a/hasura/functions/leaderboard/get_leaderboard.sql +++ b/hasura/functions/leaderboard/get_leaderboard.sql @@ -300,6 +300,7 @@ BEGIN JOIN match_options mo ON mo.id = m.match_options_id WHERE m.status = 'Finished' AND m.source = '5stack' + AND m.counts_toward_ranking = true AND mlp.steam_id IS NOT NULL AND m.winning_lineup_id IS NOT NULL AND ((_from IS NULL OR m.ended_at >= _from) AND (_to IS NULL OR m.ended_at < _to)) @@ -424,6 +425,7 @@ BEGIN JOIN match_options mo ON mo.id = m.match_options_id WHERE m.status = 'Finished' AND m.source = '5stack' + AND m.counts_toward_ranking = true AND mlp.steam_id IS NOT NULL AND m.winning_lineup_id IS NOT NULL AND ((_from IS NULL OR m.ended_at >= _from) AND (_to IS NULL OR m.ended_at < _to)) @@ -534,6 +536,7 @@ BEGIN JOIN match_options mo ON mo.id = m.match_options_id WHERE m.status = 'Finished' AND m.source = '5stack' + AND m.counts_toward_ranking = true AND mlp.steam_id IS NOT NULL AND m.winning_lineup_id IS NOT NULL AND ((_from IS NULL OR m.ended_at >= _from) AND (_to IS NULL OR m.ended_at < _to)) @@ -619,6 +622,7 @@ BEGIN WHERE pk.attacker_steam_id IS NOT NULL AND pk.attacker_steam_id != pk.attacked_steam_id AND m.source = '5stack' + AND m.counts_toward_ranking = true AND ((_from IS NULL OR pk.time >= _from) AND (_to IS NULL OR pk.time < _to)) AND (_match_type IS NULL OR mo.type = _match_type) AND (NOT _exclude_tournaments OR NOT EXISTS (SELECT 1 FROM tournament_brackets tb WHERE tb.match_id = pk.match_id)) @@ -634,6 +638,7 @@ BEGIN JOIN match_options mo2 ON mo2.id = m2.match_options_id WHERE 1=1 AND m2.source = '5stack' + AND m2.counts_toward_ranking = true AND ((_from IS NULL OR dk.time >= _from) AND (_to IS NULL OR dk.time < _to)) AND (_match_type IS NULL OR mo2.type = _match_type) AND (NOT _exclude_tournaments OR NOT EXISTS (SELECT 1 FROM tournament_brackets tb WHERE tb.match_id = dk.match_id)) @@ -703,6 +708,7 @@ BEGIN JOIN match_options mo ON mo.id = m.match_options_id WHERE m.status = 'Finished' AND m.source = '5stack' + AND m.counts_toward_ranking = true AND mlp.steam_id IS NOT NULL AND m.winning_lineup_id IS NOT NULL AND ((_from IS NULL OR m.ended_at >= _from) AND (_to IS NULL OR m.ended_at < _to)) @@ -776,6 +782,7 @@ BEGIN WHERE pk.attacker_steam_id IS NOT NULL AND pk.attacker_steam_id != pk.attacked_steam_id AND m.source = '5stack' + AND m.counts_toward_ranking = true AND ((_from IS NULL OR pk.time >= _from) AND (_to IS NULL OR pk.time < _to)) AND (_match_type IS NULL OR mo.type = _match_type) AND (NOT _exclude_tournaments OR NOT EXISTS (SELECT 1 FROM tournament_brackets tb WHERE tb.match_id = pk.match_id)) @@ -1002,6 +1009,7 @@ BEGIN AND r.match_map_id = h.match_map_id AND r.steam_id = h.steam_id WHERE m.source = '5stack' + AND m.counts_toward_ranking = true AND ((_from IS NULL OR m.created_at >= _from) AND (_to IS NULL OR m.created_at < _to)) AND (_match_type IS NULL OR mo.type = _match_type) AND (NOT _exclude_tournaments OR NOT EXISTS (SELECT 1 FROM tournament_brackets tb WHERE tb.match_id = h.match_id)) @@ -1084,6 +1092,7 @@ BEGIN AND r.match_map_id = s.match_map_id AND r.steam_id = s.steam_id WHERE m.source = '5stack' + AND m.counts_toward_ranking = true AND ((_from IS NULL OR m.created_at >= _from) AND (_to IS NULL OR m.created_at < _to)) AND (_match_type IS NULL OR mo.type = _match_type) AND (NOT _exclude_tournaments OR NOT EXISTS (SELECT 1 FROM tournament_brackets tb WHERE tb.match_id = s.match_id)) diff --git a/hasura/functions/match/match_player_elo.sql b/hasura/functions/match/match_player_elo.sql index 8a90556ce..50d56e9f9 100644 --- a/hasura/functions/match/match_player_elo.sql +++ b/hasura/functions/match/match_player_elo.sql @@ -444,6 +444,14 @@ BEGIN RETURN 0; END IF; + -- Played under a game mode that is not marked safe for competitive play. + -- The match is real -- stats, demos and rounds are all recorded -- it just + -- does not move anybody's rating. Decided when the match was created, so + -- editing the mode later cannot rewrite history. + IF match_record.counts_toward_ranking = false THEN + RETURN 0; + END IF; + -- Skip matches without a winning_lineup_id IF match_record.winning_lineup_id IS NULL THEN RAISE NOTICE 'Skipping match % as it has no winning_lineup_id', _match_id; diff --git a/hasura/metadata/actions.graphql b/hasura/metadata/actions.graphql index 71a07f73d..1370a076e 100644 --- a/hasura/metadata/actions.graphql +++ b/hasura/metadata/actions.graphql @@ -1253,6 +1253,13 @@ type TelemetryFleetTotals { scrimRequests: Int! events: Int! eventTeams: Int! + pluginsReported: Int! + pluginsRequested: Int! + pluginsManual: Int! + gameModes: Int! + gameModesEnabled: Int! + gameModesUnranked: Int! + pluginsBySlug: jsonb } type TelemetryFeatureAdoption { @@ -1823,3 +1830,82 @@ type TournamentAward { silhouette: Int image_url: String } + +type SyncPluginRegistryOutput { + plugins: Int! + versions: Int! +} + +type ReconcileNodePluginsOutput { + detected: Int! +} + +type PreviewGameModeOutput { + enabledPlugins: String! + cfg: String + extraGameParams: String +} + +type Mutation { + syncPluginRegistry: SyncPluginRegistryOutput +} + +type Mutation { + installGamePlugin( + slug: String! + version: String + ): SuccessOutput +} + +type Mutation { + uninstallGamePlugin( + slug: String! + force: Boolean + ): SuccessOutput +} + +type Mutation { + reconcileNodePlugins( + nodeId: String! + ): ReconcileNodePluginsOutput +} + +type AddCustomGamePluginOutput { + slug: String! + name: String! + version: String! + runtime: String! +} + +type Mutation { + addCustomGamePlugin( + url: String! + runtime: String! + slug: String + name: String + description: String + version: String + layout: String + installPath: String + ): AddCustomGamePluginOutput +} + +type Mutation { + previewGameMode( + gameModeId: uuid! + ): PreviewGameModeOutput +} + +type PluginReadmeOutput { + repo: String + content: String + format: String + url: String +} + +type Mutation { + getPluginReadme( + slug: String! + runtime: String + ): PluginReadmeOutput +} diff --git a/hasura/metadata/actions.yaml b/hasura/metadata/actions.yaml index 54bdadf70..1d8056e43 100644 --- a/hasura/metadata/actions.yaml +++ b/hasura/metadata/actions.yaml @@ -1155,6 +1155,62 @@ actions: forward_client_headers: true permissions: - role: administrator + - name: syncPluginRegistry + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Pull the game plugin registry into this panel's catalog + - name: getPluginReadme + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Fetch a plugin's README from its repository + - name: installGamePlugin + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Install a game plugin into a node's plugin store + - name: uninstallGamePlugin + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Remove a game plugin from a node's plugin store + - name: reconcileNodePlugins + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Re-read which plugins are actually on a node + - name: addCustomGamePlugin + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Add a game plugin the registry does not carry, from a release URL + - name: previewGameMode + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Resolve a game mode into the plugins and cfg a server would load - name: validateGamedata definition: kind: synchronous diff --git a/hasura/metadata/databases/default/tables/public_custom_pages.yaml b/hasura/metadata/databases/default/tables/public_custom_pages.yaml index 34edca211..503ca513e 100644 --- a/hasura/metadata/databases/default/tables/public_custom_pages.yaml +++ b/hasura/metadata/databases/default/tables/public_custom_pages.yaml @@ -18,6 +18,7 @@ insert_permissions: - nav_group - nav_order - profile_tab_label + - plugin_slug - deployments - manifest_url comment: "" @@ -38,6 +39,7 @@ select_permissions: - nav_group - nav_order - profile_tab_label + - plugin_slug - deployments - manifest_url - created_at @@ -61,6 +63,7 @@ select_permissions: - nav_group - nav_order - profile_tab_label + - plugin_slug filter: _and: - enabled: @@ -84,6 +87,7 @@ select_permissions: - nav_group - nav_order - profile_tab_label + - plugin_slug filter: _and: - enabled: @@ -111,6 +115,7 @@ select_permissions: - nav_group - nav_order - profile_tab_label + - plugin_slug filter: _and: - enabled: @@ -139,6 +144,7 @@ select_permissions: - nav_group - nav_order - profile_tab_label + - plugin_slug filter: _and: - enabled: @@ -168,6 +174,7 @@ select_permissions: - nav_group - nav_order - profile_tab_label + - plugin_slug filter: _and: - enabled: @@ -198,6 +205,7 @@ select_permissions: - nav_group - nav_order - profile_tab_label + - plugin_slug filter: _and: - enabled: @@ -229,6 +237,7 @@ select_permissions: - nav_group - nav_order - profile_tab_label + - plugin_slug filter: _and: - enabled: @@ -261,6 +270,7 @@ update_permissions: - nav_group - nav_order - profile_tab_label + - plugin_slug - deployments - manifest_url filter: {} diff --git a/hasura/metadata/databases/default/tables/public_e_game_plugin_channels.yaml b/hasura/metadata/databases/default/tables/public_e_game_plugin_channels.yaml new file mode 100644 index 000000000..20797afac --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_game_plugin_channels.yaml @@ -0,0 +1,19 @@ +table: + name: e_game_plugin_channels + schema: public +is_enum: true +select_permissions: + - role: administrator + permission: + columns: + - description + - value + filter: {} + comment: "" + - role: user + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_e_game_plugin_install_statuses.yaml b/hasura/metadata/databases/default/tables/public_e_game_plugin_install_statuses.yaml new file mode 100644 index 000000000..0cd526ade --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_game_plugin_install_statuses.yaml @@ -0,0 +1,19 @@ +table: + name: e_game_plugin_install_statuses + schema: public +is_enum: true +select_permissions: + - role: administrator + permission: + columns: + - description + - value + filter: {} + comment: "" + - role: user + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_e_game_plugin_kinds.yaml b/hasura/metadata/databases/default/tables/public_e_game_plugin_kinds.yaml new file mode 100644 index 000000000..a313722fc --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_game_plugin_kinds.yaml @@ -0,0 +1,19 @@ +table: + name: e_game_plugin_kinds + schema: public +is_enum: true +select_permissions: + - role: administrator + permission: + columns: + - description + - value + filter: {} + comment: "" + - role: user + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_game_mode_plugins.yaml b/hasura/metadata/databases/default/tables/public_game_mode_plugins.yaml new file mode 100644 index 000000000..5cc948128 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_game_mode_plugins.yaml @@ -0,0 +1,127 @@ +table: + name: game_mode_plugins + schema: public +object_relationships: + - name: game_mode + using: + foreign_key_constraint_on: game_mode_id + - name: plugin + using: + foreign_key_constraint_on: plugin_slug +select_permissions: + - role: administrator + permission: + columns: + - game_mode_id + - plugin_slug + - load_order + - config + - required + filter: {} + allow_aggregations: true + comment: "" + - role: guest + permission: + columns: + - game_mode_id + - plugin_slug + - load_order + - config + - required + filter: {} + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - game_mode_id + - plugin_slug + - load_order + - config + - required + filter: {} + allow_aggregations: true + comment: "" + - role: verified_user + permission: + columns: + - game_mode_id + - plugin_slug + - load_order + - config + - required + filter: {} + allow_aggregations: true + comment: "" + - role: streamer + permission: + columns: + - game_mode_id + - plugin_slug + - load_order + - config + - required + filter: {} + allow_aggregations: true + comment: "" + - role: moderator + permission: + columns: + - game_mode_id + - plugin_slug + - load_order + - config + - required + filter: {} + allow_aggregations: true + comment: "" + - role: match_organizer + permission: + columns: + - game_mode_id + - plugin_slug + - load_order + - config + - required + filter: {} + allow_aggregations: true + comment: "" + - role: tournament_organizer + permission: + columns: + - game_mode_id + - plugin_slug + - load_order + - config + - required + filter: {} + allow_aggregations: true + comment: "" +insert_permissions: + - role: administrator + permission: + check: {} + columns: + - game_mode_id + - plugin_slug + - load_order + - config + - required + comment: "" +update_permissions: + - role: administrator + permission: + columns: + - game_mode_id + - plugin_slug + - load_order + - config + - required + filter: {} + check: {} + comment: "" +delete_permissions: + - role: administrator + permission: + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_game_modes.yaml b/hasura/metadata/databases/default/tables/public_game_modes.yaml new file mode 100644 index 000000000..c71cc7a26 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_game_modes.yaml @@ -0,0 +1,256 @@ +table: + name: game_modes + schema: public +computed_fields: + - name: supported_runtimes + definition: + function: + name: game_mode_supported_runtimes + schema: public + comment: Frameworks every plugin in this mode publishes for; empty means the selection cannot run + - name: runtime_conflicts + definition: + function: + name: game_mode_runtime_conflicts + schema: public + comment: Plugins in this mode with no build for the deployment's runtime +array_relationships: + - name: plugins + using: + foreign_key_constraint_on: + column: game_mode_id + table: + name: game_mode_plugins + schema: public + - name: match_options + using: + foreign_key_constraint_on: + column: game_mode_id + table: + name: match_options + schema: public +select_permissions: + - role: administrator + permission: + columns: + - id + - slug + - name + - description + - icon + - enabled + - archived_at + - competitive_safe + - cfg + - extra_game_params + - created_at + - updated_at + computed_fields: + - supported_runtimes + - runtime_conflicts + filter: {} + allow_aggregations: true + comment: "" + - role: guest + permission: + columns: + - id + - slug + - name + - description + - icon + - enabled + - archived_at + - competitive_safe + - cfg + - extra_game_params + - created_at + - updated_at + computed_fields: + - supported_runtimes + - runtime_conflicts + filter: + archived_at: + _is_null: true + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - id + - slug + - name + - description + - icon + - enabled + - archived_at + - competitive_safe + - cfg + - extra_game_params + - created_at + - updated_at + computed_fields: + - supported_runtimes + - runtime_conflicts + filter: + archived_at: + _is_null: true + allow_aggregations: true + comment: "" + - role: verified_user + permission: + columns: + - id + - slug + - name + - description + - icon + - enabled + - archived_at + - competitive_safe + - cfg + - extra_game_params + - created_at + - updated_at + computed_fields: + - supported_runtimes + - runtime_conflicts + filter: + archived_at: + _is_null: true + allow_aggregations: true + comment: "" + - role: streamer + permission: + columns: + - id + - slug + - name + - description + - icon + - enabled + - archived_at + - competitive_safe + - cfg + - extra_game_params + - created_at + - updated_at + computed_fields: + - supported_runtimes + - runtime_conflicts + filter: + archived_at: + _is_null: true + allow_aggregations: true + comment: "" + - role: moderator + permission: + columns: + - id + - slug + - name + - description + - icon + - enabled + - archived_at + - competitive_safe + - cfg + - extra_game_params + - created_at + - updated_at + computed_fields: + - supported_runtimes + - runtime_conflicts + filter: + archived_at: + _is_null: true + allow_aggregations: true + comment: "" + - role: match_organizer + permission: + columns: + - id + - slug + - name + - description + - icon + - enabled + - archived_at + - competitive_safe + - cfg + - extra_game_params + - created_at + - updated_at + computed_fields: + - supported_runtimes + - runtime_conflicts + filter: + archived_at: + _is_null: true + allow_aggregations: true + comment: "" + - role: tournament_organizer + permission: + columns: + - id + - slug + - name + - description + - icon + - enabled + - archived_at + - competitive_safe + - cfg + - extra_game_params + - created_at + - updated_at + computed_fields: + - supported_runtimes + - runtime_conflicts + filter: + archived_at: + _is_null: true + allow_aggregations: true + comment: "" +insert_permissions: + - role: administrator + permission: + check: {} + columns: + - slug + - name + - description + - icon + - enabled + - archived_at + - competitive_safe + - cfg + - extra_game_params + computed_fields: + - supported_runtimes + - runtime_conflicts + comment: "" +update_permissions: + - role: administrator + permission: + columns: + - slug + - name + - description + - icon + - enabled + - archived_at + - competitive_safe + - cfg + - extra_game_params + computed_fields: + - supported_runtimes + - runtime_conflicts + filter: {} + check: {} + comment: "" +delete_permissions: + - role: administrator + permission: + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_game_plugin_installs.yaml b/hasura/metadata/databases/default/tables/public_game_plugin_installs.yaml new file mode 100644 index 000000000..a69f8a746 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_game_plugin_installs.yaml @@ -0,0 +1,52 @@ +table: + name: game_plugin_installs + schema: public +object_relationships: + - name: plugin + using: + foreign_key_constraint_on: plugin_slug +select_permissions: + - role: administrator + permission: + columns: + - plugin_slug + - version + - channel + - enabled + - always_load + - disable_server_guidelines + - created_at + - updated_at + filter: {} + allow_aggregations: true + comment: "" +insert_permissions: + - role: administrator + permission: + check: {} + columns: + - plugin_slug + - version + - channel + - enabled + - always_load + - disable_server_guidelines + comment: "" +update_permissions: + - role: administrator + permission: + columns: + - plugin_slug + - version + - channel + - enabled + - always_load + - disable_server_guidelines + filter: {} + check: {} + comment: "" +delete_permissions: + - role: administrator + permission: + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_game_plugin_versions.yaml b/hasura/metadata/databases/default/tables/public_game_plugin_versions.yaml new file mode 100644 index 000000000..e5318d19a --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_game_plugin_versions.yaml @@ -0,0 +1,174 @@ +table: + name: game_plugin_versions + schema: public +object_relationships: + - name: plugin + using: + foreign_key_constraint_on: plugin_slug +select_permissions: + - role: administrator + permission: + columns: + - plugin_slug + - runtime + - version + - url + - sha256 + - size + - published_at + - prerelease + - layout + - install_path + filter: {} + allow_aggregations: true + comment: "" + - role: guest + permission: + columns: + - plugin_slug + - runtime + - version + - url + - sha256 + - size + - published_at + - prerelease + - layout + - install_path + filter: {} + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - plugin_slug + - runtime + - version + - url + - sha256 + - size + - published_at + - prerelease + - layout + - install_path + filter: {} + allow_aggregations: true + comment: "" + - role: verified_user + permission: + columns: + - plugin_slug + - runtime + - version + - url + - sha256 + - size + - published_at + - prerelease + - layout + - install_path + filter: {} + allow_aggregations: true + comment: "" + - role: streamer + permission: + columns: + - plugin_slug + - runtime + - version + - url + - sha256 + - size + - published_at + - prerelease + - layout + - install_path + filter: {} + allow_aggregations: true + comment: "" + - role: moderator + permission: + columns: + - plugin_slug + - runtime + - version + - url + - sha256 + - size + - published_at + - prerelease + - layout + - install_path + filter: {} + allow_aggregations: true + comment: "" + - role: match_organizer + permission: + columns: + - plugin_slug + - runtime + - version + - url + - sha256 + - size + - published_at + - prerelease + - layout + - install_path + filter: {} + allow_aggregations: true + comment: "" + - role: tournament_organizer + permission: + columns: + - plugin_slug + - runtime + - version + - url + - sha256 + - size + - published_at + - prerelease + - layout + - install_path + filter: {} + allow_aggregations: true + comment: "" +insert_permissions: + - role: administrator + permission: + check: {} + columns: + - plugin_slug + - runtime + - version + - url + - sha256 + - size + - published_at + - prerelease + - layout + - install_path + comment: "" +update_permissions: + - role: administrator + permission: + columns: + - plugin_slug + - runtime + - version + - url + - sha256 + - size + - published_at + - prerelease + - layout + - install_path + filter: {} + check: {} + comment: "" +delete_permissions: + - role: administrator + permission: + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_game_plugins.yaml b/hasura/metadata/databases/default/tables/public_game_plugins.yaml new file mode 100644 index 000000000..dbd6345c2 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_game_plugins.yaml @@ -0,0 +1,341 @@ +table: + name: game_plugins + schema: public +array_relationships: + - name: versions + using: + foreign_key_constraint_on: + column: plugin_slug + table: + name: game_plugin_versions + schema: public + - name: game_modes + using: + foreign_key_constraint_on: + column: plugin_slug + table: + name: game_mode_plugins + schema: public + - name: node_installs + using: + manual_configuration: + column_mapping: + slug: plugin_slug + insertion_order: null + remote_table: + name: game_server_node_plugins + schema: public +computed_fields: + - name: install_state + definition: + function: + name: game_plugin_install_state + schema: public + comment: Installed | Partial | Pending | Failed | Manual | NotInstalled + - name: installed_node_count + definition: + function: + name: game_plugin_installed_node_count + schema: public + - name: target_node_count + definition: + function: + name: game_plugin_target_node_count + schema: public +select_permissions: + - role: administrator + permission: + columns: + - slug + - kind + - name + - author + - description + - homepage + - tags + - verified + - hot_swappable + - requires_service + - requires_server_guidelines_disabled + - source + - config_schema + - config_path + - cvars + - pairs_with + - panel + - wiring + - synced_at + computed_fields: + - install_state + - installed_node_count + - target_node_count + filter: {} + allow_aggregations: true + comment: "" + - role: guest + permission: + columns: + - slug + - kind + - name + - author + - description + - homepage + - tags + - verified + - hot_swappable + - requires_service + - requires_server_guidelines_disabled + - source + - config_schema + - config_path + - cvars + - pairs_with + - panel + - wiring + - synced_at + computed_fields: + - install_state + - installed_node_count + - target_node_count + filter: {} + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - slug + - kind + - name + - author + - description + - homepage + - tags + - verified + - hot_swappable + - requires_service + - requires_server_guidelines_disabled + - source + - config_schema + - config_path + - cvars + - pairs_with + - panel + - wiring + - synced_at + computed_fields: + - install_state + - installed_node_count + - target_node_count + filter: {} + allow_aggregations: true + comment: "" + - role: verified_user + permission: + columns: + - slug + - kind + - name + - author + - description + - homepage + - tags + - verified + - hot_swappable + - requires_service + - requires_server_guidelines_disabled + - source + - config_schema + - config_path + - cvars + - pairs_with + - panel + - wiring + - synced_at + computed_fields: + - install_state + - installed_node_count + - target_node_count + filter: {} + allow_aggregations: true + comment: "" + - role: streamer + permission: + columns: + - slug + - kind + - name + - author + - description + - homepage + - tags + - verified + - hot_swappable + - requires_service + - requires_server_guidelines_disabled + - source + - config_schema + - config_path + - cvars + - pairs_with + - panel + - wiring + - synced_at + computed_fields: + - install_state + - installed_node_count + - target_node_count + filter: {} + allow_aggregations: true + comment: "" + - role: moderator + permission: + columns: + - slug + - kind + - name + - author + - description + - homepage + - tags + - verified + - hot_swappable + - requires_service + - requires_server_guidelines_disabled + - source + - config_schema + - config_path + - cvars + - pairs_with + - panel + - wiring + - synced_at + computed_fields: + - install_state + - installed_node_count + - target_node_count + filter: {} + allow_aggregations: true + comment: "" + - role: match_organizer + permission: + columns: + - slug + - kind + - name + - author + - description + - homepage + - tags + - verified + - hot_swappable + - requires_service + - requires_server_guidelines_disabled + - source + - config_schema + - config_path + - cvars + - pairs_with + - panel + - wiring + - synced_at + computed_fields: + - install_state + - installed_node_count + - target_node_count + filter: {} + allow_aggregations: true + comment: "" + - role: tournament_organizer + permission: + columns: + - slug + - kind + - name + - author + - description + - homepage + - tags + - verified + - hot_swappable + - requires_service + - requires_server_guidelines_disabled + - source + - config_schema + - config_path + - cvars + - pairs_with + - panel + - wiring + - synced_at + computed_fields: + - install_state + - installed_node_count + - target_node_count + filter: {} + allow_aggregations: true + comment: "" +insert_permissions: + - role: administrator + permission: + check: {} + columns: + - slug + - kind + - name + - author + - description + - homepage + - tags + - verified + - hot_swappable + - requires_service + - requires_server_guidelines_disabled + - source + - config_schema + - config_path + - cvars + - pairs_with + - panel + - wiring + - synced_at + computed_fields: + - install_state + - installed_node_count + - target_node_count + comment: "" +update_permissions: + - role: administrator + permission: + columns: + - slug + - kind + - name + - author + - description + - homepage + - tags + - verified + - hot_swappable + - requires_service + - requires_server_guidelines_disabled + - source + - config_schema + - config_path + - cvars + - pairs_with + - panel + - wiring + - synced_at + computed_fields: + - install_state + - installed_node_count + - target_node_count + filter: {} + check: {} + comment: "" +delete_permissions: + - role: administrator + permission: + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_game_server_node_plugins.yaml b/hasura/metadata/databases/default/tables/public_game_server_node_plugins.yaml new file mode 100644 index 000000000..433522ec8 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_game_server_node_plugins.yaml @@ -0,0 +1,77 @@ +table: + name: game_server_node_plugins + schema: public +object_relationships: + - name: game_server_node + using: + foreign_key_constraint_on: game_server_node_id + - name: plugin + using: + manual_configuration: + column_mapping: + plugin_slug: slug + insertion_order: null + remote_table: + name: game_plugins + schema: public +select_permissions: + - role: administrator + permission: + columns: + - id + - game_server_node_id + - plugin_slug + - runtime + - version + - detected_version + - channel + - status + - source + - detected + - last_error + - installed_at + - created_at + - updated_at + filter: {} + allow_aggregations: true + comment: "" +insert_permissions: + - role: administrator + permission: + check: {} + columns: + - game_server_node_id + - plugin_slug + - runtime + - version + - detected_version + - channel + - status + - source + - detected + - last_error + - installed_at + comment: "" +update_permissions: + - role: administrator + permission: + columns: + - game_server_node_id + - plugin_slug + - runtime + - version + - detected_version + - channel + - status + - source + - detected + - last_error + - installed_at + filter: {} + check: {} + comment: "" +delete_permissions: + - role: administrator + permission: + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_game_server_nodes.yaml b/hasura/metadata/databases/default/tables/public_game_server_nodes.yaml index b14c52847..2060b7602 100644 --- a/hasura/metadata/databases/default/tables/public_game_server_nodes.yaml +++ b/hasura/metadata/databases/default/tables/public_game_server_nodes.yaml @@ -27,6 +27,13 @@ object_relationships: name: game_versions schema: public array_relationships: + - name: plugins + using: + foreign_key_constraint_on: + column: game_server_node_id + table: + name: game_server_node_plugins + schema: public - name: servers using: foreign_key_constraint_on: @@ -82,6 +89,7 @@ select_permissions: - pin_build_id - pin_plugin_runtime - pin_plugin_version + - plugins_synced_at - public_ip - region - shader_bake_progress diff --git a/hasura/metadata/databases/default/tables/public_match_options.yaml b/hasura/metadata/databases/default/tables/public_match_options.yaml index b5de606dd..a424839a6 100644 --- a/hasura/metadata/databases/default/tables/public_match_options.yaml +++ b/hasura/metadata/databases/default/tables/public_match_options.yaml @@ -2,6 +2,9 @@ table: name: match_options schema: public object_relationships: + - name: game_mode + using: + foreign_key_constraint_on: game_mode_id - name: map_pool using: foreign_key_constraint_on: map_pool_id @@ -73,6 +76,7 @@ insert_permissions: - auto_cancellation - tv_delay - veto_pick_timeout + - game_mode_id - type - halftime_pausematch - round_restart_delay @@ -130,6 +134,7 @@ select_permissions: - auto_cancellation - tv_delay - veto_pick_timeout + - game_mode_id - type - halftime_pausematch - round_restart_delay @@ -163,6 +168,7 @@ update_permissions: - auto_cancellation - tv_delay - veto_pick_timeout + - game_mode_id - type - halftime_pausematch - round_restart_delay diff --git a/hasura/metadata/databases/default/tables/public_matches.yaml b/hasura/metadata/databases/default/tables/public_matches.yaml index 4be18eb53..766636e0f 100644 --- a/hasura/metadata/databases/default/tables/public_matches.yaml +++ b/hasura/metadata/databases/default/tables/public_matches.yaml @@ -524,6 +524,7 @@ select_permissions: permission: columns: - cancels_at + - counts_toward_ranking - created_at - ended_at - effective_at @@ -585,6 +586,7 @@ select_permissions: permission: columns: - cancels_at + - counts_toward_ranking - created_at - ended_at - effective_at diff --git a/hasura/metadata/databases/default/tables/public_servers.yaml b/hasura/metadata/databases/default/tables/public_servers.yaml index 92693b98f..bb967e430 100644 --- a/hasura/metadata/databases/default/tables/public_servers.yaml +++ b/hasura/metadata/databases/default/tables/public_servers.yaml @@ -11,6 +11,9 @@ object_relationships: remote_table: name: matches schema: public + - name: game_mode + using: + foreign_key_constraint_on: game_mode_id - name: game_server_node using: foreign_key_constraint_on: game_server_node_id @@ -63,6 +66,7 @@ insert_permissions: - region - tv_port - type + - game_mode_id comment: "" select_permissions: - role: administrator @@ -90,6 +94,7 @@ select_permissions: - reserved_by_match_id - tv_port - type + - game_mode_id computed_fields: - connection_link - connection_string @@ -116,6 +121,7 @@ select_permissions: - reserved_by_match_id - tv_port - type + - game_mode_id computed_fields: - connection_link - connection_string @@ -147,6 +153,7 @@ select_permissions: - reserved_by_match_id - tv_port - type + - game_mode_id computed_fields: - connection_link - connection_string @@ -176,6 +183,7 @@ select_permissions: - reserved_by_match_id - tv_port - type + - game_mode_id computed_fields: - connection_link - connection_string @@ -201,6 +209,7 @@ update_permissions: - region - tv_port - type + - game_mode_id filter: is_dedicated: _eq: true @@ -251,6 +260,7 @@ event_triggers: - label - game_server_node_id - type + - game_mode_id retry_conf: interval_sec: 10 num_retries: 6 diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index 06770d02c..0e382a8b5 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -25,6 +25,9 @@ - "!include public_e_event_visibility.yaml" - "!include public_e_friend_status.yaml" - "!include public_e_game_cfg_types.yaml" +- "!include public_e_game_plugin_channels.yaml" +- "!include public_e_game_plugin_install_statuses.yaml" +- "!include public_e_game_plugin_kinds.yaml" - "!include public_e_game_server_node_statuses.yaml" - "!include public_e_league_movement_types.yaml" - "!include public_e_league_proposal_statuses.yaml" @@ -67,6 +70,12 @@ - "!include public_event_tournaments.yaml" - "!include public_events.yaml" - "!include public_friends.yaml" +- "!include public_game_mode_plugins.yaml" +- "!include public_game_modes.yaml" +- "!include public_game_plugin_installs.yaml" +- "!include public_game_plugin_versions.yaml" +- "!include public_game_plugins.yaml" +- "!include public_game_server_node_plugins.yaml" - "!include public_game_server_nodes.yaml" - "!include public_game_versions.yaml" - "!include public_gamedata_signature_validations.yaml" diff --git a/hasura/migrations/default/1878000000000_game_plugins_and_modes/down.sql b/hasura/migrations/default/1878000000000_game_plugins_and_modes/down.sql new file mode 100644 index 000000000..667327365 --- /dev/null +++ b/hasura/migrations/default/1878000000000_game_plugins_and_modes/down.sql @@ -0,0 +1,32 @@ +DROP INDEX IF EXISTS "public"."matches_counts_toward_ranking_idx"; +DROP INDEX IF EXISTS "public"."custom_pages_plugin_slug_idx"; +DROP INDEX IF EXISTS "public"."match_options_game_mode_idx"; +DROP INDEX IF EXISTS "public"."game_modes_enabled_idx"; +DROP INDEX IF EXISTS "public"."game_server_node_plugins_slug_idx"; +DROP INDEX IF EXISTS "public"."game_plugins_kind_verified_idx"; +DROP INDEX IF EXISTS "public"."game_plugin_versions_runtime_published_idx"; + +ALTER TABLE "public"."matches" DROP COLUMN IF EXISTS "counts_toward_ranking"; + +ALTER TABLE "public"."game_server_nodes" DROP COLUMN IF EXISTS "plugins_synced_at"; + +ALTER TABLE "public"."custom_pages" DROP COLUMN IF EXISTS "plugin_slug"; + +ALTER TABLE "public"."servers" DROP CONSTRAINT IF EXISTS "servers_ranked_has_no_game_mode_check"; +ALTER TABLE "public"."servers" DROP CONSTRAINT IF EXISTS "servers_game_mode_fkey"; +ALTER TABLE "public"."servers" DROP COLUMN IF EXISTS "plugins_checked_at"; +ALTER TABLE "public"."servers" DROP COLUMN IF EXISTS "loaded_plugins"; +ALTER TABLE "public"."servers" DROP COLUMN IF EXISTS "game_mode_id"; + +ALTER TABLE "public"."match_options" DROP CONSTRAINT IF EXISTS "match_options_game_mode_fkey"; +ALTER TABLE "public"."match_options" DROP COLUMN IF EXISTS "game_mode_id"; + +DROP TABLE IF EXISTS "public"."game_mode_plugins"; +DROP TABLE IF EXISTS "public"."game_modes"; +DROP TABLE IF EXISTS "public"."game_server_node_plugins"; +DROP TABLE IF EXISTS "public"."game_plugin_installs"; +DROP TABLE IF EXISTS "public"."game_plugin_versions"; +DROP TABLE IF EXISTS "public"."game_plugins"; +DROP TABLE IF EXISTS "public"."e_game_plugin_channels"; +DROP TABLE IF EXISTS "public"."e_game_plugin_install_statuses"; +DROP TABLE IF EXISTS "public"."e_game_plugin_kinds"; diff --git a/hasura/migrations/default/1878000000000_game_plugins_and_modes/up.sql b/hasura/migrations/default/1878000000000_game_plugins_and_modes/up.sql new file mode 100644 index 000000000..b8321d784 --- /dev/null +++ b/hasura/migrations/default/1878000000000_game_plugins_and_modes/up.sql @@ -0,0 +1,252 @@ +-- Game plugin catalog, per-node installs, and game modes. + +CREATE TABLE IF NOT EXISTS "public"."e_game_plugin_kinds" ( + "value" text NOT NULL, + "description" text NOT NULL, + PRIMARY KEY ("value") +); + +CREATE TABLE IF NOT EXISTS "public"."e_game_plugin_install_statuses" ( + "value" text NOT NULL, + "description" text NOT NULL, + PRIMARY KEY ("value") +); + +CREATE TABLE IF NOT EXISTS "public"."e_game_plugin_channels" ( + "value" text NOT NULL, + "description" text NOT NULL, + PRIMARY KEY ("value") +); + +CREATE TABLE IF NOT EXISTS "public"."game_plugins" ( + "slug" text NOT NULL, + "kind" text NOT NULL, + "name" text NOT NULL, + "author" text NOT NULL, + "description" text NOT NULL, + "homepage" text, + "tags" text[] NOT NULL DEFAULT '{}', + "verified" boolean NOT NULL DEFAULT false, + "hot_swappable" boolean NOT NULL DEFAULT false, + "requires_service" text, + -- Where the entry came from. A registry sync owns every 'registry' row and + -- prunes the ones that stopped being published; a 'custom' row is the + -- operator's own and is never touched by a sync, or the plugin they added + -- because it is not in the catalog would be deleted by the next one. + "source" text NOT NULL DEFAULT 'registry', + -- Both frameworks ship FollowCS2ServerGuidelines = true, which blocks the + -- calls a plugin needs to change what a player sees. A plugin that cannot + -- work without them says so here; it is a fact about the plugin, never + -- consent to turn them off -- that lives on the install below. + "requires_server_guidelines_disabled" boolean NOT NULL DEFAULT false, + "config_schema" jsonb, + "config_path" text, + "cvars" text[] NOT NULL DEFAULT '{}', + "panel" jsonb, + "wiring" jsonb, + -- Slugs of catalog entries this one works with. A panel plugin that + -- configures a game plugin points at it here instead of republishing its + -- releases, which would list the same download twice under two names. + "pairs_with" text[] NOT NULL DEFAULT '{}', + "synced_at" timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY ("slug"), + -- The slug also names a directory inside the node's plugin directory, so a + -- value that is not path-safe would let a registry entry escape it. + CONSTRAINT "game_plugins_slug_check" CHECK ("slug" ~ '^[a-z0-9]+(?:-[a-z0-9]+)*$'), + CONSTRAINT "game_plugins_source_check" CHECK ("source" IN ('registry', 'custom')), + CONSTRAINT "game_plugins_kind_fkey" FOREIGN KEY ("kind") + REFERENCES "public"."e_game_plugin_kinds" ("value") ON UPDATE CASCADE ON DELETE RESTRICT +); + +CREATE TABLE IF NOT EXISTS "public"."game_plugin_versions" ( + "plugin_slug" text NOT NULL, + "runtime" text NOT NULL, + "version" text NOT NULL, + "url" text NOT NULL, + "sha256" text NOT NULL, + "size" integer, + "published_at" timestamptz NOT NULL, + "prerelease" boolean NOT NULL DEFAULT false, + "layout" text NOT NULL DEFAULT 'csgo', + "install_path" text, + PRIMARY KEY ("plugin_slug", "runtime", "version"), + CONSTRAINT "game_plugin_versions_plugin_slug_fkey" FOREIGN KEY ("plugin_slug") + REFERENCES "public"."game_plugins" ("slug") ON UPDATE CASCADE ON DELETE CASCADE, + CONSTRAINT "game_plugin_versions_runtime_fkey" FOREIGN KEY ("runtime") + REFERENCES "public"."e_plugin_runtimes" ("value") ON UPDATE CASCADE ON DELETE RESTRICT, + CONSTRAINT "game_plugin_versions_sha256_check" CHECK ("sha256" ~ '^[a-f0-9]{64}$'), + CONSTRAINT "game_plugin_versions_layout_check" CHECK ("layout" IN ('csgo', 'plugin')) +); + +-- What the operator wants installed, deployment-wide. Separate from +-- game_server_node_plugins, which records what a node actually has: conflating +-- the two is why installing was a one-shot loop that missed any node offline at +-- the time and never reached a node that joined later. +CREATE TABLE IF NOT EXISTS "public"."game_plugin_installs" ( + "plugin_slug" text NOT NULL, + -- Null means track the newest release; a value pins it. + "version" text, + "channel" text NOT NULL DEFAULT 'Pinned', + "enabled" boolean NOT NULL DEFAULT true, + -- Some plugins are not part of a "fun mode" at all -- stats collectors, + -- admin tooling -- and belong on every server including ranked. + "always_load" boolean NOT NULL DEFAULT false, + -- The operator accepting, for this plugin, that servers loading it boot with + -- Valve's server guidelines off. Valve's position is that this can ban every + -- GSLT on the account, so it defaults to false and is only ever offered for + -- a plugin whose catalog entry says it cannot work without it. + "disable_server_guidelines" boolean NOT NULL DEFAULT false, + "created_at" timestamptz NOT NULL DEFAULT now(), + "updated_at" timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY ("plugin_slug"), + CONSTRAINT "game_plugin_installs_plugin_fkey" FOREIGN KEY ("plugin_slug") + REFERENCES "public"."game_plugins" ("slug") ON UPDATE CASCADE ON DELETE CASCADE, + CONSTRAINT "game_plugin_installs_channel_fkey" FOREIGN KEY ("channel") + REFERENCES "public"."e_game_plugin_channels" ("value") ON UPDATE CASCADE ON DELETE RESTRICT, + -- A pinned row with no version has nothing to pin to, and an Auto row with + -- one would have its version overwritten on the next release. + CONSTRAINT "game_plugin_installs_channel_version_check" + CHECK (("channel" = 'Auto') = ("version" IS NULL)) +); + +CREATE TABLE IF NOT EXISTS "public"."game_server_node_plugins" ( + "id" uuid NOT NULL DEFAULT gen_random_uuid(), + "game_server_node_id" text NOT NULL, + -- Deliberately not a foreign key to game_plugins: the reconciler records + -- plugins an admin dropped in by hand, and those have no registry entry. + -- The Hasura relationship to game_plugins is nullable. + "plugin_slug" text NOT NULL, + "runtime" text NOT NULL, + "version" text, + "detected_version" text, + "channel" text NOT NULL DEFAULT 'Pinned', + "status" text NOT NULL DEFAULT 'Pending', + "source" text NOT NULL DEFAULT 'managed', + "detected" boolean NOT NULL DEFAULT false, + "last_error" text, + "installed_at" timestamptz, + "created_at" timestamptz NOT NULL DEFAULT now(), + "updated_at" timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY ("id"), + CONSTRAINT "game_server_node_plugins_node_plugin_key" + UNIQUE ("game_server_node_id", "plugin_slug"), + CONSTRAINT "game_server_node_plugins_node_fkey" FOREIGN KEY ("game_server_node_id") + REFERENCES "public"."game_server_nodes" ("id") ON UPDATE CASCADE ON DELETE CASCADE, + CONSTRAINT "game_server_node_plugins_runtime_fkey" FOREIGN KEY ("runtime") + REFERENCES "public"."e_plugin_runtimes" ("value") ON UPDATE CASCADE ON DELETE RESTRICT, + CONSTRAINT "game_server_node_plugins_channel_fkey" FOREIGN KEY ("channel") + REFERENCES "public"."e_game_plugin_channels" ("value") ON UPDATE CASCADE ON DELETE RESTRICT, + CONSTRAINT "game_server_node_plugins_status_fkey" FOREIGN KEY ("status") + REFERENCES "public"."e_game_plugin_install_statuses" ("value") ON UPDATE CASCADE ON DELETE RESTRICT, + CONSTRAINT "game_server_node_plugins_source_check" CHECK ("source" IN ('managed', 'manual')) +); + +-- A mode does not declare which framework it runs on. That is derived from the +-- plugins it selects: a mode is runnable on a runtime only if every plugin in +-- it publishes a build for that runtime. +CREATE TABLE IF NOT EXISTS "public"."game_modes" ( + "id" uuid NOT NULL DEFAULT gen_random_uuid(), + "slug" text NOT NULL, + "name" text NOT NULL, + "description" text, + "icon" text, + "enabled" boolean NOT NULL DEFAULT true, + -- Retiring a mode archives it rather than deleting it: a finished match + -- keeps naming the mode it was played under. + "archived_at" timestamptz, + -- Whether a ranked or matchmaking match may run this mode. Defaults to + -- false so a newly created mode can never reach ranked play by accident. + "competitive_safe" boolean NOT NULL DEFAULT false, + "cfg" text, + "extra_game_params" text, + "created_at" timestamptz NOT NULL DEFAULT now(), + "updated_at" timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY ("id"), + CONSTRAINT "game_modes_slug_key" UNIQUE ("slug"), + CONSTRAINT "game_modes_slug_check" CHECK ("slug" ~ '^[a-z0-9]+(?:-[a-z0-9]+)*$') +); + +CREATE TABLE IF NOT EXISTS "public"."game_mode_plugins" ( + "game_mode_id" uuid NOT NULL, + "plugin_slug" text NOT NULL, + "load_order" integer NOT NULL DEFAULT 0, + "config" jsonb, + "required" boolean NOT NULL DEFAULT true, + PRIMARY KEY ("game_mode_id", "plugin_slug"), + CONSTRAINT "game_mode_plugins_mode_fkey" FOREIGN KEY ("game_mode_id") + REFERENCES "public"."game_modes" ("id") ON UPDATE CASCADE ON DELETE CASCADE, + CONSTRAINT "game_mode_plugins_plugin_fkey" FOREIGN KEY ("plugin_slug") + REFERENCES "public"."game_plugins" ("slug") ON UPDATE CASCADE ON DELETE RESTRICT +); + +ALTER TABLE "public"."match_options" + ADD COLUMN IF NOT EXISTS "game_mode_id" uuid; + +ALTER TABLE "public"."match_options" + ADD CONSTRAINT "match_options_game_mode_fkey" FOREIGN KEY ("game_mode_id") + REFERENCES "public"."game_modes" ("id") ON UPDATE CASCADE ON DELETE RESTRICT; + +ALTER TABLE "public"."servers" + ADD COLUMN IF NOT EXISTS "game_mode_id" uuid; + +ALTER TABLE "public"."servers" + ADD CONSTRAINT "servers_game_mode_fkey" FOREIGN KEY ("game_mode_id") + REFERENCES "public"."game_modes" ("id") ON UPDATE CASCADE ON DELETE SET NULL; + +-- A Ranked server is matchmaking capacity. It never inherits a persistent mode +-- (a fun match has to ask for one on the match itself), so storing one here +-- could only ever mislead whoever set it. +ALTER TABLE "public"."servers" + ADD CONSTRAINT "servers_ranked_has_no_game_mode_check" + CHECK ("type" IS DISTINCT FROM 'Ranked' OR "game_mode_id" IS NULL); + +-- What the server reported actually loaded, as opposed to what is on disk. +-- Files being present is not the same as a plugin loading: a CS2 update breaks +-- signatures, a build targets the other framework, a config is malformed. All +-- of those look identical on the filesystem and only differ here. +ALTER TABLE "public"."servers" + ADD COLUMN IF NOT EXISTS "loaded_plugins" jsonb; + +ALTER TABLE "public"."servers" + ADD COLUMN IF NOT EXISTS "plugins_checked_at" timestamptz; + +ALTER TABLE "public"."custom_pages" + ADD COLUMN IF NOT EXISTS "plugin_slug" text; + +-- Nodes report what they converged to, so a node that has never checked in is +-- distinguishable from one that checked in with nothing. +ALTER TABLE "public"."game_server_nodes" + ADD COLUMN IF NOT EXISTS "plugins_synced_at" timestamptz; + +-- Whether this match moves ELO and appears on stats leaderboards. +-- +-- Stored on the match rather than derived from its game mode at ELO time, so +-- the decision is frozen the moment the match is created. Deriving it would +-- mean flipping a mode's competitive_safe flag silently rewrote whether matches +-- played months ago had counted. +-- +-- Defaults true, so every match that already exists keeps counting. +ALTER TABLE "public"."matches" + ADD COLUMN IF NOT EXISTS "counts_toward_ranking" boolean NOT NULL DEFAULT true; + +CREATE INDEX IF NOT EXISTS "game_plugin_versions_runtime_published_idx" + ON "public"."game_plugin_versions" ("runtime", "published_at" DESC); + +CREATE INDEX IF NOT EXISTS "game_plugins_kind_verified_idx" + ON "public"."game_plugins" ("kind", "verified"); + +CREATE INDEX IF NOT EXISTS "game_server_node_plugins_slug_idx" + ON "public"."game_server_node_plugins" ("plugin_slug"); + +CREATE INDEX IF NOT EXISTS "game_modes_enabled_idx" + ON "public"."game_modes" ("enabled") WHERE "archived_at" IS NULL; + +CREATE INDEX IF NOT EXISTS "match_options_game_mode_idx" + ON "public"."match_options" ("game_mode_id") WHERE "game_mode_id" IS NOT NULL; + +CREATE UNIQUE INDEX IF NOT EXISTS "custom_pages_plugin_slug_idx" + ON "public"."custom_pages" ("plugin_slug") WHERE "plugin_slug" IS NOT NULL; + +CREATE INDEX IF NOT EXISTS "matches_counts_toward_ranking_idx" + ON "public"."matches" ("counts_toward_ranking") + WHERE "counts_toward_ranking" = false; diff --git a/hasura/triggers/game_modes.sql b/hasura/triggers/game_modes.sql new file mode 100644 index 000000000..e19d6e757 --- /dev/null +++ b/hasura/triggers/game_modes.sql @@ -0,0 +1,136 @@ +CREATE OR REPLACE FUNCTION public.match_ranking_for_options(_match_options_id uuid) + RETURNS boolean + LANGUAGE sql + STABLE + AS $$ + -- No mode is ranked. A mode counts only when it is explicitly marked safe + -- for competitive play, so a newly created mode can never quietly start + -- affecting ELO. + SELECT NOT EXISTS ( + SELECT 1 + FROM match_options mo + INNER JOIN game_modes gm ON gm.id = mo.game_mode_id + WHERE mo.id = _match_options_id + AND gm.competitive_safe = false + ); +$$; + +CREATE OR REPLACE FUNCTION public.tbi_matches_ranking() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +BEGIN + NEW.counts_toward_ranking = match_ranking_for_options(NEW.match_options_id); + RETURN NEW; +END; +$$; + +DROP TRIGGER IF EXISTS tbi_matches_ranking ON public.matches; +CREATE TRIGGER tbi_matches_ranking BEFORE INSERT ON public.matches FOR EACH ROW EXECUTE FUNCTION public.tbi_matches_ranking(); + +CREATE OR REPLACE FUNCTION public.tau_match_options_ranking() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +BEGIN + -- The mode can still be changed while a match is being set up; once it is + -- Live tbu_match_options refuses the change, so this can never move under a + -- match that is already being played. + IF NEW.game_mode_id IS DISTINCT FROM OLD.game_mode_id THEN + UPDATE matches + SET counts_toward_ranking = match_ranking_for_options(NEW.id) + WHERE match_options_id = NEW.id; + END IF; + + RETURN NEW; +END; +$$; + +DROP TRIGGER IF EXISTS tau_match_options_ranking ON public.match_options; +CREATE TRIGGER tau_match_options_ranking AFTER UPDATE ON public.match_options FOR EACH ROW EXECUTE FUNCTION public.tau_match_options_ranking(); + +CREATE OR REPLACE FUNCTION public.assert_game_mode_selectable(_game_mode_id uuid) RETURNS void + LANGUAGE plpgsql + AS $$ +DECLARE + _mode public.game_modes; + _incompatible text[]; +BEGIN + IF _game_mode_id IS NULL THEN + RETURN; + END IF; + + SELECT * INTO _mode FROM game_modes WHERE id = _game_mode_id; + + IF _mode IS NULL THEN + RAISE EXCEPTION 'Game mode does not exist' USING ERRCODE = '22000'; + END IF; + + IF _mode.archived_at IS NOT NULL THEN + RAISE EXCEPTION 'Game mode "%" is archived', _mode.name USING ERRCODE = '22000'; + END IF; + + IF _mode.enabled = false THEN + RAISE EXCEPTION 'Game mode "%" is disabled', _mode.name USING ERRCODE = '22000'; + END IF; + + -- Runtime compatibility comes from the plugins, not from the mode: a mode is + -- runnable only where every plugin in it publishes a build. Selecting one + -- the deployment cannot load would boot a server with none of them present + -- and nothing to say why. + SELECT array_agg(slug) INTO _incompatible + FROM ( + SELECT mp.plugin_slug AS slug + FROM game_mode_plugins mp + WHERE mp.game_mode_id = _mode.id + AND NOT EXISTS ( + SELECT 1 FROM game_plugin_versions v + WHERE v.plugin_slug = mp.plugin_slug + AND v.runtime = active_plugin_runtime() + ) + ORDER BY mp.plugin_slug + ) conflicts; + + IF _incompatible IS NOT NULL AND array_length(_incompatible, 1) > 0 THEN + RAISE EXCEPTION 'Game mode "%" needs % which has no % build', + _mode.name, + array_to_string(_incompatible, ', '), + active_plugin_runtime() + USING ERRCODE = '22000'; + END IF; +END; +$$; + +CREATE OR REPLACE FUNCTION public.tbiu_game_modes() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +BEGIN + NEW.updated_at = now(); + RETURN NEW; +END; +$$; + +DROP TRIGGER IF EXISTS tbiu_game_modes ON public.game_modes; +CREATE TRIGGER tbiu_game_modes BEFORE INSERT OR UPDATE ON public.game_modes FOR EACH ROW EXECUTE FUNCTION public.tbiu_game_modes(); + +CREATE OR REPLACE FUNCTION public.tbd_game_modes() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +DECLARE + _referencing int; +BEGIN + SELECT count(*) INTO _referencing FROM match_options WHERE game_mode_id = OLD.id; + + -- The foreign key is RESTRICT rather than SET NULL on purpose. Detaching + -- would rewrite the options row of a match that has already been played, + -- which tbu_match_options refuses outright, and would erase which mode that + -- match ran. Archiving hides the mode everywhere without touching history. + IF _referencing > 0 THEN + RAISE EXCEPTION 'Game mode "%" has been used by % match(es); archive it instead of deleting it', OLD.name, _referencing + USING ERRCODE = '22000'; + END IF; + + RETURN OLD; +END; +$$; + +DROP TRIGGER IF EXISTS tbd_game_modes ON public.game_modes; +CREATE TRIGGER tbd_game_modes BEFORE DELETE ON public.game_modes FOR EACH ROW EXECUTE FUNCTION public.tbd_game_modes(); diff --git a/hasura/triggers/match_options.sql b/hasura/triggers/match_options.sql index 54aa8aae0..0b038a7de 100644 --- a/hasura/triggers/match_options.sql +++ b/hasura/triggers/match_options.sql @@ -37,6 +37,8 @@ BEGIN NEW.regions = (SELECT array_agg(region) FROM servers where enabled = true); END IF; + PERFORM assert_game_mode_selectable(NEW.game_mode_id); + RETURN NEW; END; $$; @@ -91,6 +93,13 @@ BEGIN IF (NEW.mr IS DISTINCT FROM OLD.mr AND _match_status = 'Live') THEN RAISE EXCEPTION 'Cannot modify mr during Live' USING ERRCODE = '22000'; END IF; + IF (NEW.game_mode_id IS DISTINCT FROM OLD.game_mode_id) THEN + RAISE EXCEPTION 'Cannot modify game mode during Live/Veto' USING ERRCODE = '22000'; + END IF; + END IF; + + IF (NEW.game_mode_id IS DISTINCT FROM OLD.game_mode_id) THEN + PERFORM assert_game_mode_selectable(NEW.game_mode_id); END IF; RETURN NEW; diff --git a/package.json b/package.json index 7400a11fe..7a0259598 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,6 @@ "test:watch": "jest --watch", "test:cov": "jest --coverage", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", - "test:e2e": "jest --config ./test/jest-e2e.json", "hasura": "hasura --project hasura --skip-update-check --envfile ./../.env.local", "hasura:export": "yarn hasura metadata export", "hasura:metadata": "yarn hasura metadata apply", diff --git a/src/app.module.spec.ts b/src/app.module.spec.ts new file mode 100644 index 000000000..19c83820c --- /dev/null +++ b/src/app.module.spec.ts @@ -0,0 +1,76 @@ +import "reflect-metadata"; + +// sharp ships a native binary that is not installable on every dev machine, and +// importing AppModule pulls it in transitively. Nothing here calls it -- only +// the module metadata is read -- so a stub is enough, and without it this guard +// only runs on the platforms sharp happens to support. +jest.mock("sharp", () => ({ __esModule: true, default: () => ({}) }), { + virtual: true, +}); + +import { AppModule } from "./app.module"; + +// A module that imports another which (transitively) imports it back resolves to +// `undefined` at metadata-read time, and Nest refuses to boot with +// "the module at index [n] is undefined". Nothing else catches it: tsc is happy, +// every unit and SQL suite passes, and the failure only appears when the API +// starts. +// +// app.e2e-spec.ts was meant to cover this but has no it() block, so jest skips +// the file entirely. This walks the same graph without needing Redis, Postgres +// or any of the connections a real boot opens. +describe("module graph", () => { + type ModuleClass = { name?: string }; + + const walk = ( + root: ModuleClass, + ): Array<{ module: string; index: number }> => { + const problems: Array<{ module: string; index: number }> = []; + const seen = new Set(); + const queue: Array = [root]; + + while (queue.length > 0) { + const current = queue.shift()!; + + if (!current || seen.has(current)) { + continue; + } + + seen.add(current); + + const imports: Array = + Reflect.getMetadata("imports", current as object) ?? []; + + imports.forEach((imported, index) => { + if (imported === undefined || imported === null) { + problems.push({ module: current.name ?? "unknown", index }); + return; + } + + // A dynamic module registration ({ module, providers, ... }) rather than + // a class; follow the class it names. + const target = + typeof imported === "object" && "module" in (imported as object) + ? (imported as { module: ModuleClass }).module + : (imported as ModuleClass); + + if (typeof target === "function") { + queue.push(target); + } + }); + } + + return problems; + }; + + it("has no undefined imports anywhere under AppModule", () => { + const problems = walk(AppModule as ModuleClass); + + expect( + problems.map( + ({ module, index }) => + `${module} imports[${index}] is undefined (circular import?)`, + ), + ).toEqual([]); + }); +}); diff --git a/src/app.module.ts b/src/app.module.ts index 6117866b1..e5b1489f2 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -26,6 +26,7 @@ import { loggerFactory } from "./utilities/LoggerFactory"; import { SocketsModule } from "./sockets/sockets.module"; import { TailscaleModule } from "./tailscale/tailscale.module"; import { GameServerNodeModule } from "./game-server-node/game-server-node.module"; +import { GamePluginsModule } from "./game-plugins/game-plugins.module"; import { MatchMaking } from "./matchmaking/matchmaking.module"; import { DraftGamesModule } from "./draft-games/draft-games.module"; import { SystemModule } from "./system/system.module"; @@ -130,6 +131,7 @@ import { PluginsModule } from "./plugins/plugins.module"; ], }), GameServerNodeModule, + GamePluginsModule, SystemModule, NotificationsModule, ChatModule, diff --git a/src/dedicated-servers/dedicated-servers.module.ts b/src/dedicated-servers/dedicated-servers.module.ts index 56831bc92..4eff8110e 100644 --- a/src/dedicated-servers/dedicated-servers.module.ts +++ b/src/dedicated-servers/dedicated-servers.module.ts @@ -15,6 +15,7 @@ import { RconModule } from "src/rcon/rcon.module"; import { RedisModule } from "src/redis/redis.module"; import { SystemModule } from "src/system/system.module"; import { PluginRuntimeModule } from "src/plugin-runtime/plugin-runtime.module"; +import { GamePluginsModule } from "../game-plugins/game-plugins.module"; @Module({ imports: [ @@ -31,6 +32,7 @@ import { PluginRuntimeModule } from "src/plugin-runtime/plugin-runtime.module"; RedisModule, SystemModule, PluginRuntimeModule, + GamePluginsModule, ], providers: [ DedicatedServersService, diff --git a/src/dedicated-servers/dedicated-servers.service.ts b/src/dedicated-servers/dedicated-servers.service.ts index 766fc946b..9ef944eab 100644 --- a/src/dedicated-servers/dedicated-servers.service.ts +++ b/src/dedicated-servers/dedicated-servers.service.ts @@ -11,6 +11,7 @@ import { RedisManagerService } from "src/redis/redis-manager/redis-manager.servi import { Redis } from "ioredis"; import { SystemService } from "src/system/system.service"; import { PluginRuntimeService } from "src/plugin-runtime/plugin-runtime.service"; +import { GameModesService } from "../game-plugins/game-modes.service"; @Injectable() export class DedicatedServersService { @@ -32,6 +33,7 @@ export class DedicatedServersService { private readonly redisManager: RedisManagerService, private readonly systemService: SystemService, private readonly pluginRuntimeService: PluginRuntimeService, + private readonly gameModesService: GameModesService, ) { this.redis = this.redisManager.getConnection(); @@ -156,6 +158,13 @@ export class DedicatedServersService { }, }); + // A Ranked server resolves to no mode by design, so matchmaking capacity + // always comes up on a clean plugin set. + const gameMode = await this.gameModesService.resolveForServer(serverId); + + const gameModeEnvironment = + this.gameModesService.environmentFor(gameMode); + const dedicatedServerDeploymentName = this.getDedicatedServerDeploymentName(serverId); @@ -257,7 +266,7 @@ export class DedicatedServersService { // TODO - number of players { name: "EXTRA_GAME_PARAMS", - value: `-maxplayers ${server.type === "Ranked" ? 16 : server.max_players} +map de_dust2 +game_type ${this.getGameType(server.type)} +game_mode ${this.getGameMode(server.type)} +sv_skirmish_id ${this.getWarGameType(server.type)} ${server.connect_password ? ` +sv_password ${server.connect_password}` : ""}`, + value: `-maxplayers ${server.type === "Ranked" ? 16 : server.max_players} +map de_dust2 +game_type ${this.getGameType(server.type)} +game_mode ${this.getGameMode(server.type)} +sv_skirmish_id ${this.getWarGameType(server.type)} ${server.connect_password ? ` +sv_password ${server.connect_password}` : ""}${gameMode?.extraGameParams ? ` ${gameMode.extraGameParams}` : ""}`, }, { name: "SERVER_ID", value: server.id }, { @@ -284,6 +293,7 @@ export class DedicatedServersService { name: "STEAM_RELAY", value: steamRelay ? "true" : "false", }, + ...gameModeEnvironment, ], volumeMounts: [ { @@ -302,6 +312,15 @@ export class DedicatedServersService { name: `dedicated-server-data-${server.id}`, mountPath: `/opt/custom-plugins`, }, + // A dedicated server only ever saw its own directory, so + // a plugin installed on the node reached every on-demand + // match server and none of these. Mounted read-write + // because a plugin writes its config on first load and + // that has to survive the pod. + { + name: `custom-plugins-${sanitizedGameServerNodeId}`, + mountPath: `/opt/node-plugins`, + }, ], }, ], @@ -325,16 +344,17 @@ export class DedicatedServersService { }, }, { - name: `custom-plugins-${sanitizedGameServerNodeId}`, + name: `dedicated-server-data-${server.id}`, hostPath: { - path: `/opt/5stack/custom-plugins`, + type: "DirectoryOrCreate", + path: `/opt/5stack/servers/${server.id}`, }, }, { - name: `dedicated-server-data-${server.id}`, + name: `custom-plugins-${sanitizedGameServerNodeId}`, hostPath: { type: "DirectoryOrCreate", - path: `/opt/5stack/servers/${server.id}`, + path: `/opt/5stack/custom-plugins`, }, }, ], diff --git a/src/draft-games/draft-game.service.ts b/src/draft-games/draft-game.service.ts index e9b31d6ad..15b8db876 100644 --- a/src/draft-games/draft-game.service.ts +++ b/src/draft-games/draft-game.service.ts @@ -1084,6 +1084,7 @@ export class DraftGameService { object.veto_pick_timeout = source.veto_pick_timeout; object.camera_required = source.camera_required ?? false; object.camera_allow_teammates = source.camera_allow_teammates ?? false; + object.game_mode_id = source.game_mode_id || null; } if (isRoleAbove(user.role, "tournament_organizer")) { diff --git a/src/game-plugins/enums/GamePluginQueues.ts b/src/game-plugins/enums/GamePluginQueues.ts new file mode 100644 index 000000000..90b44a3cd --- /dev/null +++ b/src/game-plugins/enums/GamePluginQueues.ts @@ -0,0 +1,3 @@ +export enum GamePluginQueues { + Registry = "game-plugin-registry", +} diff --git a/src/game-plugins/game-modes.service.spec.ts b/src/game-plugins/game-modes.service.spec.ts new file mode 100644 index 000000000..006debf97 --- /dev/null +++ b/src/game-plugins/game-modes.service.spec.ts @@ -0,0 +1,419 @@ +import { GameModesService, RequiredPluginMissing } from "./game-modes.service"; + +// always_load shipped broken: the merge lived in environmentFor(), which nothing +// called, so a plugin marked "load on every match" never reached a server. +// These pin the merge to resolveForServer, which is what the pod specs use. +describe("GameModesService always-load plugins", () => { + const build = (rows: Record>>) => { + const postgres = { + query: jest.fn(async (sql: string) => { + if (sql.includes("COALESCE(")) { + return rows.serverMode ?? [{ game_mode_id: null }]; + } + if (sql.includes("FROM game_modes")) { + return rows.mode ?? []; + } + if (sql.includes("FROM game_mode_plugins")) { + return rows.modePlugins ?? []; + } + if (sql.includes("AS disable")) { + return rows.guidelines ?? [{ disable: false }]; + } + if (sql.includes("FROM game_plugin_installs")) { + return rows.alwaysLoad ?? []; + } + return []; + }), + }; + + const service = new GameModesService( + { warn: jest.fn(), log: jest.fn() } as never, + postgres as never, + { + getPluginRuntime: jest.fn(async () => "swiftlys2"), + resolvePluginRuntime: jest.fn( + async (pin?: { pin_plugin_runtime?: string | null }) => + pin?.pin_plugin_runtime ?? "swiftlys2", + ), + } as never, + ); + + return { service, postgres }; + }; + + it("loads an always-load plugin on a server with no mode at all", async () => { + const { service } = build({ + serverMode: [{ game_mode_id: null }], + alwaysLoad: [{ plugin_slug: "stats", version: "1.0.0" }], + }); + + const resolved = await service.resolveForServer("server-1"); + + expect(resolved?.enabledPlugins).toEqual("stats@1.0.0"); + // No mode, so nothing a mode would have contributed comes along with it. + expect(resolved?.cfg).toBeNull(); + expect(resolved?.extraGameParams).toBeNull(); + }); + + it("returns nothing when there is neither a mode nor an always-load plugin", async () => { + const { service } = build({ serverMode: [{ game_mode_id: null }] }); + + await expect(service.resolveForServer("server-1")).resolves.toBeNull(); + }); + + it("appends always-load plugins to a mode's own set", async () => { + const { service } = build({ + serverMode: [{ game_mode_id: "mode-1" }], + mode: [ + { + id: "mode-1", + slug: "retakes", + name: "Retakes", + cfg: "mp_freezetime 3", + extra_game_params: null, + }, + ], + modePlugins: [ + { + plugin_slug: "retakes", + config: null, + config_path: null, + version: "2.0.0", + }, + ], + alwaysLoad: [{ plugin_slug: "stats", version: "1.0.0" }], + }); + + const resolved = await service.resolveForServer("server-1"); + + expect(resolved?.enabledPlugins).toEqual("retakes@2.0.0,stats@1.0.0"); + expect(resolved?.cfg).toEqual("mp_freezetime 3"); + }); + + it("lets the mode's version win when both name the same plugin", async () => { + const { service } = build({ + serverMode: [{ game_mode_id: "mode-1" }], + mode: [ + { + id: "mode-1", + slug: "m", + name: "M", + cfg: null, + extra_game_params: null, + }, + ], + modePlugins: [ + { + plugin_slug: "stats", + config: null, + config_path: null, + version: "2.0.0", + }, + ], + alwaysLoad: [{ plugin_slug: "stats", version: "1.0.0" }], + }); + + const resolved = await service.resolveForServer("server-1"); + + expect(resolved?.enabledPlugins).toEqual("stats@2.0.0"); + }); + + it("skips an always-load plugin no node has installed", async () => { + const { service } = build({ + serverMode: [{ game_mode_id: null }], + alwaysLoad: [{ plugin_slug: "stats", version: null }], + }); + + await expect(service.resolveForServer("server-1")).resolves.toBeNull(); + }); + + it("preview merges always-load plugins, which is the whole point of it", async () => { + const { service } = build({ + mode: [ + { + id: "mode-1", + slug: "retakes", + name: "Retakes", + cfg: null, + extra_game_params: null, + }, + ], + modePlugins: [ + { + plugin_slug: "retakes", + config: null, + config_path: null, + version: "2.0.0", + }, + ], + alwaysLoad: [{ plugin_slug: "stats", version: "1.0.0" }], + }); + + const preview = await service.previewForMode("mode-1"); + + expect(preview?.enabledPlugins).toEqual("retakes@2.0.0,stats@1.0.0"); + }); +}); + +// link_plugins gates a plugin's files on slug@version being on the node's own +// disk, so naming a version a different node happens to have loads nothing. +describe("GameModesService node scoping", () => { + const build = ( + server: Record, + plugins: Array>, + ) => { + const seen: Array<{ sql: string; params: Array }> = []; + + const postgres = { + query: jest.fn(async (sql: string, params: Array = []) => { + seen.push({ sql, params }); + + if (sql.includes("COALESCE(")) { + return [server]; + } + if (sql.includes("FROM game_modes")) { + return [ + { + id: "mode-1", + slug: "retakes", + name: "Retakes", + cfg: null, + extra_game_params: null, + }, + ]; + } + if (sql.includes("AS disable")) { + return [{ disable: false }]; + } + if (sql.includes("FROM game_mode_plugins")) { + const nodeId = params[2]; + + return plugins.map((plugin) => ({ + ...plugin, + version: + (plugin.versionsByNode as Record)[ + nodeId as string + ] ?? null, + })); + } + return []; + }), + }; + + const service = new GameModesService( + { warn: jest.fn(), log: jest.fn() } as never, + postgres as never, + { + getPluginRuntime: jest.fn(async () => "swiftlys2"), + resolvePluginRuntime: jest.fn( + async (pin?: { pin_plugin_runtime?: string | null }) => + pin?.pin_plugin_runtime ?? "swiftlys2", + ), + } as never, + ); + + return { service, seen }; + }; + + it("takes the version from the node hosting the server, not the newest reporter", async () => { + const { service } = build( + { + game_mode_id: "mode-1", + game_server_node_id: "node-a", + pin_plugin_runtime: null, + }, + [ + { + plugin_slug: "retakes", + config: null, + config_path: null, + required: true, + versionsByNode: { "node-a": "1.0.0", "node-b": "1.1.0" }, + }, + ], + ); + + const resolved = await service.resolveForServer("server-1"); + + expect(resolved?.enabledPlugins).toEqual("retakes@1.0.0"); + }); + + it("asks for the node's pinned runtime rather than the deployment's", async () => { + const { service, seen } = build( + { + game_mode_id: "mode-1", + game_server_node_id: "node-a", + pin_plugin_runtime: "counterstrikesharp", + }, + [ + { + plugin_slug: "retakes", + config: null, + config_path: null, + required: true, + versionsByNode: { "node-a": "1.0.0" }, + }, + ], + ); + + await service.resolveForServer("server-1"); + + const modePlugins = seen.find((entry) => + entry.sql.includes("FROM game_mode_plugins"), + ); + + expect(modePlugins?.params[1]).toEqual("counterstrikesharp"); + }); + + it("refuses to boot a mode whose required plugin is not on the node", async () => { + const { service } = build( + { + game_mode_id: "mode-1", + game_server_node_id: "node-a", + pin_plugin_runtime: null, + }, + [ + { + plugin_slug: "retakes", + config: null, + config_path: null, + required: true, + versionsByNode: { "node-b": "1.1.0" }, + }, + ], + ); + + await expect(service.resolveForServer("server-1")).rejects.toBeInstanceOf( + RequiredPluginMissing, + ); + }); + + it("boots without a plugin the mode marks optional", async () => { + const { service } = build( + { + game_mode_id: "mode-1", + game_server_node_id: "node-a", + pin_plugin_runtime: null, + }, + [ + { + plugin_slug: "retakes", + config: null, + config_path: null, + required: true, + versionsByNode: { "node-a": "1.0.0" }, + }, + { + plugin_slug: "stats", + config: null, + config_path: null, + required: false, + versionsByNode: {}, + }, + ], + ); + + const resolved = await service.resolveForServer("server-1"); + + expect(resolved?.enabledPlugins).toEqual("retakes@1.0.0"); + }); +}); + +// FollowCS2ServerGuidelines is true in both frameworks' shipped config, and +// turning it off is what Valve says can ban every GSLT on the account -- so it +// takes the catalog saying the plugin needs it AND the operator saying yes. +describe("GameModesService server guidelines", () => { + const build = (rows: Record>>) => { + const seen: Array<{ sql: string; params: Array }> = []; + + const postgres = { + query: jest.fn(async (sql: string, params: Array = []) => { + seen.push({ sql, params }); + + if (sql.includes("COALESCE(")) { + return [{ game_mode_id: "mode-1", game_server_node_id: "node-a" }]; + } + if (sql.includes("FROM game_modes")) { + return [ + { + id: "mode-1", + slug: "skins", + name: "Skins", + cfg: null, + extra_game_params: null, + }, + ]; + } + if (sql.includes("AS disable")) { + return rows.guidelines ?? [{ disable: false }]; + } + if (sql.includes("FROM game_mode_plugins")) { + return rows.modePlugins ?? []; + } + if (sql.includes("FROM game_plugin_installs")) { + return rows.alwaysLoad ?? []; + } + return []; + }), + }; + + const service = new GameModesService( + { warn: jest.fn(), log: jest.fn() } as never, + postgres as never, + { + getPluginRuntime: jest.fn(async () => "swiftlys2"), + resolvePluginRuntime: jest.fn(async () => "swiftlys2"), + } as never, + ); + + return { service, seen }; + }; + + const modePlugins: Array> = [ + { + plugin_slug: "inventory-simulator", + config: null, + config_path: null, + required: true, + version: "1.0.0", + }, + ]; + + it("leaves the guidelines alone when nothing loading needs them off", async () => { + const { service } = build({ modePlugins }); + + const resolved = await service.resolveForServer("server-1"); + + expect(resolved?.disableServerGuidelines).toBe(false); + expect(service.environmentFor(resolved).map((env) => env.name)).toEqual([ + "ENABLED_PLUGINS", + ]); + }); + + it("turns them off once the plugin needs it and the operator has agreed", async () => { + const { service } = build({ modePlugins, guidelines: [{ disable: true }] }); + + const resolved = await service.resolveForServer("server-1"); + + expect(resolved?.disableServerGuidelines).toBe(true); + expect(service.environmentFor(resolved)).toContainEqual({ + name: "DISABLE_SERVER_GUIDELINES", + value: "true", + }); + }); + + // A plugin the operator opted in for, on a server whose mode does not select + // it, is not a reason to boot that server non-compliant. + it("asks only about the plugins this server is actually loading", async () => { + const { service, seen } = build({ + modePlugins, + guidelines: [{ disable: true }], + }); + + await service.resolveForServer("server-1"); + + const asked = seen.find((entry) => entry.sql.includes("AS disable")); + + expect(asked?.params[0]).toEqual(["inventory-simulator"]); + }); +}); diff --git a/src/game-plugins/game-modes.service.ts b/src/game-plugins/game-modes.service.ts new file mode 100644 index 000000000..e3898854f --- /dev/null +++ b/src/game-plugins/game-modes.service.ts @@ -0,0 +1,351 @@ +import { Injectable, Logger } from "@nestjs/common"; +import { PostgresService } from "../postgres/postgres.service"; +import { PluginRuntimeService } from "../plugin-runtime/plugin-runtime.service"; +import { PluginRuntime } from "../configs/types/GameServersConfig"; + +export type ResolvedGameMode = { + id: string; + slug: string; + name: string; + cfg: string | null; + extraGameParams: string | null; + enabledPlugins: string; + pluginConfigs: string | null; + missingRequired: Array; + disableServerGuidelines: boolean; +}; + +// Which node's disk decides the answer, and which framework it is running. +// A null node means "any node has it", which is only ever right when nothing is +// about to boot -- a preview. +type PluginScope = { + nodeId: string | null; + runtime: PluginRuntime; +}; + +type ModeRow = { + id: string; + slug: string; + name: string; + cfg: string | null; + extra_game_params: string | null; +}; + +type ModePluginRow = { + plugin_slug: string; + config: Record | null; + config_path: string | null; + required: boolean; + version: string | null; +}; + +export class RequiredPluginMissing extends Error { + constructor(mode: string, plugins: Array, where: string) { + super( + `"${mode}" requires ${plugins.join(", ")}, which ${ + plugins.length === 1 ? "is" : "are" + } not installed on ${where}`, + ); + } +} + +@Injectable() +export class GameModesService { + constructor( + private readonly logger: Logger, + private readonly postgres: PostgresService, + private readonly pluginRuntime: PluginRuntimeService, + ) {} + + // A match's own mode always wins. A Ranked server never falls back to a + // persistent one: matchmaking capacity has to come up clean every time, and a + // fun match is expected to ask for its mode on the match itself. + public async resolveForServer( + serverId: string, + matchId?: string, + ): Promise { + const [row] = await this.postgres.query< + Array<{ + game_mode_id: string | null; + game_server_node_id: string | null; + pin_plugin_runtime: string | null; + }> + >( + `SELECT COALESCE( + (SELECT mo.game_mode_id + FROM matches m + INNER JOIN match_options mo ON mo.id = m.match_options_id + WHERE m.id = $2), + CASE WHEN s.type IS DISTINCT FROM 'Ranked' + THEN s.game_mode_id + END + ) AS game_mode_id, + s.game_server_node_id, + n.pin_plugin_runtime + FROM servers s + LEFT JOIN game_server_nodes n ON n.id = s.game_server_node_id + WHERE s.id = $1`, + [serverId, matchId ?? null], + ); + + // Scoped to the node this server is about to run on. link_plugins gates a + // plugin's files on the exact slug@version pair being on that node's disk, + // so naming a version another node happens to have newer boots the mode + // with none of its plugins and nothing to say so. + const scope: PluginScope = { + nodeId: row?.game_server_node_id ?? null, + runtime: await this.pluginRuntime.resolvePluginRuntime({ + pin_plugin_runtime: row?.pin_plugin_runtime ?? null, + }), + }; + + const mode = row?.game_mode_id + ? await this.resolve(row.game_mode_id, scope) + : null; + + if (mode?.missingRequired.length) { + throw new RequiredPluginMissing( + mode.name, + mode.missingRequired, + scope.nodeId ?? `any node for ${scope.runtime}`, + ); + } + + return await this.withAlwaysLoad(mode, scope); + } + + // What a server would boot with if it ran this mode right now. Always-load + // plugins belong in the answer even though they are not part of the mode: + // leaving them out is the one thing a preview exists to prevent. + public async previewForMode( + gameModeId: string, + ): Promise { + return await this.withAlwaysLoad(await this.resolve(gameModeId)); + } + + // Always-load plugins are merged in here rather than at the call sites, + // because they apply whether or not a mode is selected -- a server with no + // mode at all still has to load them, which is the entire point of the flag. + private async withAlwaysLoad( + mode: ResolvedGameMode | null, + scope?: PluginScope, + ): Promise { + const always = await this.alwaysLoadPlugins(scope); + + if (always.length === 0) { + return await this.withServerGuidelines(mode); + } + + const fromMode = (mode?.enabledPlugins ?? "").split(",").filter(Boolean); + const modeSlugs = new Set(fromMode.map((entry) => entry.split("@")[0])); + + const enabled = [ + ...fromMode, + // The mode wins a duplicate: it may pin a different version, and it is + // the more specific statement of what this match should run. + ...always.filter((entry) => !modeSlugs.has(entry.split("@")[0])), + ]; + + if (mode) { + return await this.withServerGuidelines({ + ...mode, + enabledPlugins: enabled.join(","), + }); + } + + // No mode, but plugins that load regardless. Everything else is empty so + // the server gets the plugins and none of a mode's cfg or launch params. + return await this.withServerGuidelines({ + id: "", + slug: "", + name: "", + cfg: null, + extraGameParams: null, + enabledPlugins: enabled.join(","), + pluginConfigs: null, + missingRequired: [], + disableServerGuidelines: false, + }); + } + + // Both frameworks refuse the calls a HUD or scoreboard plugin needs while + // FollowCS2ServerGuidelines is true, and Valve's position is that turning it + // off can ban every GSLT on the account. So it takes both halves: the catalog + // saying the plugin cannot work without it, and the operator having said yes + // for that plugin. Decided from the plugins that are actually going to load, + // so a mode that does not select the plugin leaves the server compliant. + private async withServerGuidelines( + mode: ResolvedGameMode | null, + ): Promise { + if (!mode?.enabledPlugins) { + return mode; + } + + const slugs = mode.enabledPlugins + .split(",") + .filter(Boolean) + .map((entry) => entry.split("@")[0]); + + const [row] = await this.postgres.query>( + `SELECT EXISTS ( + SELECT 1 + FROM game_plugin_installs i + INNER JOIN game_plugins p ON p.slug = i.plugin_slug + WHERE i.plugin_slug = ANY($1::text[]) + AND i.disable_server_guidelines = true + AND p.requires_server_guidelines_disabled = true + ) AS disable`, + [slugs], + ); + + return { ...mode, disableServerGuidelines: row?.disable ?? false }; + } + + public async resolve( + gameModeId: string, + scope?: PluginScope, + ): Promise { + const [mode] = await this.postgres.query>( + `SELECT id, slug, name, cfg, extra_game_params + FROM game_modes + WHERE id = $1 AND enabled = true AND archived_at IS NULL`, + [gameModeId], + ); + + if (!mode) { + return null; + } + + const runtime = + scope?.runtime ?? (await this.pluginRuntime.getPluginRuntime()); + const nodeId = scope?.nodeId ?? null; + + // The version a node actually has installed is what gets linked. Selecting + // by the registry's newest instead would name a version that is not on disk, + // and the server would boot silently without the plugin. + const plugins = await this.postgres.query>( + `SELECT mp.plugin_slug, + mp.config, + mp.required, + p.config_path, + (SELECT n.version + FROM game_server_node_plugins n + WHERE n.plugin_slug = mp.plugin_slug + AND n.runtime = $2 + AND n.status = 'Installed' + AND n.version IS NOT NULL + AND ($3::text IS NULL OR n.game_server_node_id = $3) + ORDER BY n.updated_at DESC + LIMIT 1) AS version + FROM game_mode_plugins mp + INNER JOIN game_plugins p ON p.slug = mp.plugin_slug + WHERE mp.game_mode_id = $1 + ORDER BY mp.load_order ASC, mp.plugin_slug ASC`, + [gameModeId, runtime, nodeId], + ); + + const enabled: Array = []; + const configs: Record = {}; + const missingRequired: Array = []; + + for (const plugin of plugins) { + if (!plugin.version) { + if (plugin.required) { + missingRequired.push(plugin.plugin_slug); + } else { + this.logger.warn( + `mode ${mode.slug}: ${plugin.plugin_slug} is not installed on ${ + nodeId ?? `any node for ${runtime}` + }`, + ); + } + + continue; + } + + enabled.push(`${plugin.plugin_slug}@${plugin.version}`); + + if (plugin.config && plugin.config_path) { + const path = plugin.config_path.replace("{runtime}", runtime); + configs[path] = JSON.stringify(plugin.config, null, 2); + } + } + + return { + id: mode.id, + slug: mode.slug, + name: mode.name, + cfg: mode.cfg, + extraGameParams: mode.extra_game_params, + enabledPlugins: enabled.join(","), + pluginConfigs: + Object.keys(configs).length > 0 + ? Buffer.from(JSON.stringify(configs)).toString("base64") + : null, + missingRequired, + // Set once the whole plugin list is known; a mode's own plugins are only + // half of what a server loads. + disableServerGuidelines: false, + }; + } + + // Plugins marked always_load are loaded by every server regardless of mode, + // ranked included. That is the point of the flag: a stats collector is not a + // game mode, and hand-placing it in custom-plugins is what this replaces. + public async alwaysLoadPlugins(scope?: PluginScope): Promise> { + const runtime = + scope?.runtime ?? (await this.pluginRuntime.getPluginRuntime()); + const nodeId = scope?.nodeId ?? null; + + const rows = await this.postgres.query< + Array<{ plugin_slug: string; version: string | null }> + >( + `SELECT i.plugin_slug, + (SELECT n.version + FROM game_server_node_plugins n + WHERE n.plugin_slug = i.plugin_slug + AND n.runtime = $1 + AND n.status = 'Installed' + AND n.version IS NOT NULL + AND ($2::text IS NULL OR n.game_server_node_id = $2) + ORDER BY n.updated_at DESC + LIMIT 1) AS version + FROM game_plugin_installs i + WHERE i.enabled = true AND i.always_load = true + ORDER BY i.plugin_slug`, + [runtime, nodeId], + ); + + return rows + .filter((row) => row.version) + .map((row) => `${row.plugin_slug}@${row.version}`); + } + + // The env a game server pod needs. Every pod builder resolves the mode itself + // -- it needs extraGameParams as well -- so this maps rather than resolves, + // and there is one place that knows what the container reads. + public environmentFor( + mode: ResolvedGameMode | null, + ): Array<{ name: string; value: string }> { + if (!mode?.enabledPlugins) { + return []; + } + + const environment = [ + { name: "ENABLED_PLUGINS", value: mode.enabledPlugins }, + ]; + + if (mode.pluginConfigs) { + environment.push({ name: "PLUGIN_CONFIGS", value: mode.pluginConfigs }); + } + + // setup.sh patches FollowCS2ServerGuidelines in the framework's own config + // before the server starts; there is no way to change it from inside a + // running server. + if (mode.disableServerGuidelines) { + environment.push({ name: "DISABLE_SERVER_GUIDELINES", value: "true" }); + } + + return environment; + } +} diff --git a/src/game-plugins/game-plugins.controller.ts b/src/game-plugins/game-plugins.controller.ts new file mode 100644 index 000000000..e7f44f1c7 --- /dev/null +++ b/src/game-plugins/game-plugins.controller.ts @@ -0,0 +1,203 @@ +import { + Body, + Controller, + ForbiddenException, + Get, + Param, + Post, + Req, +} from "@nestjs/common"; +import { Request } from "express"; +import { HasuraService } from "../hasura/hasura.service"; +import { HasuraAction } from "../hasura/hasura.controller"; +import { User } from "../auth/types/User"; +import { GamePluginsService } from "./game-plugins.service"; +import { GameModesService } from "./game-modes.service"; +import { isRoleAbove } from "../utilities/isRoleAbove"; + +@Controller("game-plugins") +export class GamePluginsController { + constructor( + private readonly gamePlugins: GamePluginsService, + private readonly gameModes: GameModesService, + private readonly hasura: HasuraService, + ) {} + + // The node connector converges itself: it asks what it should have, installs + // the difference, and reports back. Both routes are node-to-API and carry the + // admin secret rather than a user session. + @Get("node/:nodeId/desired") + public async desired( + @Req() request: Request, + @Param("nodeId") nodeId: string, + ) { + this.assertNode(request); + + return await this.gamePlugins.desiredForNode(nodeId); + } + + // Progress, as opposed to the finished inventory /state reports. Without it + // the panel has to infer what a node is doing from the absence of a result, + // which cannot tell "not told yet" apart from "downloading right now". + @Post("node/:nodeId/status") + public async reportStatus( + @Req() request: Request, + @Param("nodeId") nodeId: string, + @Body() + body: { + slug: string; + status: "Installing" | "Failed" | "Removing"; + version?: string | null; + error?: string | null; + }, + ) { + this.assertNode(request); + + await this.gamePlugins.recordNodeProgress(nodeId, body); + + return { success: true }; + } + + @Post("node/:nodeId/state") + public async reportState( + @Req() request: Request, + @Param("nodeId") nodeId: string, + @Body() + body: { + plugins: Array<{ + slug: string; + version: string | null; + runtime: string | null; + source: "managed" | "manual"; + }>; + }, + ) { + this.assertNode(request); + + await this.gamePlugins.recordNodeState(nodeId, body?.plugins ?? []); + + return { success: true }; + } + + private assertNode(request: Request): void { + if (!this.hasura.checkSecret(request.headers["hasura-admin-secret"] as string)) { + throw new ForbiddenException("Invalid node credentials"); + } + } + + @HasuraAction() + public async syncPluginRegistry(data: { user: User }) { + this.assertAdministrator(data.user); + + return await this.gamePlugins.syncRegistry(); + } + + // Installing is a statement of intent, not a fan-out. Nodes converge to it + // themselves, which is what makes a node that is offline now -- or that joins + // later -- end up with the same set. + @HasuraAction() + public async installGamePlugin(data: { + user: User; + slug: string; + version?: string; + }) { + this.assertAdministrator(data.user); + + await this.gamePlugins.requestInstall(data.slug, data.version); + + return { success: true }; + } + + @HasuraAction() + public async uninstallGamePlugin(data: { + user: User; + slug: string; + force?: boolean; + }) { + this.assertAdministrator(data.user); + + await this.gamePlugins.requestUninstall(data.slug, data.force === true); + + return { success: true }; + } + + // A plugin the registry does not carry. Administrator-only for the same + // reason installing is: it decides which third-party code runs on the + // deployment's servers, and here the operator is also vouching for where it + // came from. + @HasuraAction() + public async addCustomGamePlugin(data: { + user: User; + url: string; + runtime: string; + slug?: string; + name?: string; + description?: string; + version?: string; + layout?: string; + installPath?: string; + }) { + this.assertAdministrator(data.user); + + return await this.gamePlugins.addCustomPlugin({ + url: data.url, + runtime: data.runtime, + slug: data.slug, + name: data.name, + description: data.description, + version: data.version, + layout: data.layout, + installPath: data.installPath, + }); + } + + @HasuraAction() + public async reconcileNodePlugins(data: { user: User; nodeId: string }) { + this.assertAdministrator(data.user); + + return { detected: await this.gamePlugins.syncNode(data.nodeId) }; + } + + @HasuraAction() + public async getPluginReadme(data: { + user: User; + slug: string; + runtime?: string; + }) { + this.assertAdministrator(data.user); + + const readme = await this.gamePlugins.readme(data.slug, data.runtime); + + return { + repo: readme?.repo ?? null, + content: readme?.content ?? null, + format: readme?.format ?? null, + url: readme?.url ?? null, + }; + } + + @HasuraAction() + public async previewGameMode(data: { user: User; gameModeId: string }) { + this.assertAdministrator(data.user); + + const mode = await this.gameModes.previewForMode(data.gameModeId); + + if (!mode) { + return { enabledPlugins: "", cfg: null, extraGameParams: null }; + } + + return { + enabledPlugins: mode.enabledPlugins, + cfg: mode.cfg, + extraGameParams: mode.extraGameParams, + }; + } + + // Installing a plugin runs third-party code on every server the node hosts, + // which is a strictly larger capability than anything below administrator. + private assertAdministrator(user: User): void { + if (!user || !isRoleAbove(user.role, "administrator")) { + throw new ForbiddenException("Administrator access required"); + } + } +} diff --git a/src/game-plugins/game-plugins.module.ts b/src/game-plugins/game-plugins.module.ts new file mode 100644 index 000000000..3feb463a6 --- /dev/null +++ b/src/game-plugins/game-plugins.module.ts @@ -0,0 +1,67 @@ +import { Logger, Module } from "@nestjs/common"; +import { BullModule, InjectQueue } from "@nestjs/bullmq"; +import { Queue } from "bullmq"; +import { BullBoardModule } from "@bull-board/nestjs"; +import { BullMQAdapter } from "@bull-board/api/bullMQAdapter"; +import { HasuraModule } from "../hasura/hasura.module"; +import { CacheModule } from "../cache/cache.module"; +import { PostgresModule } from "../postgres/postgres.module"; +import { NotificationsModule } from "../notifications/notifications.module"; +import { PluginRuntimeModule } from "../plugin-runtime/plugin-runtime.module"; +import { getQueuesProcessors } from "../utilities/QueueProcessors"; +import { loggerFactory } from "../utilities/LoggerFactory"; +import { GamePluginQueues } from "./enums/GamePluginQueues"; +import { GamePluginsService } from "./game-plugins.service"; +import { GameModesService } from "./game-modes.service"; +import { GamePluginsController } from "./game-plugins.controller"; +import { SyncGamePluginRegistry } from "./jobs/SyncGamePluginRegistry"; +import { CheckGamePluginUpdates } from "./jobs/CheckGamePluginUpdates"; + +@Module({ + providers: [ + GamePluginsService, + GameModesService, + SyncGamePluginRegistry, + CheckGamePluginUpdates, + ...getQueuesProcessors("GamePlugins"), + loggerFactory(), + Logger, + ], + imports: [ + HasuraModule, + CacheModule, + PostgresModule, + NotificationsModule, + PluginRuntimeModule, + BullModule.registerQueue( + { name: GamePluginQueues.Registry }, + ), + BullBoardModule.forFeature( + { name: GamePluginQueues.Registry, adapter: BullMQAdapter }, + ), + ], + exports: [GamePluginsService, GameModesService], + controllers: [GamePluginsController], +}) +export class GamePluginsModule { + constructor( + @InjectQueue(GamePluginQueues.Registry) registry: Queue, + ) { + if (process.env.RUN_MIGRATIONS) { + return; + } + + void registry.add( + SyncGamePluginRegistry.name, + {}, + { repeat: { pattern: "*/30 * * * *" } }, + ); + + void registry.add( + CheckGamePluginUpdates.name, + {}, + { repeat: { pattern: "7 * * * *" } }, + ); + + } +} diff --git a/src/game-plugins/game-plugins.service.spec.ts b/src/game-plugins/game-plugins.service.spec.ts new file mode 100644 index 000000000..77cb97c8c --- /dev/null +++ b/src/game-plugins/game-plugins.service.spec.ts @@ -0,0 +1,88 @@ +import { GamePluginsService } from "./game-plugins.service"; + +// The registry build picks the Linux asset out of a release; a plugin added by +// hand has to make the same choice, or the operator installs a Windows build +// that unpacks perfectly and then never loads. +describe("GamePluginsService.selectReleaseAsset", () => { + const asset = (name: string) => ({ + name, + browser_download_url: `https://github.com/o/r/releases/download/v1/${name}`, + }); + + it("takes the only archive on offer", () => { + expect( + GamePluginsService.selectReleaseAsset([asset("Plugin-v1.0.0.zip")])?.name, + ).toEqual("Plugin-v1.0.0.zip"); + }); + + it("prefers the asset that names linux", () => { + expect( + GamePluginsService.selectReleaseAsset([ + asset("Plugin-windows.zip"), + asset("Plugin-linux.zip"), + ])?.name, + ).toEqual("Plugin-linux.zip"); + }); + + it("refuses a release that only ships builds for another platform", () => { + expect( + GamePluginsService.selectReleaseAsset([ + asset("Plugin-win64.zip"), + asset("Plugin-macos.zip"), + ]), + ).toBeNull(); + }); + + it("ignores anything that is not an archive", () => { + expect( + GamePluginsService.selectReleaseAsset([ + asset("checksums.txt"), + asset("Plugin.pdb"), + ]), + ).toBeNull(); + }); + + // "darwin" as a substring of a real name is not a platform tag. + it("does not mistake a substring for a platform", () => { + expect( + GamePluginsService.selectReleaseAsset([asset("darwinism-v2.zip")])?.name, + ).toEqual("darwinism-v2.zip"); + }); +}); + +describe("GamePluginsService.slugFrom", () => { + it("makes a slug out of a repository name", () => { + expect(GamePluginsService.slugFrom("cs2-ss2-inventory-simulator")).toEqual( + "cs2-ss2-inventory-simulator", + ); + }); + + it("normalises punctuation and case", () => { + expect(GamePluginsService.slugFrom("MatchZy_Plugin")).toEqual( + "matchzy-plugin", + ); + }); + + // The version in an asset filename is not part of the plugin's identity; + // leaving it in would make every release a different plugin. + it("drops a trailing version", () => { + expect(GamePluginsService.slugFrom("Retakes-1.2.0")).toEqual("retakes"); + }); + + it("drops a v-prefixed version too", () => { + expect(GamePluginsService.slugFrom("InventorySimulator-v1.2.0.zip")).toEqual( + "inventorysimulator", + ); + }); + + // A digit that is part of the name, not a release number. + it("keeps a version-looking name that is the name", () => { + expect(GamePluginsService.slugFrom("cs2-ss2-inventory-simulator")).toEqual( + "cs2-ss2-inventory-simulator", + ); + }); + + it("gives up rather than inventing a slug", () => { + expect(GamePluginsService.slugFrom("...")).toBeUndefined(); + }); +}); diff --git a/src/game-plugins/game-plugins.service.ts b/src/game-plugins/game-plugins.service.ts new file mode 100644 index 000000000..bb560c42f --- /dev/null +++ b/src/game-plugins/game-plugins.service.ts @@ -0,0 +1,1117 @@ +import { createHash } from "node:crypto"; +import { + BadRequestException, + Injectable, + Logger, + NotFoundException, +} from "@nestjs/common"; +import { HasuraService } from "../hasura/hasura.service"; +import { PostgresService } from "../postgres/postgres.service"; +import { PluginRuntimeService } from "../plugin-runtime/plugin-runtime.service"; +import { CacheService } from "../cache/cache.service"; +import { SystemSettingName } from "../system/enums/SystemSettingName"; +import { RegistryIndex, RegistryPlugin } from "./types/Registry"; + +@Injectable() +export class GamePluginsService { + private static readonly DEFAULT_REGISTRY_URL = + "https://registry.5stack.gg/"; + + // Big enough for anything a CS2 plugin ships and small enough that a wrong + // URL -- a disk image, a game build -- fails instead of filling the pod. + private static readonly MAX_ARCHIVE_BYTES = 250 * 1024 * 1024; + + private static readonly SLUG = /^[a-z0-9]+(?:-[a-z0-9]+)*$/; + private static readonly VERSION = /^[A-Za-z0-9][A-Za-z0-9._-]*$/; + + constructor( + private readonly logger: Logger, + private readonly hasura: HasuraService, + private readonly postgres: PostgresService, + private readonly pluginRuntime: PluginRuntimeService, + private readonly cache: CacheService, + ) {} + + public async getRegistryUrl(): Promise { + const [setting] = await this.postgres.query>( + `SELECT value FROM public.settings WHERE name = $1 LIMIT 1`, + [SystemSettingName.GamePluginRegistryUrl], + ); + + return setting?.value?.trim() || GamePluginsService.DEFAULT_REGISTRY_URL; + } + + public async syncRegistry(): Promise<{ plugins: number; versions: number }> { + const url = await this.getRegistryUrl(); + + const response = await fetch(url, { + signal: AbortSignal.timeout(30_000), + headers: { Accept: "application/json" }, + }); + + if (!response.ok) { + throw new BadRequestException( + `registry responded ${response.status} for ${url}`, + ); + } + + const index = (await response.json()) as RegistryIndex; + + // A registry that came back empty is far more likely to be a broken + // publish than a real emptying of the catalog. Refusing to apply it keeps + // installed plugins resolvable instead of orphaning every mode at once. + if (!Array.isArray(index?.plugins) || index.plugins.length === 0) { + this.logger.warn(`registry at ${url} returned no plugins; keeping cache`); + return { plugins: 0, versions: 0 }; + } + + // A slug an operator added themselves is theirs. Overwriting it because the + // catalog later publishes the same name would replace their download URL and + // prune their versions out from under an install that is already running. + const custom = new Set( + ( + await this.postgres.query>( + `SELECT slug FROM public.game_plugins WHERE source = 'custom'`, + ) + ).map((row) => row.slug), + ); + + let versions = 0; + + for (const plugin of index.plugins) { + if (custom.has(plugin.slug)) { + this.logger.warn( + `${plugin.slug} is now in the registry, but this deployment added its own; keeping theirs`, + ); + continue; + } + + versions += await this.upsertPlugin(plugin); + } + + // A plugin pulled from the registry is only forgotten if nothing depends on + // it. game_mode_plugins is RESTRICT, so deleting one a mode still selects + // would abort the whole sync and leave the catalog half-applied. + await this.postgres.query( + `DELETE FROM public.game_plugins p + WHERE p.source = 'registry' + AND p.slug <> ALL($1::text[]) + AND NOT EXISTS ( + SELECT 1 FROM public.game_mode_plugins m WHERE m.plugin_slug = p.slug + ) + AND NOT EXISTS ( + SELECT 1 FROM public.game_server_node_plugins n WHERE n.plugin_slug = p.slug + )`, + [index.plugins.map((plugin) => plugin.slug)], + ); + + this.logger.log( + `registry sync: ${index.plugins.length} plugins, ${versions} versions`, + ); + + return { plugins: index.plugins.length, versions }; + } + + private async upsertPlugin(plugin: RegistryPlugin): Promise { + await this.postgres.query( + `INSERT INTO public.game_plugins + (slug, kind, name, author, description, homepage, tags, verified, + hot_swappable, requires_service, requires_server_guidelines_disabled, + config_schema, config_path, cvars, panel, wiring, pairs_with, synced_at) + VALUES ($1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13,$14,$15,$16,$17, now()) + ON CONFLICT (slug) DO UPDATE SET + kind = EXCLUDED.kind, + name = EXCLUDED.name, + author = EXCLUDED.author, + description = EXCLUDED.description, + homepage = EXCLUDED.homepage, + tags = EXCLUDED.tags, + verified = EXCLUDED.verified, + hot_swappable = EXCLUDED.hot_swappable, + requires_service = EXCLUDED.requires_service, + requires_server_guidelines_disabled = EXCLUDED.requires_server_guidelines_disabled, + config_schema = EXCLUDED.config_schema, + config_path = EXCLUDED.config_path, + cvars = EXCLUDED.cvars, + panel = EXCLUDED.panel, + wiring = EXCLUDED.wiring, + pairs_with = EXCLUDED.pairs_with, + synced_at = now()`, + [ + plugin.slug, + plugin.kind, + plugin.name, + plugin.author, + plugin.description, + plugin.homepage ?? null, + plugin.tags ?? [], + plugin.verified ?? false, + plugin.hot_swappable ?? false, + plugin.requires_service ?? null, + plugin.requires_server_guidelines_disabled ?? false, + plugin.config_schema ? JSON.stringify(plugin.config_schema) : null, + plugin.config_path ?? null, + plugin.cvars ?? [], + plugin.panel ? JSON.stringify(plugin.panel) : null, + plugin.wiring ? JSON.stringify(plugin.wiring) : null, + plugin.pairs_with ?? [], + ], + ); + + const versions = plugin.versions ?? []; + + for (const version of versions) { + await this.postgres.query( + `INSERT INTO public.game_plugin_versions + (plugin_slug, runtime, version, url, sha256, size, published_at, + prerelease, layout, install_path) + VALUES ($1,$2,$3,$4,$5,$6,$7,$8,$9,$10) + ON CONFLICT (plugin_slug, runtime, version) DO UPDATE SET + url = EXCLUDED.url, + sha256 = EXCLUDED.sha256, + size = EXCLUDED.size, + published_at = EXCLUDED.published_at, + prerelease = EXCLUDED.prerelease, + layout = EXCLUDED.layout, + install_path = EXCLUDED.install_path`, + [ + plugin.slug, + version.runtime, + version.version, + version.url, + version.sha256, + version.size ?? null, + version.published_at, + version.prerelease ?? false, + version.layout ?? "csgo", + version.install_path ?? null, + ], + ); + } + + // Versions the upstream repo no longer publishes are dropped unless a node + // still has them installed, so a pinned node never loses its download URL. + await this.postgres.query( + `DELETE FROM public.game_plugin_versions v + WHERE v.plugin_slug = $1 + AND v.version <> ALL($2::text[]) + AND NOT EXISTS ( + SELECT 1 FROM public.game_server_node_plugins n + WHERE n.plugin_slug = v.plugin_slug AND n.version = v.version + )`, + [plugin.slug, versions.map((version) => version.version)], + ); + + return versions.length; + } + + // A plugin the catalog does not carry. The operator points at a release and + // this becomes an entry like any other -- installable, versioned, and + // verified on the node against a digest, because the archive is hashed here + // rather than trusted at download time. + // + // Kept in the same tables as the registry's own entries so nothing + // downstream -- modes, node convergence, install state -- has to know the + // difference. `source` is what keeps a sync from touching it. + public async addCustomPlugin(input: { + url: string; + runtime: string; + slug?: string; + name?: string; + description?: string; + version?: string; + layout?: string; + installPath?: string; + }): Promise<{ + slug: string; + name: string; + version: string; + runtime: string; + }> { + const runtime = await this.assertRuntime(input.runtime); + const layout = input.layout ?? "csgo"; + + if (layout !== "csgo" && layout !== "plugin") { + throw new BadRequestException(`unknown archive layout "${layout}"`); + } + + if (layout === "plugin" && !input.installPath) { + throw new BadRequestException( + "an archive whose root is the plugin folder needs an install path", + ); + } + + const resolved = await this.resolveCustomSource(input.url); + + const slug = (input.slug ?? resolved.slug ?? "").trim().toLowerCase(); + const version = (input.version ?? resolved.version ?? "").trim(); + + if (!GamePluginsService.SLUG.test(slug)) { + throw new BadRequestException( + slug + ? `"${slug}" is not a valid slug: lowercase letters, numbers and dashes` + : "could not work out a slug from that URL; name the plugin yourself", + ); + } + + if (!GamePluginsService.VERSION.test(version)) { + throw new BadRequestException( + version + ? `"${version}" is not a valid version` + : "could not work out a version from that URL; give it one yourself", + ); + } + + const [existing] = await this.postgres.query>( + `SELECT source FROM public.game_plugins WHERE slug = $1`, + [slug], + ); + + // Shadowing a catalog entry would leave two different downloads under one + // name, and the sync would keep fighting over the row. + if (existing && existing.source !== "custom") { + throw new BadRequestException( + `${slug} is already in the registry catalog; install it from there`, + ); + } + + const { sha256, size } = await this.digestOf(resolved.download); + + await this.postgres.query( + `INSERT INTO public.game_plugins + (slug, kind, name, author, description, homepage, source, verified, + synced_at) + VALUES ($1, 'game', $2, $3, $4, $5, 'custom', false, now()) + ON CONFLICT (slug) DO UPDATE SET + name = EXCLUDED.name, + author = EXCLUDED.author, + description = EXCLUDED.description, + homepage = COALESCE(EXCLUDED.homepage, game_plugins.homepage), + synced_at = now()`, + [ + slug, + input.name?.trim() || resolved.name || slug, + resolved.author || "unknown", + input.description?.trim() || + `Added by an administrator from ${resolved.homepage ?? resolved.download}`, + resolved.homepage ?? null, + ], + ); + + await this.postgres.query( + `INSERT INTO public.game_plugin_versions + (plugin_slug, runtime, version, url, sha256, size, published_at, + prerelease, layout, install_path) + VALUES ($1,$2,$3,$4,$5,$6,$7,false,$8,$9) + ON CONFLICT (plugin_slug, runtime, version) DO UPDATE SET + url = EXCLUDED.url, + sha256 = EXCLUDED.sha256, + size = EXCLUDED.size, + published_at = EXCLUDED.published_at, + layout = EXCLUDED.layout, + install_path = EXCLUDED.install_path`, + [ + slug, + runtime, + version, + resolved.download, + sha256, + size, + resolved.publishedAt ?? new Date().toISOString(), + layout, + input.installPath?.trim() || null, + ], + ); + + this.logger.log(`custom plugin ${slug}@${version} added for ${runtime}`); + + return { + slug, + name: input.name?.trim() || resolved.name || slug, + version, + runtime, + }; + } + + private async assertRuntime(runtime: string): Promise { + const [row] = await this.postgres.query>( + `SELECT value FROM public.e_plugin_runtimes WHERE value = $1`, + [runtime], + ); + + if (!row) { + throw new BadRequestException(`unknown plugin runtime "${runtime}"`); + } + + return row.value; + } + + // Accepts what an operator actually has to hand: the repository, a release, + // or the asset itself. A repository is worth resolving rather than refusing, + // because "the newest Linux zip of the latest release" is the same choice the + // registry build makes, and getting it wrong by hand is a silent failure to + // load rather than an error. + private async resolveCustomSource(url: string): Promise<{ + download: string; + slug?: string; + name?: string; + author?: string; + version?: string; + homepage?: string; + publishedAt?: string; + }> { + let parsed: URL; + + try { + parsed = new URL(url.trim()); + } catch { + throw new BadRequestException(`"${url}" is not a URL`); + } + + // http:// would put the archive, and the digest that vouches for it, on the + // wire in the clear. + if (parsed.protocol !== "https:") { + throw new BadRequestException("the URL has to be https"); + } + + const repo = + parsed.hostname === "github.com" + ? parsed.pathname.match(/^\/([^/]+)\/([^/]+?)(?:\.git)?(?:\/|$)/) + : null; + + // A direct link to an asset, on GitHub or anywhere else. + if (!repo || /\.(zip|tar\.gz|tgz)$/i.test(parsed.pathname)) { + const file = parsed.pathname.split("/").pop() ?? ""; + const stem = file.replace(/\.(zip|tar\.gz|tgz)$/i, ""); + + // A GitHub download URL carries the release tag, which is what the + // release is actually called; the filename only sometimes agrees. + const tag = parsed.pathname.match(/\/releases\/download\/([^/]+)\//)?.[1]; + + return { + download: parsed.toString(), + slug: GamePluginsService.slugFrom(stem), + name: stem || undefined, + author: repo ? repo[1] : parsed.hostname, + version: + tag?.replace(/^v/, "") ?? + stem.match(/[-_v](\d+\.\d+(?:\.\d+)?)$/i)?.[1], + homepage: repo ? `https://github.com/${repo[1]}/${repo[2]}` : undefined, + }; + } + + const [, owner, name] = repo; + const tag = parsed.pathname.match(/\/releases\/tag\/([^/]+)/)?.[1]; + + const release = await this.githubRelease(`${owner}/${name}`, tag); + const asset = GamePluginsService.selectReleaseAsset(release.assets ?? []); + + if (!asset) { + throw new BadRequestException( + `${owner}/${name} ${release.tag_name} publishes no Linux archive to install`, + ); + } + + return { + download: asset.browser_download_url, + slug: GamePluginsService.slugFrom(name), + name, + author: owner, + version: release.tag_name?.replace(/^v/, ""), + homepage: `https://github.com/${owner}/${name}`, + publishedAt: release.published_at, + }; + } + + private async githubRelease( + repo: string, + tag?: string, + ): Promise<{ + tag_name?: string; + published_at?: string; + assets?: Array<{ name: string; browser_download_url: string }>; + }> { + const response = await fetch( + `https://api.github.com/repos/${repo}/releases/${tag ? `tags/${encodeURIComponent(tag)}` : "latest"}`, + { + headers: { + Accept: "application/vnd.github+json", + "User-Agent": "5stack-panel", + ...(process.env.GITHUB_TOKEN + ? { Authorization: `Bearer ${process.env.GITHUB_TOKEN}` } + : {}), + }, + signal: AbortSignal.timeout(30_000), + }, + ); + + if (!response.ok) { + throw new BadRequestException( + response.status === 404 + ? `${repo} has no ${tag ? `release tagged ${tag}` : "published release"}` + : `GitHub returned ${response.status} for ${repo}`, + ); + } + + return await response.json(); + } + + // 5Stack game servers are Linux containers, and an asset built for another + // platform unpacks perfectly well and then never loads. Same rule the registry + // build applies, so a hand-added plugin behaves like a catalogued one. + public static selectReleaseAsset( + assets: Array<{ name: string; browser_download_url: string }>, + ): { name: string; browser_download_url: string } | null { + const archives = assets.filter((asset) => /\.zip$/i.test(asset.name)); + const portable = archives.filter( + (asset) => + !/(^|[-_.])(win|win32|win64|windows|osx|macos|darwin)([-_.]|$)/i.test( + asset.name, + ), + ); + + return ( + portable.find((asset) => + /(^|[-_.])(linux|linuxsteamrt64)([-_.]|$)/i.test(asset.name), + ) ?? + portable[0] ?? + null + ); + } + + // A slug identifies the plugin, not the release, so the version has to come + // off first -- otherwise every release installs as a different plugin. + public static slugFrom(value: string): string | undefined { + const slug = value + .replace(/\.(zip|tar\.gz|tgz)$/i, "") + .replace(/[-_.]?v?\d+(?:\.\d+)*$/i, "") + .toLowerCase() + .replace(/[^a-z0-9]+/g, "-") + .replace(/^-+|-+$/g, ""); + + return GamePluginsService.SLUG.test(slug) ? slug : undefined; + } + + // Hashed here, once, rather than trusted on each node: the digest is what + // every node checks its download against, so it has to be established by + // something that saw the bytes. + private async digestOf( + url: string, + ): Promise<{ sha256: string; size: number }> { + const response = await fetch(url, { + headers: { "User-Agent": "5stack-panel" }, + redirect: "follow", + signal: AbortSignal.timeout(10 * 60 * 1000), + }); + + if (!response.ok || !response.body) { + throw new BadRequestException( + `could not download ${url} (${response.status})`, + ); + } + + const hash = createHash("sha256"); + let size = 0; + + for await (const chunk of response.body as unknown as AsyncIterable) { + size += chunk.length; + + if (size > GamePluginsService.MAX_ARCHIVE_BYTES) { + throw new BadRequestException( + `${url} is larger than ${Math.round(GamePluginsService.MAX_ARCHIVE_BYTES / 1024 / 1024)}MB; that is not a plugin`, + ); + } + + hash.update(chunk); + } + + if (size === 0) { + throw new BadRequestException(`${url} returned an empty file`); + } + + return { sha256: hash.digest("hex"), size }; + } + + // Everything a node should have on disk, already resolved to concrete + // downloads. The connector converges to this list and never reads the + // catalog itself, so "which version is newest for this runtime" is decided in + // exactly one place. + public async desiredForNode(nodeId: string): Promise<{ + runtime: string; + plugins: Array<{ + slug: string; + version: string; + url: string; + sha256: string; + layout: string; + installPath: string | null; + }>; + }> { + const [node] = await this.postgres.query< + Array<{ pin_plugin_runtime: string | null }> + >(`SELECT pin_plugin_runtime FROM public.game_server_nodes WHERE id = $1`, [ + nodeId, + ]); + + if (!node) { + throw new NotFoundException(`Node ${nodeId} is not registered`); + } + + const runtime = await this.pluginRuntime.resolvePluginRuntime({ + pin_plugin_runtime: node.pin_plugin_runtime, + }); + + const desired = await this.postgres.query< + Array<{ plugin_slug: string; version: string | null }> + >( + `SELECT plugin_slug, version FROM public.game_plugin_installs + WHERE enabled = true + ORDER BY plugin_slug`, + ); + + const plugins = []; + + for (const row of desired) { + try { + const resolved = await this.resolveVersion( + row.plugin_slug, + runtime, + row.version ?? undefined, + ); + + plugins.push({ + slug: row.plugin_slug, + version: resolved.version, + url: resolved.url, + sha256: resolved.sha256, + layout: resolved.layout, + installPath: resolved.install_path, + }); + } catch (error) { + // A plugin with no build for this runtime is not an error the node can + // act on, and failing the whole manifest would stall every other one. + this.logger.warn( + `${row.plugin_slug} has no ${runtime} release to send to ${nodeId}`, + ); + } + } + + return { runtime, plugins }; + } + + // What a node reports it converged to. Replaces the row set wholesale so a + // plugin removed on disk stops being listed as installed. + public async recordNodeState( + nodeId: string, + reported: Array<{ + slug: string; + version: string | null; + runtime: string | null; + source: "managed" | "manual"; + }>, + ): Promise { + for (const plugin of reported) { + await this.postgres.query( + `INSERT INTO public.game_server_node_plugins + (game_server_node_id, plugin_slug, runtime, version, detected_version, + source, detected, status, updated_at) + SELECT n.id, $2, + COALESCE($3::text, n.pin_plugin_runtime, active_plugin_runtime()), + $4, $4, $5, true, 'Installed', now() + FROM public.game_server_nodes n + WHERE n.id = $1 + ON CONFLICT (game_server_node_id, plugin_slug) DO UPDATE SET + version = EXCLUDED.version, + detected_version = EXCLUDED.detected_version, + detected = true, + status = 'Installed', + source = EXCLUDED.source, + runtime = EXCLUDED.runtime, + last_error = null, + updated_at = now()`, + [nodeId, plugin.slug, plugin.runtime, plugin.version, plugin.source], + ); + } + + const slugs = reported.map((plugin) => plugin.slug); + + // A requested plugin that is not on disk yet is Pending, not gone. Deleting + // the row would drop the record that it was ever asked for, and the panel + // would be back to inferring a state from an absent row. A Failed row keeps + // its status so the error stays readable. + await this.postgres.query( + `UPDATE public.game_server_node_plugins n + SET detected = false, + status = CASE WHEN n.status = 'Failed' THEN 'Failed' ELSE 'Pending' END, + updated_at = now() + WHERE n.game_server_node_id = $1 + AND n.plugin_slug <> ALL($2::text[]) + AND EXISTS ( + SELECT 1 FROM public.game_plugin_installs i + WHERE i.plugin_slug = n.plugin_slug AND i.enabled = true)`, + [nodeId, slugs], + ); + + await this.postgres.query( + `DELETE FROM public.game_server_node_plugins n + WHERE n.game_server_node_id = $1 + AND n.plugin_slug <> ALL($2::text[]) + AND NOT EXISTS ( + SELECT 1 FROM public.game_plugin_installs i + WHERE i.plugin_slug = n.plugin_slug AND i.enabled = true)`, + [nodeId, slugs], + ); + + await this.postgres.query( + `UPDATE public.game_server_nodes SET plugins_synced_at = now() WHERE id = $1`, + [nodeId], + ); + } + + // A plugin's README is the only real description of what it does. It is + // fetched here rather than from the browser so the token (when set) stays + // server-side and one cache entry serves every admin looking at the page. + public async readme( + slug: string, + runtime?: string | null, + ): Promise<{ + content: string; + format: "markdown" | "text"; + repo: string; + url: string; + } | null> { + const cacheKey = `game-plugin:readme:${slug}:${runtime ?? "default"}`; + const cached = await this.cache.get(cacheKey); + + if (cached !== undefined) { + return cached; + } + + const repo = await this.resolveRepo(slug, runtime); + + if (!repo) { + return null; + } + + // The JSON form rather than the raw file, because the file NAME decides how + // to render it. Plenty of projects ship a plain Readme.txt, and running that + // through a markdown parser silently mangles it -- indented lines become + // code blocks or get folded into the paragraph above. + const response = await fetch( + `https://api.github.com/repos/${repo}/readme`, + { + headers: { + Accept: "application/vnd.github+json", + "User-Agent": "5stack-panel", + ...(process.env.GITHUB_TOKEN + ? { Authorization: `Bearer ${process.env.GITHUB_TOKEN}` } + : {}), + }, + signal: AbortSignal.timeout(15_000), + }, + ); + + if (!response.ok) { + this.logger.warn(`no README for ${repo}: ${response.status}`); + await this.cache.put(cacheKey, null, 60 * 30); + return null; + } + + const body = (await response.json()) as { + name?: string; + content?: string; + encoding?: string; + }; + + if (!body.content) { + await this.cache.put(cacheKey, null, 60 * 30); + return null; + } + + const decoded = Buffer.from(body.content, "base64").toString("utf8"); + const isMarkdown = /\.(md|markdown|mdown|mkd)$/i.test(body.name ?? ""); + + const readme = { + content: isMarkdown + ? this.absolutizeMarkdown(decoded, repo) + : decoded, + format: (isMarkdown ? "markdown" : "text") as "markdown" | "text", + repo, + url: `https://github.com/${repo}`, + }; + + await this.cache.put(cacheKey, readme, 60 * 60 * 6); + + return readme; + } + + private async resolveRepo( + slug: string, + runtime?: string | null, + ): Promise { + const [plugin] = await this.postgres.query< + Array<{ homepage: string | null; panel: { repo?: string } | null }> + >(`SELECT homepage, panel FROM public.game_plugins WHERE slug = $1`, [slug]); + + if (!plugin) { + throw new NotFoundException(`${slug} is not in the catalog`); + } + + // A plugin built for both frameworks is two separate repositories with two + // separate READMEs, and homepage only ever names one of them. The release + // URL is per-runtime and carries the owner and repo that published it, so + // the variant's repo is derivable without storing it a second time. + if (runtime) { + const repo = await this.repoFromRelease(slug, runtime); + + if (repo) { + return repo; + } + } + + const fromHomepage = plugin.homepage?.match( + /^https?:\/\/github\.com\/([^/]+\/[^/#?]+)/i, + ); + + if (fromHomepage) { + return fromHomepage[1].replace(/\.git$/, ""); + } + + if (plugin.panel?.repo) { + return plugin.panel.repo; + } + + return await this.repoFromRelease(slug); + } + + private async repoFromRelease( + slug: string, + runtime?: string, + ): Promise { + const [version] = await this.postgres.query>( + runtime + ? `SELECT url FROM public.game_plugin_versions + WHERE plugin_slug = $1 AND runtime = $2 + ORDER BY published_at DESC LIMIT 1` + : `SELECT url FROM public.game_plugin_versions + WHERE plugin_slug = $1 + ORDER BY published_at DESC LIMIT 1`, + runtime ? [slug, runtime] : [slug], + ); + + const fromRelease = version?.url?.match( + /^https?:\/\/github\.com\/([^/]+\/[^/]+)\//i, + ); + + return fromRelease ? fromRelease[1] : null; + } + + // READMEs reference their own repo with relative paths, which resolve against + // the panel's origin and 404 once the markdown is rendered anywhere else. + private absolutizeMarkdown(markdown: string, repo: string): string { + const raw = `https://raw.githubusercontent.com/${repo}/HEAD/`; + const blob = `https://github.com/${repo}/blob/HEAD/`; + + return markdown.replace( + /(!?)\[([^\]]*)\]\(([^)\s]+)(\s+"[^"]*")?\)/g, + (match, bang, text, target, title) => { + if (/^([a-z]+:|\/\/|#)/i.test(target)) { + return match; + } + + const base = bang ? raw : blob; + const absolute = `${base}${target.replace(/^\.?\//, "")}`; + + return `${bang}[${text}](${absolute}${title ?? ""})`; + }, + ); + } + + // Records what a server reported loading. The RCON call itself lives with the + // caller: RconService already reaches MatchesModule, and importing it here + // closed a module cycle that stopped the whole API booting. + // + // null means "could not be asked" -- SwiftlyS2 routes `sw plugins list` to + // its own log sink and returns an empty RCON body, and recording that as an + // empty list would report every plugin on the server as failed to load. + public async recordLoadedPlugins( + serverId: string, + loaded: Array | null, + ): Promise { + await this.postgres.query( + `UPDATE public.servers + SET loaded_plugins = $2::jsonb, plugins_checked_at = now() + WHERE id = $1`, + [serverId, loaded === null ? null : JSON.stringify(loaded)], + ); + } + + // css_plugins list prints a numbered block per plugin: + // [1] "Name" (v1.2.3) by Author + public static parseCssPluginList(output: string): Array { + const names: Array = []; + + for (const line of output.split("\n")) { + const match = line.match(/^\s*\[\s*\d+\s*\]\s*"?([^"(]+?)"?\s*(?:\(|$)/); + + if (match?.[1]) { + names.push(match[1].trim()); + } + } + + return names; + } + + public async resolveVersion( + slug: string, + runtime: string, + version?: string, + ): Promise<{ + version: string; + url: string; + sha256: string; + layout: string; + install_path: string | null; + }> { + const [row] = await this.postgres.query< + Array<{ + version: string; + url: string; + sha256: string; + layout: string; + install_path: string | null; + }> + >( + `SELECT version, url, sha256, layout, install_path + FROM public.game_plugin_versions + WHERE plugin_slug = $1 + AND runtime = $2 + AND ($3::text IS NULL OR version = $3) + -- Only when resolving the newest. Naming a version is an explicit + -- choice and may well be a release candidate; tracking the newest is + -- not, and a published rc would otherwise roll every node onto it on + -- the next poll -- a release the update check does not even count. + AND ($3::text IS NOT NULL OR prerelease = false) + ORDER BY published_at DESC + LIMIT 1`, + [slug, runtime, version ?? null], + ); + + if (!row) { + throw new NotFoundException( + version + ? `${slug} ${version} is not published for ${runtime}` + : `${slug} has no ${runtime} release`, + ); + } + + return row; + } + + // Named rather than counted: the confirmation is only useful if it says which + // modes are about to lose the plugin. + public async modesUsing( + slug: string, + ): Promise> { + return await this.postgres.query>( + `SELECT m.id, m.name + FROM public.game_mode_plugins p + INNER JOIN public.game_modes m ON m.id = p.game_mode_id + WHERE p.plugin_slug = $1 AND m.archived_at IS NULL + ORDER BY m.name`, + [slug], + ); + } + + // Installing records intent. Nodes converge to it on their own schedule, so a + // node that is offline right now, or joins the cluster next week, ends up with + // the same set without anyone re-running anything. + // + // channel follows the version: naming one pins it, omitting one tracks the + // newest release. Both are reachable from the UI -- pinning by installing a + // specific version, tracking by installing without one. + public async requestInstall(slug: string, version?: string): Promise { + const [plugin] = await this.postgres.query>( + `SELECT slug FROM public.game_plugins WHERE slug = $1`, + [slug], + ); + + if (!plugin) { + throw new NotFoundException(`${slug} is not in the catalog`); + } + + await this.postgres.query( + `INSERT INTO public.game_plugin_installs (plugin_slug, version, channel, enabled) + VALUES ($1, $2, $3, true) + ON CONFLICT (plugin_slug) DO UPDATE SET + version = EXCLUDED.version, + channel = EXCLUDED.channel, + enabled = true, + updated_at = now()`, + [slug, version ?? null, version ? "Pinned" : "Auto"], + ); + + await this.seedPending(slug); + + this.nudgeNodes(); + } + + public async requestUninstall(slug: string, force = false): Promise { + const inUse = await this.modesUsing(slug); + + // Being used by a mode is a reason to ask, not a reason to refuse. Making + // the operator go and edit every mode first was busywork for something they + // had already decided. + if (inUse.length > 0 && !force) { + throw new BadRequestException( + `${slug} is used by ${inUse.map((mode) => `"${mode.name}"`).join(", ")}`, + ); + } + + if (inUse.length > 0) { + await this.postgres.query( + `DELETE FROM public.game_mode_plugins WHERE plugin_slug = $1`, + [slug], + ); + } + + await this.postgres.query( + `DELETE FROM public.game_plugin_installs WHERE plugin_slug = $1`, + [slug], + ); + + this.nudgeNodes(); + } + + // Asks a node to converge now and report back. The node owns its own state, + // so the API nudges rather than reaching in and writing the same rows -- two + // writers doing wholesale replaces on one table is a race, not a safety net. + public async syncNode(nodeId: string): Promise { + const { plugins } = (await this.callNode(nodeId, "sync", { + method: "POST", + body: "{}", + })) as { plugins: Array<{ slug: string }> }; + + return plugins.length; + } + + // A requested plugin has a real state on every node from the moment it is + // requested: Pending. Leaving the row absent until the node reports meant the + // panel could only guess, and it guessed "Installing" for a node that had not + // even been told yet. + private async seedPending(slug: string): Promise { + await this.postgres.query( + `INSERT INTO public.game_server_node_plugins + (game_server_node_id, plugin_slug, runtime, status, source, detected) + SELECT n.id, $1, COALESCE(n.pin_plugin_runtime, active_plugin_runtime()), + 'Pending', 'managed', false + FROM public.game_server_nodes n + WHERE n.enabled = true + ON CONFLICT (game_server_node_id, plugin_slug) DO NOTHING`, + [slug], + ); + } + + // Reported by the node as it works, so "downloading right now" is a state the + // panel is told about rather than one it infers. + public async recordNodeProgress( + nodeId: string, + progress: { + slug: string; + status: "Installing" | "Failed" | "Removing"; + version?: string | null; + error?: string | null; + }, + ): Promise { + await this.postgres.query( + `INSERT INTO public.game_server_node_plugins + (game_server_node_id, plugin_slug, runtime, version, status, last_error, + source, detected, updated_at) + SELECT n.id, $2, COALESCE(n.pin_plugin_runtime, active_plugin_runtime()), + $3, $4, $5, 'managed', false, now() + FROM public.game_server_nodes n + WHERE n.id = $1 + ON CONFLICT (game_server_node_id, plugin_slug) DO UPDATE SET + status = EXCLUDED.status, + version = COALESCE(EXCLUDED.version, game_server_node_plugins.version), + runtime = EXCLUDED.runtime, + last_error = EXCLUDED.last_error, + updated_at = now()`, + [ + nodeId, + progress.slug, + progress.version ?? null, + progress.status, + progress.error ?? null, + ], + ); + } + + private async getNodeIP(nodeId: string): Promise { + const { game_server_nodes_by_pk } = await this.hasura.query({ + game_server_nodes_by_pk: { + __args: { id: nodeId }, + node_ip: true, + status: true, + }, + }); + + if (!game_server_nodes_by_pk?.node_ip) { + throw new NotFoundException(`Node ${nodeId} is not reachable`); + } + + return game_server_nodes_by_pk.node_ip; + } + + // Without this a node only notices on its own five minute poll, so pressing + // Install looks like it did nothing. Deliberately not awaited: converging can + // mean a multi-minute download, and the admin's action should not block on + // it -- progress arrives through game_server_node_plugins, which the panel + // subscribes to. A node that is down is not an error here; it converges on + // its next poll. + private nudgeNodes(): void { + void (async () => { + const nodes = await this.postgres.query>( + `SELECT id FROM public.game_server_nodes + WHERE enabled = true AND status IN ('Online', 'NotAcceptingNewMatches')`, + ); + + await Promise.all( + nodes.map((node) => + this.callNode(node.id, "sync", { method: "POST" }).catch((error) => { + this.logger.warn( + `could not nudge ${node.id} to sync plugins: ${error.message ?? error}`, + ); + }), + ), + ); + })().catch((error) => { + this.logger.warn(`plugin nudge failed: ${error.message ?? error}`); + }); + } + + private async callNode( + nodeId: string, + endpoint: string, + options: RequestInit = {}, + ): Promise { + const nodeIP = await this.getNodeIP(nodeId); + const url = `http://${nodeIP}:8585/plugins/${endpoint}`; + + const response = await fetch(url, { + ...options, + headers: { "Content-Type": "application/json", ...options.headers }, + // Installing pulls an archive from the internet on the node's link. + signal: AbortSignal.timeout(10 * 60 * 1000), + }); + + if (!response.ok) { + const body = await response.json().catch(() => ({}) as { message?: string }); + throw new BadRequestException( + body.message || `node connector returned ${response.status}`, + ); + } + + return await response.json(); + } +} diff --git a/src/game-plugins/jobs/CheckGamePluginUpdates.ts b/src/game-plugins/jobs/CheckGamePluginUpdates.ts new file mode 100644 index 000000000..8bf37fe0b --- /dev/null +++ b/src/game-plugins/jobs/CheckGamePluginUpdates.ts @@ -0,0 +1,95 @@ +import { WorkerHost } from "@nestjs/bullmq"; +import { Logger } from "@nestjs/common"; +import { UseQueue } from "../../utilities/QueueProcessors"; +import { GamePluginQueues } from "../enums/GamePluginQueues"; +import { PostgresService } from "../../postgres/postgres.service"; +import { HasuraService } from "../../hasura/hasura.service"; +import { NotificationsService } from "../../notifications/notifications.service"; +import { DISCORD_COLORS } from "../../notifications/utilities/constants"; + +type OutdatedInstall = { + plugin_slug: string; + name: string; + installed: string; + latest: string; +}; + +@UseQueue("GamePlugins", GamePluginQueues.Registry) +export class CheckGamePluginUpdates extends WorkerHost { + constructor( + protected readonly logger: Logger, + protected readonly postgres: PostgresService, + protected readonly hasura: HasuraService, + protected readonly notifications: NotificationsService, + ) { + super(); + } + + async process(): Promise { + // Only pinned installs can fall behind. An Auto install has no version to + // compare: it resolves to the newest release every time a node asks, so it + // is already up to date by construction -- which is why this notifies rather + // than installing anything. + const outdated = await this.postgres.query>( + `SELECT i.plugin_slug, + p.name, + i.version AS installed, + latest.version AS latest + FROM public.game_plugin_installs i + INNER JOIN public.game_plugins p ON p.slug = i.plugin_slug + CROSS JOIN LATERAL ( + SELECT v.version + FROM public.game_plugin_versions v + WHERE v.plugin_slug = i.plugin_slug + AND v.runtime = active_plugin_runtime() + AND v.prerelease = false + ORDER BY v.published_at DESC + LIMIT 1 + ) latest + WHERE i.enabled = true + AND i.channel = 'Pinned' + AND i.version IS DISTINCT FROM latest.version`, + ); + + if (outdated.length === 0) { + return; + } + + // One unread notification stands for the whole backlog, matching how an out + // of date server plugin is reported; a fresh one is only raised once the + // admin has cleared the last. + const { notifications_aggregate } = await this.hasura.query({ + notifications_aggregate: { + __args: { + where: { + entity_id: { _eq: "game_plugin_update" }, + is_read: { _eq: false }, + deleted_at: { _is_null: true }, + }, + }, + aggregate: { count: true }, + }, + }); + + if (notifications_aggregate.aggregate.count > 0) { + return; + } + + const names = [...new Set(outdated.map((row) => row.name))]; + + await this.notifications.send( + "GameNodeStatus", + { + entity_id: "game_plugin_update", + title: "Game Plugin Updates Available", + message: + names.length === 1 + ? `${names[0]} has a newer release than the version installed.` + : `${names.length} game plugins have newer releases than the versions installed.`, + role: "administrator", + }, + undefined, + DISCORD_COLORS.ORANGE, + ); + } +} diff --git a/src/game-plugins/jobs/SyncGamePluginRegistry.ts b/src/game-plugins/jobs/SyncGamePluginRegistry.ts new file mode 100644 index 000000000..d438113a8 --- /dev/null +++ b/src/game-plugins/jobs/SyncGamePluginRegistry.ts @@ -0,0 +1,25 @@ +import { WorkerHost } from "@nestjs/bullmq"; +import { Logger } from "@nestjs/common"; +import { UseQueue } from "../../utilities/QueueProcessors"; +import { GamePluginQueues } from "../enums/GamePluginQueues"; +import { GamePluginsService } from "../game-plugins.service"; + +@UseQueue("GamePlugins", GamePluginQueues.Registry) +export class SyncGamePluginRegistry extends WorkerHost { + constructor( + protected readonly logger: Logger, + protected readonly gamePlugins: GamePluginsService, + ) { + super(); + } + + async process(): Promise { + try { + await this.gamePlugins.syncRegistry(); + } catch (error) { + // The catalog is a cache of somebody else's uptime. A failed poll leaves + // the last good copy in place rather than emptying the directory. + this.logger.warn(`unable to sync the plugin registry`, error.message); + } + } +} diff --git a/src/game-plugins/types/Registry.ts b/src/game-plugins/types/Registry.ts new file mode 100644 index 000000000..776cd3294 --- /dev/null +++ b/src/game-plugins/types/Registry.ts @@ -0,0 +1,38 @@ +export type RegistryVersion = { + version: string; + runtime: string; + url: string; + sha256: string; + size?: number; + published_at: string; + prerelease?: boolean; + layout?: "csgo" | "plugin"; + install_path?: string; +}; + +export type RegistryPlugin = { + slug: string; + kind: "game" | "panel" | "bundle"; + name: string; + author: string; + description: string; + homepage?: string; + tags?: Array; + verified?: boolean; + hot_swappable?: boolean; + requires_service?: string | null; + requires_server_guidelines_disabled?: boolean; + config_schema?: Record; + config_path?: string; + cvars?: Array; + panel?: Record; + wiring?: Record; + pairs_with?: Array; + versions?: Array; +}; + +export type RegistryIndex = { + version: number; + generated_at: string; + plugins: Array; +}; diff --git a/src/game-server-node/game-server-node.controller.ts b/src/game-server-node/game-server-node.controller.ts index 46bf55e86..7b63bb220 100644 --- a/src/game-server-node/game-server-node.controller.ts +++ b/src/game-server-node/game-server-node.controller.ts @@ -29,6 +29,7 @@ import { game_server_nodes_set_input } from "generated/schema"; import { NotificationsService } from "../notifications/notifications.service"; import { DISCORD_COLORS } from "../notifications/utilities/constants"; import { GameStreamerService } from "../matches/game-streamer/game-streamer.service"; +import { GamePluginsService } from "../game-plugins/game-plugins.service"; @Controller("game-server-node") export class GameServerNodeController { @@ -50,6 +51,7 @@ export class GameServerNodeController { @InjectQueue(GameServerQueues.GameUpdate) private gameUpdateQueue: Queue, @InjectQueue(GameServerQueues.NodeOffline) private readonly nodeOfflineQueue: Queue, + protected readonly gamePlugins: GamePluginsService, @InjectQueue(GameServerQueues.BakeShaders) private readonly bakeShadersQueue: Queue, @InjectQueue(GameServerQueues.ValidateGamedata) @@ -937,6 +939,20 @@ UNIT __typename: true, }, }); + + // Only on the transition into connected. Files on disk say nothing about + // whether a plugin loaded -- a CS2 update breaking signatures looks + // identical on the filesystem -- so ask the server itself, once, as it + // comes up. + if (!server.connected) { + void this.recordLoadedPlugins(String(serverId), pluginRuntime).catch( + (error: Error) => { + this.logger.warn( + `could not read loaded plugins from ${serverId}: ${error.message}`, + ); + }, + ); + } } const jobId = `server-offline.${serverId}`; @@ -956,4 +972,31 @@ UNIT }, ); } + + // SwiftlyS2 routes `sw plugins list` to its own log sink and answers RCON with + // an empty body, so there is nothing to read back. Recorded as null -- not an + // empty list -- because reporting every plugin as failed to load would send an + // operator chasing something that is running perfectly well. + private async recordLoadedPlugins( + serverId: string, + runtime: PluginRuntime | null, + ): Promise { + if (runtime !== "counterstrikesharp") { + await this.gamePlugins.recordLoadedPlugins(serverId, null); + return; + } + + const connection = await this.rcon.connect(serverId); + + if (!connection) { + return; + } + + const output = await connection.send("css_plugins list"); + + await this.gamePlugins.recordLoadedPlugins( + serverId, + GamePluginsService.parseCssPluginList(output ?? ""), + ); + } } diff --git a/src/game-server-node/game-server-node.module.ts b/src/game-server-node/game-server-node.module.ts index 1aa6332b8..89b67b917 100644 --- a/src/game-server-node/game-server-node.module.ts +++ b/src/game-server-node/game-server-node.module.ts @@ -30,6 +30,7 @@ import { GetPluginVersions } from "./jobs/GetPluginVersions"; import { K8sModule } from "src/k8s/k8s.module"; import { GameStreamerModule } from "../matches/game-streamer/game-streamer.module"; import { PluginRuntimeModule } from "src/plugin-runtime/plugin-runtime.module"; +import { GamePluginsModule } from "src/game-plugins/game-plugins.module"; import { BakeShaders } from "./jobs/BakeShaders"; import { ValidateGamedata } from "./jobs/ValidateGamedata"; @@ -57,6 +58,7 @@ import { ValidateGamedata } from "./jobs/ValidateGamedata"; K8sModule, GameStreamerModule, PluginRuntimeModule, + GamePluginsModule, BullModule.registerQueue( { name: GameServerQueues.GameUpdate, diff --git a/src/game-server-node/game-server-node.service.ts b/src/game-server-node/game-server-node.service.ts index 92d167061..f1595ab31 100644 --- a/src/game-server-node/game-server-node.service.ts +++ b/src/game-server-node/game-server-node.service.ts @@ -421,6 +421,8 @@ export class GameServerNodeService { downloads: true, }, update_status: true, + pin_plugin_version: true, + pin_plugin_runtime: true, }, }); @@ -478,6 +480,13 @@ export class GameServerNodeService { ? `serverfiles-csgo-${sanitizedGameServerNodeId}` : `serverfiles-${sanitizedGameServerNodeId}`; + // /opt/scripts/update.sh ships in both runtime images; resolving the node's own + // image keeps the update job on something already pulled onto that node. + const updateImage = + await this.pluginRuntimeService.resolveGameServerPluginImage( + game_server_nodes_by_pk, + ); + try { await this.batchApi.createNamespacedJob({ namespace: this.namespace, @@ -525,7 +534,7 @@ export class GameServerNodeService { containers: [ { name: "update-cs-server", - image: "ghcr.io/5stackgg/game-server:latest", + image: updateImage, command: ["/opt/scripts/update.sh"], env: [ { diff --git a/src/hasura/metadata-permissions.spec.ts b/src/hasura/metadata-permissions.spec.ts new file mode 100644 index 000000000..38bc89fd7 --- /dev/null +++ b/src/hasura/metadata-permissions.spec.ts @@ -0,0 +1,70 @@ +import { readdirSync, readFileSync } from "fs"; +import { join } from "path"; +import * as yaml from "js-yaml"; + +// Permission blocks list `columns:` and `computed_fields:` separately, and it is +// easy to append a new column into whichever list happens to sit above it in the +// file. Hasura then refuses the whole table with "expecting a computed field; +// but X is a column" -- which only shows up when metadata is applied, long after +// tsc and every test suite have gone green. +describe("hasura table metadata", () => { + const dir = join(__dirname, "../../hasura/metadata/databases/default/tables"); + + const tables = readdirSync(dir) + .filter((file) => file.startsWith("public_") && file.endsWith(".yaml")) + .map((file) => ({ + file, + metadata: yaml.load(readFileSync(join(dir, file), "utf8")) as Record< + string, + any + >, + })); + + it("finds table metadata to check", () => { + expect(tables.length).toBeGreaterThan(50); + }); + + it("only grants computed fields the table actually declares", () => { + const problems: Array = []; + + for (const { file, metadata } of tables) { + const declared = new Set( + (metadata?.computed_fields ?? []).map( + (field: { name: string }) => field.name, + ), + ); + + for (const permission of metadata?.select_permissions ?? []) { + for (const granted of permission.permission?.computed_fields ?? []) { + if (!declared.has(granted)) { + problems.push( + `${file}: role "${permission.role}" grants computed field "${granted}", which the table does not declare`, + ); + } + } + } + } + + expect(problems).toEqual([]); + }); + + it("never lists the same name as both a column and a computed field", () => { + const problems: Array = []; + + for (const { file, metadata } of tables) { + for (const permission of metadata?.select_permissions ?? []) { + const columns: Array = permission.permission?.columns ?? []; + const computed: Array = permission.permission?.computed_fields ?? []; + const overlap = columns.filter((column) => computed.includes(column)); + + for (const name of overlap) { + problems.push( + `${file}: role "${permission.role}" lists "${name}" as both a column and a computed field`, + ); + } + } + } + + expect(problems).toEqual([]); + }); +}); diff --git a/src/k8s/logging/bootDiagnostics.spec.ts b/src/k8s/logging/bootDiagnostics.spec.ts index defdecd60..d123e4b7a 100644 --- a/src/k8s/logging/bootDiagnostics.spec.ts +++ b/src/k8s/logging/bootDiagnostics.spec.ts @@ -39,7 +39,7 @@ describe("bootDiagnostics", () => { events: [ { reason: "Pulling", - message: 'Pulling image "ghcr.io/5stackgg/game-server:latest"', + message: 'Pulling image "ghcr.io/5stackgg/game-server-sw:latest"', lastTimestamp: "2026-04-23T12:01:00.000Z", }, ], diff --git a/src/matches/match-assistant/match-assistant.service.spec.ts b/src/matches/match-assistant/match-assistant.service.spec.ts index 42ced9ab6..0d381cdeb 100644 --- a/src/matches/match-assistant/match-assistant.service.spec.ts +++ b/src/matches/match-assistant/match-assistant.service.spec.ts @@ -71,6 +71,9 @@ describe("MatchAssistantService", () => { ), resolvePluginRuntime: jest.fn(async () => "swiftlys2"), } as any, + { + resolveForServer: jest.fn(async (): Promise => null), + } as any, queue as any, scheduledMatchesQueue as any, ); diff --git a/src/matches/match-assistant/match-assistant.service.ts b/src/matches/match-assistant/match-assistant.service.ts index 7d4ff37d7..e011b905b 100644 --- a/src/matches/match-assistant/match-assistant.service.ts +++ b/src/matches/match-assistant/match-assistant.service.ts @@ -1,6 +1,7 @@ import { Injectable, Logger } from "@nestjs/common"; import { HasuraService } from "../../hasura/hasura.service"; import { PluginRuntimeService } from "src/plugin-runtime/plugin-runtime.service"; +import { GameModesService } from "src/game-plugins/game-modes.service"; import { BatchV1Api, CoreV1Api, @@ -59,6 +60,7 @@ export class MatchAssistantService { private readonly encryption: EncryptionService, private readonly loggingService: LoggingService, private readonly pluginRuntimeService: PluginRuntimeService, + private readonly gameModesService: GameModesService, @InjectQueue(MatchQueues.MatchServers) private queue: Queue, @InjectQueue(MatchQueues.ScheduledMatches) private scheduledMatchesQueue: Queue, @@ -796,6 +798,14 @@ export class MatchAssistantService { const showEloRanks = fivestackRanksSetting?.value === "true"; + const gameMode = await this.gameModesService.resolveForServer( + server.id, + matchId, + ); + + const gameModeEnvironment = + this.gameModesService.environmentFor(gameMode); + await batch.createNamespacedJob({ namespace: this.namespace, body: { @@ -877,7 +887,7 @@ export class MatchAssistantService { }, { name: "EXTRA_GAME_PARAMS", - value: `-maxplayers ${match.max_players_per_lineup * 2 + 3} ${map.workshop_map_id ? `+map de_inferno` : `+map ${map.name}`} +game_type 0 +game_mode ${MatchAssistantService.getGameMode(match.options?.type)} +sv_password ${match.password}`, + value: `-maxplayers ${match.max_players_per_lineup * 2 + 3} ${map.workshop_map_id ? `+map de_inferno` : `+map ${map.name}`} +game_type 0 +game_mode ${MatchAssistantService.getGameMode(match.options?.type)} +sv_password ${match.password}${gameMode?.extraGameParams ? ` ${gameMode.extraGameParams}` : ""}`, }, { name: "SERVER_ID", value: server.id }, { @@ -907,6 +917,7 @@ export class MatchAssistantService { ...(showEloRanks ? [{ name: "SHOW_ELO_RANKS", value: "true" }] : []), + ...gameModeEnvironment, ], volumeMounts: [ { diff --git a/src/matches/matches.controller.spec.ts b/src/matches/matches.controller.spec.ts index 1ba9189fc..880723652 100644 --- a/src/matches/matches.controller.spec.ts +++ b/src/matches/matches.controller.spec.ts @@ -50,6 +50,7 @@ describe("MatchesController", () => { {} as any, {} as any, {} as any, + {} as any, ); }); diff --git a/src/matches/matches.controller.ts b/src/matches/matches.controller.ts index 2ff4d4ae3..8227b44b3 100644 --- a/src/matches/matches.controller.ts +++ b/src/matches/matches.controller.ts @@ -5,6 +5,7 @@ import { User } from "../auth/types/User"; import { HasuraEventData } from "../hasura/types/HasuraEventData"; import { safeJsonStringify } from "../utilities/safeJsonStringify"; import { HasuraService } from "../hasura/hasura.service"; +import { GameModesService } from "../game-plugins/game-modes.service"; import { MatchAssistantService } from "./match-assistant/match-assistant.service"; import { DiscordBotOverviewService } from "../discord-bot/discord-bot-overview/discord-bot-overview.service"; import { DiscordBotMessagingService } from "../discord-bot/discord-bot-messaging/discord-bot-messaging.service"; @@ -112,6 +113,7 @@ export class MatchesController { private readonly matchImport: MatchImportService, private readonly camera: CameraService, private readonly cameraMonitor: CameraMonitorService, + private readonly gameModesService: GameModesService, ) { this.appConfig = this.configService.get("app"); } @@ -201,6 +203,7 @@ export class MatchesController { round_restart_delay: true, halftime_pausematch: true, camera_required: true, + game_mode_id: true, }, match_maps: { id: true, @@ -314,6 +317,7 @@ export class MatchesController { use_playcast: boolean; show_elo_ranks: boolean; cfg_overrides: Record; + game_mode: { slug: string; name: string } | null; }; lineup_1: typeof matches_by_pk.lineup_1 & { tag: string; @@ -393,6 +397,24 @@ export class MatchesController { } } + // The mode's cvars ride the same channel as the type cfgs: the plugin + // writes each override to 5stack..cfg and execs it after the type cfg, + // so a mode's settings land last and win. + const gameMode = match.options.game_mode_id + ? await this.gameModesService.resolve( + match.options.game_mode_id as string, + ) + : null; + + if (gameMode?.cfg) { + match.options.cfg_overrides = match.options.cfg_overrides ?? {}; + match.options.cfg_overrides.Mode = gameMode.cfg; + } + + match.options.game_mode = gameMode + ? { slug: gameMode.slug, name: gameMode.name } + : null; + const tournamentBracket = match.tournament_brackets?.at(0); const lineup1TournamentTag: string | undefined = tournamentBracket?.team_1?.team?.short_name || diff --git a/src/matches/matches.module.ts b/src/matches/matches.module.ts index 47f8f9813..e44688472 100644 --- a/src/matches/matches.module.ts +++ b/src/matches/matches.module.ts @@ -11,6 +11,7 @@ import { MatchAssistantService } from "./match-assistant/match-assistant.service import { HasuraModule } from "../hasura/hasura.module"; import { RconModule } from "../rcon/rcon.module"; import { PluginRuntimeModule } from "../plugin-runtime/plugin-runtime.module"; +import { GamePluginsModule } from "../game-plugins/game-plugins.module"; import { CacheModule } from "../cache/cache.module"; import { RedisModule } from "../redis/redis.module"; import { S3Module } from "../s3/s3.module"; @@ -99,6 +100,7 @@ import { CameraMonitorService } from "./camera/camera-monitor.service"; ChatModule, LeaguesModule, PluginRuntimeModule, + GamePluginsModule, BullModule.registerQueue( { name: MatchQueues.MatchServers, diff --git a/src/notifications/push/push-notifications.service.spec.ts b/src/notifications/push/push-notifications.service.spec.ts index 91275d5fb..390bdcd93 100644 --- a/src/notifications/push/push-notifications.service.spec.ts +++ b/src/notifications/push/push-notifications.service.spec.ts @@ -516,7 +516,8 @@ describe("PushNotificationsService", () => { SendPushDelivery.name, { steamId: "76561100000000001", thread: "chat:match:m-1" }, expect.objectContaining({ - jobId: "push-trail.76561100000000001.chat:match:m-1.token-1", + // Colons encoded: BullMQ rejects a custom job id containing one. + jobId: "push-trail.76561100000000001.chat%3Amatch%3Am-1.token-1", delay: 12000, // A completed job holding a static id would stop the next window // with the same token from ever being scheduled. diff --git a/src/notifications/push/push-notifications.service.ts b/src/notifications/push/push-notifications.service.ts index 128660559..57692124b 100644 --- a/src/notifications/push/push-notifications.service.ts +++ b/src/notifications/push/push-notifications.service.ts @@ -966,7 +966,11 @@ export class PushNotificationsService { "SendPushDelivery", { steamId, thread }, { - jobId: `push-trail.${steamId}.${thread}.${token}`, + // Encoded, not interpolated raw: BullMQ rejects a custom id + // containing ":", and every thread key is colon-joined + // (`chat:match:m-1`). Encoding keeps threads that differ only in a + // colon on separate jobs, which stripping would not. + jobId: `push-trail.${steamId}.${encodeURIComponent(thread)}.${token}`, delay: Math.max(ttl, 1) * 1000, // Not `{ age }`: a completed job holding its id would stop the next // window with the same token from ever being scheduled. diff --git a/src/system/enums/SystemSettingName.ts b/src/system/enums/SystemSettingName.ts index 4c32d5567..709a7df52 100644 --- a/src/system/enums/SystemSettingName.ts +++ b/src/system/enums/SystemSettingName.ts @@ -37,6 +37,7 @@ export enum SystemSettingName { LeaguesEnabled = "public.leagues_enabled", GameServerPluginRuntime = "public.game_server_plugin_runtime", GameServerPluginRuntimeLocked = "game_server_plugin_runtime_locked", + GamePluginRegistryUrl = "game_plugin_registry_url", // VAPID identifies this panel to the browser push services. The keypair is // self-generated -- there is no vendor to register with -- so it is stored // here rather than demanding an env var of every operator. The private half diff --git a/src/telemetry/telemetry.service.ts b/src/telemetry/telemetry.service.ts index adb20c054..6f1c1f9d0 100644 --- a/src/telemetry/telemetry.service.ts +++ b/src/telemetry/telemetry.service.ts @@ -8,6 +8,7 @@ import { SystemService } from "src/system/system.service"; import { CacheService } from "src/cache/cache.service"; import { TelemetryCompetition, + TelemetryPlugins, TelemetryFeature, TelemetryPayload, TELEMETRY_SCHEMA_VERSION, @@ -254,10 +255,40 @@ export class TelemetryService { events: counts.events, event_teams: counts.event_teams, }, + plugins: { + requested: counts.plugins_requested, + by_slug: await this.pluginInstallsBySlug(), + manual: counts.plugins_manual, + modes: counts.game_modes, + modes_enabled: counts.game_modes_enabled, + modes_unranked: counts.game_modes_unranked, + }, features: this.buildFeatures(settings, counts), }; } + // Named counts, unlike everything else in the payload. Ranking the catalog by + // what operators actually run is the only reason this section exists, and a + // total without slugs cannot do it. Only catalog plugins appear: a hand-placed + // folder is counted under `manual` instead, since its name means nothing to + // anyone else. + private async pluginInstallsBySlug(): Promise> { + const rows = await this.postgres.query< + Array<{ plugin_slug: string; nodes: number }> + >( + `SELECT n.plugin_slug, count(DISTINCT n.game_server_node_id)::int AS nodes + FROM public.game_server_node_plugins n + WHERE n.source = 'managed' + AND n.detected = true + AND EXISTS ( + SELECT 1 FROM public.game_plugins p WHERE p.slug = n.plugin_slug + ) + GROUP BY n.plugin_slug`, + ); + + return Object.fromEntries(rows.map((row) => [row.plugin_slug, row.nodes])); + } + async record(ip: string, country: string, data: unknown) { const payload = TelemetryService.sanitize(data); @@ -433,13 +464,41 @@ export class TelemetryService { coalesce(sum((payload->'competition'->>'league_teams')::numeric), 0) AS "leagueTeams", coalesce(sum((payload->'competition'->>'scrim_requests')::numeric), 0) AS "scrimRequests", coalesce(sum((payload->'competition'->>'events')::numeric), 0) AS events, - coalesce(sum((payload->'competition'->>'event_teams')::numeric), 0) AS "eventTeams" + coalesce(sum((payload->'competition'->>'event_teams')::numeric), 0) AS "eventTeams", + + -- Same "reported vs zero" split the match outcomes use: a panel too old + -- to send this section is not a panel running no plugins. + count(*) FILTER (WHERE jsonb_typeof(payload->'plugins') = 'object') AS "pluginsReported", + coalesce(sum((payload->'plugins'->>'requested')::numeric), 0) AS "pluginsRequested", + coalesce(sum((payload->'plugins'->>'manual')::numeric), 0) AS "pluginsManual", + coalesce(sum((payload->'plugins'->>'modes')::numeric), 0) AS "gameModes", + coalesce(sum((payload->'plugins'->>'modes_enabled')::numeric), 0) AS "gameModesEnabled", + coalesce(sum((payload->'plugins'->>'modes_unranked')::numeric), 0) AS "gameModesUnranked", + -- Installs per plugin across the fleet, and how many separate panels + -- run each. The panel count is the honest popularity signal: one + -- operator with forty nodes is not forty operators. + ( + SELECT coalesce(jsonb_object_agg(slug, counts), '{}'::jsonb) + FROM ( + SELECT entry.key AS slug, + jsonb_build_object( + 'nodes', sum((entry.value)::numeric), + 'panels', count(*) + ) AS counts + FROM public.telemetry_installs i + CROSS JOIN LATERAL jsonb_each_text( + coalesce(i.payload->'plugins'->'by_slug', '{}'::jsonb) + ) AS entry + WHERE i.last_seen_at >= now() - interval '30 days' + GROUP BY entry.key + ) ranked + ) AS "pluginsBySlug" FROM public.telemetry_installs WHERE last_seen_at >= now() - interval '30 days' AND payload ? 'matches'`, ); - return TelemetryService.toIntegers(row, [ + const totals = TelemetryService.toIntegers(row, [ "panels", "gameServerNodes", "gameServerNodesEnabled", @@ -485,7 +544,20 @@ export class TelemetryService { "scrimRequests", "events", "eventTeams", + "pluginsReported", + "pluginsRequested", + "pluginsManual", + "gameModes", + "gameModesEnabled", + "gameModesUnranked", ]); + + return { + ...totals, + // jsonb rather than a count, so it is not one of the coerced keys above + // and toIntegers would otherwise drop it. + pluginsBySlug: (row?.pluginsBySlug ?? {}) as Record, + }; } // Both breakdowns live in the payload already; nothing read them before, so @@ -869,6 +941,7 @@ export class TelemetryService { teams: int(players.teams), }, competition: TelemetryService.sanitizeCompetition(body.competition, int), + plugins: TelemetryService.sanitizePlugins(body.plugins, int), features: TelemetryService.sanitizeFeatures(body.features, int), }; } @@ -899,6 +972,41 @@ export class TelemetryService { }; } + // Same null-in-null-out rule as competition. by_slug is capped and its keys + // are shape-checked: this is the one section where a panel sends free-form + // strings, and they end up rendered on the fleet page. + private static sanitizePlugins( + value: unknown, + int: (value: unknown) => number, + ): TelemetryPlugins | null { + if (!value || typeof value !== "object" || Array.isArray(value)) { + return null; + } + + const plugins = value as Record; + const bySlug: Record = {}; + const source = plugins.by_slug; + + if (source && typeof source === "object" && !Array.isArray(source)) { + for (const [slug, count] of Object.entries(source).slice(0, 200)) { + if (!/^[a-z0-9]+(?:-[a-z0-9]+)*$/.test(slug)) { + continue; + } + + bySlug[slug] = int(count); + } + } + + return { + requested: int(plugins.requested), + by_slug: bySlug, + manual: int(plugins.manual), + modes: int(plugins.modes), + modes_enabled: int(plugins.modes_enabled), + modes_unranked: int(plugins.modes_unranked), + }; + } + private static isUuid(value: unknown) { return ( typeof value === "string" && @@ -1334,7 +1442,17 @@ export class TelemetryService { (SELECT count(*) FROM public.api_keys) AS api_keys, (SELECT count(*) FROM public.gamedata_signature_validations) AS gamedata_validations, (SELECT count(*) FROM public.push_subscriptions) AS push_subscriptions, - (SELECT count(*) FROM public.player_steam_bot_friend) AS steam_presence_friends + (SELECT count(*) FROM public.player_steam_bot_friend) AS steam_presence_friends, + + (SELECT count(*) FROM public.game_plugin_installs WHERE enabled) AS plugins_requested, + -- source = 'manual' is a folder somebody dropped on a node by hand. It + -- has no catalog slug, so it can only ever be a count. + (SELECT count(*) FROM public.game_server_node_plugins WHERE source = 'manual') AS plugins_manual, + (SELECT count(*) FROM public.game_modes WHERE archived_at IS NULL) AS game_modes, + (SELECT count(*) FROM public.game_modes + WHERE archived_at IS NULL AND enabled) AS game_modes_enabled, + (SELECT count(*) FROM public.game_modes + WHERE archived_at IS NULL AND competitive_safe = false) AS game_modes_unranked `, ); diff --git a/src/telemetry/types/TelemetryPayload.ts b/src/telemetry/types/TelemetryPayload.ts index 5b367bfee..cf2baaf62 100644 --- a/src/telemetry/types/TelemetryPayload.ts +++ b/src/telemetry/types/TelemetryPayload.ts @@ -1,4 +1,4 @@ -export const TELEMETRY_SCHEMA_VERSION = 3; +export const TELEMETRY_SCHEMA_VERSION = 4; export type TelemetryFeature = { enabled: boolean | null; @@ -80,9 +80,35 @@ export type TelemetryPayload = { // rather than zero-filled -- a fleet total that quietly counts non-reporters // as zeroes is the same lie as reporting a feature nobody measures as unused. competition: TelemetryCompetition | null; + // Which catalog plugins operators actually run. The registry says what + // exists; only this says what anybody chose, which is the one trust signal a + // directory can offer beyond a single maintainer's `verified` flag. + // + // Absent from a panel built before this section existed, rather than + // zero-filled: a panel running no plugins and a panel that cannot report them + // are different facts, and averaging the second in as zero understates every + // plugin in the catalog. + plugins: TelemetryPlugins | null; features: Record; }; +export type TelemetryPlugins = { + // Catalog plugins this panel has asked to be installed. + requested: number; + // slug -> how many of this panel's nodes actually have it on disk. Named + // rather than counted, because ranking the catalog is the whole point. + by_slug: Record; + // Plugin folders found on nodes that the catalog does not know about -- + // hand-placed, so unnameable. Counted only so the fleet view does not read + // as if managed installs were the whole story. + manual: number; + modes: number; + modes_enabled: number; + // Modes that are not competitive_safe, i.e. matches that deliberately do not + // count toward ranking. + modes_unranked: number; +}; + // Match counts for each of these live under `matches`; this is the shape of the // competition itself -- how many were run, how many finished, who entered. export type TelemetryCompetition = { diff --git a/src/utilities/QueueProcessors.ts b/src/utilities/QueueProcessors.ts index b40a9b2e8..f3807bfe1 100644 --- a/src/utilities/QueueProcessors.ts +++ b/src/utilities/QueueProcessors.ts @@ -18,6 +18,7 @@ type Modules = | "Clips" | "Hasura" | "GameServerNode" + | "GamePlugins" | "DiscordBot" | "Postgres" | "System" diff --git a/test/app.e2e-spec.ts b/test/app.e2e-spec.ts deleted file mode 100644 index 72d7359a9..000000000 --- a/test/app.e2e-spec.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Test, TestingModule } from "@nestjs/testing"; -import { INestApplication } from "@nestjs/common"; -import { AppModule } from "./../src/app.module"; - -describe("AppController (e2e)", () => { - let app: INestApplication; - - beforeEach(async () => { - const moduleFixture: TestingModule = await Test.createTestingModule({ - imports: [AppModule], - }).compile(); - - app = moduleFixture.createNestApplication(); - await app.init(); - }); -}); diff --git a/test/game-mode-resolution.spec.ts b/test/game-mode-resolution.spec.ts new file mode 100644 index 000000000..377807b63 --- /dev/null +++ b/test/game-mode-resolution.spec.ts @@ -0,0 +1,233 @@ +import { PostgresService } from "./../src/postgres/postgres.service"; +import { + GameModesService, + RequiredPluginMissing, +} from "./../src/game-plugins/game-modes.service"; +import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; + +// What a server is actually told to load, resolved against a real schema. The +// unit specs stub postgres, so the queries themselves -- node scoping, the +// guidelines opt-in -- are only ever checked here. +describe("game mode resolution (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + let service: GameModesService; + + beforeAll(async () => { + db = await bootMigratedDb("GameModeResolution"); + postgres = db.postgres; + + service = new GameModesService( + { warn: jest.fn(), log: jest.fn() } as never, + postgres, + { + getPluginRuntime: async () => "swiftlys2", + resolvePluginRuntime: async (pin?: { + pin_plugin_runtime?: string | null; + }) => pin?.pin_plugin_runtime ?? "swiftlys2", + } as never, + ); + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + let serverId: string; + + beforeEach(async () => { + await postgres.query("DELETE FROM servers"); + await postgres.query("DELETE FROM game_server_node_plugins"); + await postgres.query("DELETE FROM game_plugin_installs"); + await postgres.query("DELETE FROM game_mode_plugins"); + await postgres.query("DELETE FROM game_modes"); + await postgres.query("DELETE FROM game_plugins"); + await postgres.query("DELETE FROM game_server_nodes"); + + await postgres.query( + `INSERT INTO server_regions (value, description) + VALUES ('TestRegion', 'TestRegion') ON CONFLICT (value) DO NOTHING`, + ); + + for (const node of ["node-a", "node-b"]) { + await postgres.query( + `INSERT INTO game_server_nodes (id, status, enabled, region) + VALUES ($1, 'Online', true, 'TestRegion')`, + [node], + ); + } + + const [server] = await postgres.query>( + `INSERT INTO servers + (host, label, rcon_password, port, region, type, is_dedicated, enabled, + game_server_node_id) + VALUES ('127.0.0.1', 'fun', $1, 27015, 'TestRegion', 'Casual', false, true, + 'node-a') + RETURNING id`, + [Buffer.from("password")], + ); + + serverId = server.id; + }); + + const catalog = async ( + slug: string, + { requiresGuidelinesDisabled = false } = {}, + ): Promise => { + await postgres.query( + `INSERT INTO game_plugins + (slug, kind, name, author, description, requires_server_guidelines_disabled) + VALUES ($1, 'game', $1, 'tester', 'a test plugin', $2)`, + [slug, requiresGuidelinesDisabled], + ); + }; + + const installed = async ( + slug: string, + { disableServerGuidelines = false } = {}, + ): Promise => { + await postgres.query( + `INSERT INTO game_plugin_installs + (plugin_slug, version, channel, disable_server_guidelines) + VALUES ($1, NULL, 'Auto', $2)`, + [slug, disableServerGuidelines], + ); + }; + + const onNode = async ( + nodeId: string, + slug: string, + version: string, + ): Promise => { + await postgres.query( + `INSERT INTO game_server_node_plugins + (game_server_node_id, plugin_slug, runtime, version, detected, status) + VALUES ($1, $2, 'swiftlys2', $3, true, 'Installed')`, + [nodeId, slug, version], + ); + }; + + const modeWith = async ( + slug: string, + { required = true } = {}, + ): Promise => { + const [mode] = await postgres.query>( + `INSERT INTO game_modes (slug, name) VALUES ('skins', 'Skins') RETURNING id`, + ); + + await postgres.query( + `INSERT INTO game_mode_plugins (game_mode_id, plugin_slug, required) + VALUES ($1, $2, $3)`, + [mode.id, slug, required], + ); + + await postgres.query(`UPDATE servers SET game_mode_id = $1 WHERE id = $2`, [ + mode.id, + serverId, + ]); + + return mode.id; + }; + + describe("version scoping", () => { + it("names the version the server's own node has, not another node's", async () => { + await catalog("retakes"); + await installed("retakes"); + await onNode("node-a", "retakes", "1.0.0"); + await onNode("node-b", "retakes", "1.1.0"); + await modeWith("retakes"); + + const resolved = await service.resolveForServer(serverId); + + expect(resolved?.enabledPlugins).toEqual("retakes@1.0.0"); + }); + + it("refuses to boot a mode whose required plugin never reached that node", async () => { + await catalog("retakes"); + await installed("retakes"); + await onNode("node-b", "retakes", "1.1.0"); + await modeWith("retakes"); + + await expect(service.resolveForServer(serverId)).rejects.toBeInstanceOf( + RequiredPluginMissing, + ); + }); + + // The mode's cvars and launch params are still its own; only the plugin + // that never arrived is missing. + it("boots without a plugin the mode marks optional", async () => { + await catalog("retakes"); + await installed("retakes"); + await modeWith("retakes", { required: false }); + + const resolved = await service.resolveForServer(serverId); + + expect(resolved?.slug).toEqual("skins"); + expect(resolved?.enabledPlugins).toEqual(""); + }); + }); + + describe("Valve's server guidelines", () => { + beforeEach(async () => { + await catalog("inventory-simulator", { + requiresGuidelinesDisabled: true, + }); + await onNode("node-a", "inventory-simulator", "1.0.0"); + }); + + it("stays on when the operator has not opted in", async () => { + await installed("inventory-simulator"); + await modeWith("inventory-simulator"); + + const resolved = await service.resolveForServer(serverId); + + expect(resolved?.disableServerGuidelines).toBe(false); + expect(service.environmentFor(resolved).map((env) => env.name)).toEqual([ + "ENABLED_PLUGINS", + ]); + }); + + it("comes off once the operator opts in for that plugin", async () => { + await installed("inventory-simulator", { disableServerGuidelines: true }); + await modeWith("inventory-simulator"); + + const resolved = await service.resolveForServer(serverId); + + expect(resolved?.disableServerGuidelines).toBe(true); + expect(service.environmentFor(resolved)).toContainEqual({ + name: "DISABLE_SERVER_GUIDELINES", + value: "true", + }); + }); + + // Opting in is per plugin, not per deployment: a server whose mode does not + // load it has no reason to boot non-compliant. + it("stays on for a server not loading the plugin", async () => { + await installed("inventory-simulator", { disableServerGuidelines: true }); + await catalog("retakes"); + await installed("retakes"); + await onNode("node-a", "retakes", "1.0.0"); + await modeWith("retakes"); + + const resolved = await service.resolveForServer(serverId); + + expect(resolved?.enabledPlugins).toEqual("retakes@1.0.0"); + expect(resolved?.disableServerGuidelines).toBe(false); + }); + + // always_load reaches every server including ranked, so the opt-in has to + // follow it there rather than only applying to modes. + it("follows an always-load plugin onto a server with no mode", async () => { + await installed("inventory-simulator", { disableServerGuidelines: true }); + await postgres.query( + `UPDATE game_plugin_installs SET always_load = true + WHERE plugin_slug = 'inventory-simulator'`, + ); + + const resolved = await service.resolveForServer(serverId); + + expect(resolved?.enabledPlugins).toEqual("inventory-simulator@1.0.0"); + expect(resolved?.disableServerGuidelines).toBe(true); + }); + }); +}); diff --git a/test/game-modes.spec.ts b/test/game-modes.spec.ts new file mode 100644 index 000000000..625ab5ac4 --- /dev/null +++ b/test/game-modes.spec.ts @@ -0,0 +1,714 @@ +import { readFileSync } from "fs"; +import { join } from "path"; +import { PostgresService } from "./../src/postgres/postgres.service"; +import { Fixtures } from "./utils/fixtures"; +import { bootMigratedDb, seedRegionWithServer, SqlTestDb } from "./utils/sql-test-db"; + +// The rules that decide whether a fun mode can reach ranked play, run as real +// SQL against a migrated database. Every guard here is the last line of defence +// behind a UI filter, so it is asserted at the constraint/trigger level rather +// than through a service. +describe("game modes (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + let fx: Fixtures; + + beforeAll(async () => { + db = await bootMigratedDb("GameModesTest"); + postgres = db.postgres; + fx = new Fixtures(postgres); + await seedRegionWithServer(postgres, "TestA", 27015); + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + beforeEach(async () => { + await postgres.query("DELETE FROM matches"); + await postgres.query("DELETE FROM match_options"); + await postgres.query("DELETE FROM game_mode_plugins"); + await postgres.query("DELETE FROM game_modes"); + await postgres.query("DELETE FROM game_plugin_versions"); + await postgres.query("DELETE FROM game_plugins"); + }); + + const createMode = async ( + over: { + slug?: string; + name?: string; + enabled?: boolean; + competitiveSafe?: boolean; + } = {}, + ): Promise => { + const [row] = await postgres.query>( + `INSERT INTO game_modes (slug, name, enabled, competitive_safe) + VALUES ($1, $2, $3, $4) RETURNING id`, + [ + over.slug ?? "retakes", + over.name ?? "Retakes", + over.enabled ?? true, + over.competitiveSafe ?? false, + ], + ); + return row.id; + }; + + const createPlugin = async (slug = "inventory-simulator"): Promise => { + await postgres.query( + `INSERT INTO game_plugins (slug, kind, name, author, description) + VALUES ($1, 'game', 'Test Plugin', 'tester', 'a test plugin')`, + [slug], + ); + return slug; + }; + + describe("registry", () => { + it("rejects a slug that is not path-safe, since it names a directory in the plugin store", async () => { + await expect( + postgres.query( + `INSERT INTO game_plugins (slug, kind, name, author, description) + VALUES ('../escape', 'game', 'Evil', 'x', 'y')`, + ), + ).rejects.toThrow(/game_plugins_slug_check/); + }); + + it("rejects a version whose sha256 is not a digest", async () => { + await createPlugin(); + await expect( + postgres.query( + `INSERT INTO game_plugin_versions (plugin_slug, runtime, version, url, sha256, published_at) + VALUES ('inventory-simulator', 'swiftlys2', '1.0.0', 'https://x/y.zip', 'not-a-digest', now())`, + ), + ).rejects.toThrow(/game_plugin_versions_sha256_check/); + }); + + it("keeps a version pinned to a real runtime", async () => { + await createPlugin(); + await expect( + postgres.query( + `INSERT INTO game_plugin_versions (plugin_slug, runtime, version, url, sha256, published_at) + VALUES ('inventory-simulator', 'sourcemod', '1.0.0', 'https://x/y.zip', $1, now())`, + ["a".repeat(64)], + ), + ).rejects.toThrow(/game_plugin_versions_runtime_fkey/); + }); + + it("drops a plugin's versions with the plugin", async () => { + await createPlugin(); + await postgres.query( + `INSERT INTO game_plugin_versions (plugin_slug, runtime, version, url, sha256, published_at) + VALUES ('inventory-simulator', 'swiftlys2', '3.1.0', 'https://x/y.zip', $1, now())`, + ["b".repeat(64)], + ); + await postgres.query("DELETE FROM game_plugins WHERE slug = 'inventory-simulator'"); + const remaining = await postgres.query>( + "SELECT 1 FROM game_plugin_versions", + ); + expect(remaining).toHaveLength(0); + }); + }); + + describe("a Ranked server never carries a persistent mode", () => { + it("refuses to attach one", async () => { + const modeId = await createMode(); + await expect( + postgres.query("UPDATE servers SET game_mode_id = $1 WHERE type = 'Ranked'", [ + modeId, + ]), + ).rejects.toThrow(/servers_ranked_has_no_game_mode_check/); + }); + + it("refuses to promote a moded server into the Ranked pool", async () => { + const modeId = await createMode(); + await postgres.query( + `INSERT INTO servers (host, label, rcon_password, port, region, type, is_dedicated, enabled, game_mode_id) + VALUES ('127.0.0.1', 'fun', $1, 27030, 'TestA', 'Casual', true, true, $2)`, + [Buffer.from("password"), modeId], + ); + await expect( + postgres.query("UPDATE servers SET type = 'Ranked' WHERE label = 'fun'"), + ).rejects.toThrow(/servers_ranked_has_no_game_mode_check/); + }); + + it("allows a non-Ranked server to carry one", async () => { + const modeId = await createMode(); + await postgres.query( + `INSERT INTO servers (host, label, rcon_password, port, region, type, is_dedicated, enabled, game_mode_id) + VALUES ('127.0.0.1', 'community', $1, 27040, 'TestA', 'Casual', true, true, $2)`, + [Buffer.from("password"), modeId], + ); + const [server] = await postgres.query>( + "SELECT game_mode_id FROM servers WHERE label = 'community'", + ); + expect(server.game_mode_id).toEqual(modeId); + }); + }); + + describe("selecting a mode on a match", () => { + it("refuses a disabled mode", async () => { + const modeId = await createMode({ enabled: false }); + await expect(fx.matchOptions({ gameModeId: modeId })).rejects.toThrow( + /is disabled/, + ); + }); + + // Runtime compatibility is derived from the plugins, so a mode holding a + // plugin with no build for this deployment is refused by name. + it("refuses a mode whose plugin has no build for this runtime", async () => { + const modeId = await createMode(); + await createPlugin("css-only"); + await postgres.query( + `INSERT INTO game_plugin_versions (plugin_slug, runtime, version, url, sha256, published_at) + VALUES ('css-only', 'counterstrikesharp', '1.0.0', 'https://x/y.zip', $1, now())`, + ["c".repeat(64)], + ); + await postgres.query( + "INSERT INTO game_mode_plugins (game_mode_id, plugin_slug) VALUES ($1, 'css-only')", + [modeId], + ); + + const optionsId = await fx.matchOptions(); + await expect( + postgres.query("UPDATE match_options SET game_mode_id = $1 WHERE id = $2", [ + modeId, + optionsId, + ]), + ).rejects.toThrow(/css-only which has no swiftlys2 build/); + }); + + it("accepts a mode whose plugin ships for this runtime", async () => { + const modeId = await createMode(); + await createPlugin("both-runtimes"); + for (const runtime of ["swiftlys2", "counterstrikesharp"]) { + await postgres.query( + `INSERT INTO game_plugin_versions (plugin_slug, runtime, version, url, sha256, published_at) + VALUES ('both-runtimes', $1, '1.0.0', 'https://x/y.zip', $2, now())`, + [runtime, "d".repeat(64)], + ); + } + await postgres.query( + "INSERT INTO game_mode_plugins (game_mode_id, plugin_slug) VALUES ($1, 'both-runtimes')", + [modeId], + ); + + const optionsId = await fx.matchOptions(); + await postgres.query( + "UPDATE match_options SET game_mode_id = $1 WHERE id = $2", + [modeId, optionsId], + ); + + const [options] = await postgres.query>( + "SELECT game_mode_id FROM match_options WHERE id = $1", + [optionsId], + ); + expect(options.game_mode_id).toEqual(modeId); + }); + + it("reports a mode with no plugins as runnable on every runtime", async () => { + const modeId = await createMode(); + + const [row] = await postgres.query }>>( + `SELECT game_mode_supported_runtimes(m.*) AS runtimes FROM game_modes m WHERE id = $1`, + [modeId], + ); + + expect(row.runtimes.sort()).toEqual([ + "counterstrikesharp", + "swiftlys2", + ]); + }); + + // The case a hand-picked runtime could never catch. + it("reports an impossible selection as running nowhere", async () => { + const modeId = await createMode(); + + for (const [slug, runtime] of [ + ["sw-only", "swiftlys2"], + ["css-only", "counterstrikesharp"], + ]) { + await createPlugin(slug); + await postgres.query( + `INSERT INTO game_plugin_versions (plugin_slug, runtime, version, url, sha256, published_at) + VALUES ($1, $2, '1.0.0', 'https://x/y.zip', $3, now())`, + [slug, runtime, "e".repeat(64)], + ); + await postgres.query( + "INSERT INTO game_mode_plugins (game_mode_id, plugin_slug) VALUES ($1, $2)", + [modeId, slug], + ); + } + + const [row] = await postgres.query }>>( + `SELECT game_mode_supported_runtimes(m.*) AS runtimes FROM game_modes m WHERE id = $1`, + [modeId], + ); + + expect(row.runtimes).toEqual([]); + }); + + it("accepts a mode with no plugins at all", async () => { + const modeId = await createMode(); + const optionsId = await fx.matchOptions(); + await postgres.query("UPDATE match_options SET game_mode_id = $1 WHERE id = $2", [ + modeId, + optionsId, + ]); + const [options] = await postgres.query>( + "SELECT game_mode_id FROM match_options WHERE id = $1", + [optionsId], + ); + expect(options.game_mode_id).toEqual(modeId); + }); + + it("refuses to change the mode once the match is Live", async () => { + const modeId = await createMode(); + const { poolId } = await fx.mapPool(1); + const match = await fx.match({ mapPoolId: poolId, bestOf: 1 }); + await postgres.query("UPDATE matches SET status = 'Live' WHERE id = $1", [match.id]); + await expect( + postgres.query("UPDATE match_options SET game_mode_id = $1 WHERE id = $2", [ + modeId, + match.options_id, + ]), + ).rejects.toThrow(/Cannot modify game mode during Live\/Veto/); + }); + }); + + describe("retiring a mode", () => { + it("refuses to delete one any match has used, and says to archive it", async () => { + const modeId = await createMode(); + const match = await fx.match(); + await postgres.query("UPDATE match_options SET game_mode_id = $1 WHERE id = $2", [ + modeId, + match.options_id, + ]); + await expect( + postgres.query("DELETE FROM game_modes WHERE id = $1", [modeId]), + ).rejects.toThrow(/archive it instead of deleting it/); + }); + + it("still refuses after that match is finished, so history is not rewritten", async () => { + const modeId = await createMode(); + const match = await fx.match(); + await postgres.query("UPDATE match_options SET game_mode_id = $1 WHERE id = $2", [ + modeId, + match.options_id, + ]); + await postgres.query("UPDATE matches SET status = 'Finished' WHERE id = $1", [ + match.id, + ]); + await expect( + postgres.query("DELETE FROM game_modes WHERE id = $1", [modeId]), + ).rejects.toThrow(/archive it instead of deleting it/); + }); + + it("archives instead, keeping the finished match pointed at it", async () => { + const modeId = await createMode(); + const match = await fx.match(); + await postgres.query("UPDATE match_options SET game_mode_id = $1 WHERE id = $2", [ + modeId, + match.options_id, + ]); + await postgres.query("UPDATE matches SET status = 'Finished' WHERE id = $1", [ + match.id, + ]); + await postgres.query("UPDATE game_modes SET archived_at = now() WHERE id = $1", [ + modeId, + ]); + const [options] = await postgres.query>( + "SELECT game_mode_id FROM match_options WHERE id = $1", + [match.options_id], + ); + expect(options.game_mode_id).toEqual(modeId); + }); + + it("refuses to select an archived mode for a new match", async () => { + const modeId = await createMode(); + await postgres.query("UPDATE game_modes SET archived_at = now() WHERE id = $1", [ + modeId, + ]); + await expect(fx.matchOptions({ gameModeId: modeId })).rejects.toThrow( + /is archived/, + ); + }); + + it("deletes cleanly when nothing has ever used it", async () => { + const modeId = await createMode(); + await postgres.query("DELETE FROM game_modes WHERE id = $1", [modeId]); + const remaining = await postgres.query>("SELECT 1 FROM game_modes"); + expect(remaining).toHaveLength(0); + }); + + it("takes its plugin selections with it", async () => { + const modeId = await createMode(); + const slug = await createPlugin(); + await postgres.query( + "INSERT INTO game_mode_plugins (game_mode_id, plugin_slug) VALUES ($1, $2)", + [modeId, slug], + ); + await postgres.query("DELETE FROM game_modes WHERE id = $1", [modeId]); + const remaining = await postgres.query>( + "SELECT 1 FROM game_mode_plugins", + ); + expect(remaining).toHaveLength(0); + }); + + it("refuses to drop a plugin a mode still selects", async () => { + const modeId = await createMode(); + const slug = await createPlugin(); + await postgres.query( + "INSERT INTO game_mode_plugins (game_mode_id, plugin_slug) VALUES ($1, $2)", + [modeId, slug], + ); + await expect( + postgres.query("DELETE FROM game_plugins WHERE slug = $1", [slug]), + ).rejects.toThrow(/game_mode_plugins_plugin_fkey/); + }); + }); +}); + +// A mode that is not competitive_safe still plays a real match on a real +// server: stats, demos and rounds are all recorded. It simply does not move +// anybody's rating, and it is kept off the stats leaderboards. +describe("unranked game modes (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + let fx: Fixtures; + + beforeAll(async () => { + db = await bootMigratedDb("UnrankedModesTest"); + postgres = db.postgres; + fx = new Fixtures(postgres); + await seedRegionWithServer(postgres, "TestA", 27015); + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + beforeEach(async () => { + await postgres.query("DELETE FROM player_elo"); + await postgres.query("DELETE FROM matches"); + await postgres.query("DELETE FROM match_options"); + await postgres.query("DELETE FROM game_modes"); + await postgres.query("DELETE FROM players"); + }); + + const mode = async (competitiveSafe: boolean): Promise => { + const [row] = await postgres.query>( + `INSERT INTO game_modes (slug, name, competitive_safe) + VALUES ($1, $1, $2) RETURNING id`, + [competitiveSafe ? "ranked-mode" : "fun-mode", competitiveSafe], + ); + return row.id; + }; + + const playedMatch = async (gameModeId?: string) => { + const optionsId = await fx.matchOptions({ + type: "Duel", + gameModeId, + }); + const match = await fx.match(optionsId); + await fx.lineupPlayer(match.lineup_1_id); + await fx.lineupPlayer(match.lineup_2_id); + await postgres.query( + `UPDATE matches + SET winning_lineup_id = lineup_1_id, + ended_at = now() - interval '1 day', + status = 'Finished' + WHERE id = $1`, + [match.id], + ); + return match; + }; + + const generate = async (matchId: string): Promise => { + const [row] = await postgres.query< + Array<{ generate_player_elo_for_match: number }> + >("SELECT generate_player_elo_for_match($1)", [matchId]); + return Number(row.generate_player_elo_for_match); + }; + + const lineupSteamIds = async (match: { + lineup_1_id: string; + lineup_2_id: string; + }): Promise<[string, string]> => { + const pick = async (lineupId: string) => { + const [row] = await postgres.query>( + "SELECT steam_id FROM match_lineup_players WHERE match_lineup_id = $1 LIMIT 1", + [lineupId], + ); + return String(row.steam_id); + }; + + return [await pick(match.lineup_1_id), await pick(match.lineup_2_id)]; + }; + + const eloRowCount = async (matchId: string): Promise => { + const rows = await postgres.query>( + "SELECT 1 FROM player_elo WHERE match_id = $1", + [matchId], + ); + return rows.length; + }; + + it("marks a match under an unsafe mode as not counting, at creation", async () => { + const match = await playedMatch(await mode(false)); + + const [row] = await postgres.query< + Array<{ counts_toward_ranking: boolean }> + >("SELECT counts_toward_ranking FROM matches WHERE id = $1", [match.id]); + + expect(row.counts_toward_ranking).toBe(false); + }); + + it("still counts a match under a competitive-safe mode", async () => { + const match = await playedMatch(await mode(true)); + + const [row] = await postgres.query< + Array<{ counts_toward_ranking: boolean }> + >("SELECT counts_toward_ranking FROM matches WHERE id = $1", [match.id]); + + expect(row.counts_toward_ranking).toBe(true); + }); + + it("counts a match with no mode at all", async () => { + const match = await playedMatch(); + + const [row] = await postgres.query< + Array<{ counts_toward_ranking: boolean }> + >("SELECT counts_toward_ranking FROM matches WHERE id = $1", [match.id]); + + expect(row.counts_toward_ranking).toBe(true); + }); + + it("writes no ELO for an unranked match", async () => { + const match = await playedMatch(await mode(false)); + + expect(await generate(match.id)).toEqual(0); + expect(await eloRowCount(match.id)).toEqual(0); + }); + + it("writes ELO for the same match under a safe mode", async () => { + const match = await playedMatch(await mode(true)); + + expect(await generate(match.id)).toBeGreaterThan(0); + expect(await eloRowCount(match.id)).toBeGreaterThan(0); + }); + + it("follows the mode when it is swapped before the match is played", async () => { + const optionsId = await fx.matchOptions({ + type: "Duel", + gameModeId: await mode(true), + }); + const match = await fx.match(optionsId); + const funMode = await mode(false); + + await postgres.query( + "UPDATE match_options SET game_mode_id = $1 WHERE id = $2", + [funMode, optionsId], + ); + + const [row] = await postgres.query< + Array<{ counts_toward_ranking: boolean }> + >("SELECT counts_toward_ranking FROM matches WHERE id = $1", [match.id]); + + expect(row.counts_toward_ranking).toBe(false); + }); + + // The decision is stored, not derived, so history cannot be rewritten by + // editing a mode long after the matches were played. + // Not just "no rows written": the rating the player carries must be the same + // number afterwards, and the next ranked match has to pick up from there. An + // unranked match that left a trace in the chain would move ratings without + // ever appearing to. + it("leaves a rating untouched and does not poison the next ranked match", async () => { + const safe = await mode(true); + const unsafe = await mode(false); + const alice = await fx.player(); + const bob = await fx.player(); + + const play = async (gameModeId: string) => { + const optionsId = await fx.matchOptions({ type: "Duel", gameModeId }); + const match = await fx.match(optionsId); + await fx.lineupPlayer(match.lineup_1_id, alice); + await fx.lineupPlayer(match.lineup_2_id, bob); + await postgres.query( + `UPDATE matches + SET winning_lineup_id = lineup_1_id, + ended_at = now() - interval '1 day', + status = 'Finished' + WHERE id = $1`, + [match.id], + ); + await generate(match.id); + return match; + }; + + const ratingOf = async (steamId: string): Promise => { + const [row] = await postgres.query>( + `SELECT current FROM player_elo + WHERE steam_id = $1 + ORDER BY created_at DESC LIMIT 1`, + [steamId], + ); + return row ? Number(row.current) : null; + }; + + await play(safe); + const afterRanked = await ratingOf(alice); + expect(afterRanked).not.toBeNull(); + + await play(unsafe); + expect(await ratingOf(alice)).toEqual(afterRanked); + + // And the engine still works afterwards -- the unranked match in between + // did not leave the chain in a state the next one refuses to build on. + await play(safe); + expect(await ratingOf(alice)).not.toEqual(afterRanked); + }); + + // The point of an unranked mode is that everything else about the match is + // real. If this ever stops being true, fun modes stop being playable rather + // than just unranked. + it("still records kills for an unranked match", async () => { + const gameModeId = await mode(false); + const match = await playedMatch(gameModeId); + + const [map] = await postgres.query>( + `INSERT INTO match_maps (match_id, map_id, "order") + SELECT $1, id, 1 FROM maps ORDER BY name LIMIT 1 RETURNING id`, + [match.id], + ); + + const [attacker, victim] = await lineupSteamIds(match); + await fx.kill({ matchId: match.id, mapId: map.id }, attacker, victim); + + const kills = await postgres.query>( + "SELECT 1 FROM player_kills WHERE match_id = $1", + [match.id], + ); + + expect(kills).toHaveLength(1); + expect(await eloRowCount(match.id)).toBe(0); + }); + + it("keeps an unranked match off the leaderboard", async () => { + const build = async (competitiveSafe: boolean) => { + const match = await playedMatch(await mode(competitiveSafe)); + const [map] = await postgres.query>( + `INSERT INTO match_maps (match_id, map_id, "order") + SELECT $1, id, 1 FROM maps ORDER BY name LIMIT 1 RETURNING id`, + [match.id], + ); + const [attacker, victim] = await lineupSteamIds(match); + await fx.kill({ matchId: match.id, mapId: map.id }, attacker, victim); + return attacker; + }; + + const unrankedPlayer = await build(false); + + const onBoard = async () => { + const rows = await postgres.query>( + "SELECT player_steam_id FROM get_leaderboard('best_kdr', 0)", + ); + return rows.map((row) => String(row.player_steam_id)); + }; + + expect(await onBoard()).not.toContain(String(unrankedPlayer)); + + // The same shape under a safe mode does appear, so the assertion above is + // about the ranking flag and not about the fixture being incomplete. + const rankedPlayer = await build(true); + expect(await onBoard()).toContain(String(rankedPlayer)); + }); + + it("does not change a played match when the mode's flag is flipped later", async () => { + const funMode = await mode(false); + const match = await playedMatch(funMode); + + await postgres.query( + "UPDATE game_modes SET competitive_safe = true WHERE id = $1", + [funMode], + ); + + const [row] = await postgres.query< + Array<{ counts_toward_ranking: boolean }> + >("SELECT counts_toward_ranking FROM matches WHERE id = $1", [match.id]); + + expect(row.counts_toward_ranking).toBe(false); + }); +}); + +// The starter modes are seeded on every boot, so they have to survive an +// operator editing them and re-apply without duplicating anything. +describe("starter game modes (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + + beforeAll(async () => { + db = await bootMigratedDb("StarterModesTest"); + postgres = db.postgres; + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + // Exactly what HasuraService.setup() does on every boot for hasura/enums. + const reapply = async (): Promise => { + await postgres.query( + readFileSync(join(__dirname, "..", "hasura/enums/game-modes.sql"), "utf8"), + ); + }; + + const seeded = async (): Promise>> => + await postgres.query( + `SELECT slug, name, enabled, competitive_safe, cfg + FROM game_modes WHERE slug IN ('retakes','deathmatch') + ORDER BY slug`, + ); + + it("ships retakes and deathmatch out of the box", async () => { + const modes = await seeded(); + expect(modes.map((mode) => mode.slug)).toEqual(["deathmatch", "retakes"]); + }); + + it("marks them unranked, so they never quietly move ELO", async () => { + const modes = await seeded(); + expect(modes.every((mode) => mode.competitive_safe === false)).toBe(true); + }); + + it("gives each one a cvar block", async () => { + const modes = await seeded(); + expect(modes.every((mode) => (mode.cfg ?? "").includes("mp_"))).toBe(true); + }); + + // The file is re-applied on every boot; a second pass must not duplicate. + it("re-applies without duplicating", async () => { + const before = await seeded(); + await reapply(); + const after = await seeded(); + + expect(after.length).toEqual(before.length); + }); + + it("keeps an operator's edits when it re-applies", async () => { + await postgres.query( + `UPDATE game_modes + SET enabled = false, competitive_safe = true, cfg = 'mp_freezetime 99' + WHERE slug = 'retakes'`, + ); + + await reapply(); + + const [retakes] = await postgres.query>>( + `SELECT enabled, competitive_safe, cfg FROM game_modes WHERE slug = 'retakes'`, + ); + + expect(retakes.enabled).toBe(false); + expect(retakes.competitive_safe).toBe(true); + expect(retakes.cfg).toEqual("mp_freezetime 99"); + }); +}); diff --git a/test/game-plugin-install-state.spec.ts b/test/game-plugin-install-state.spec.ts new file mode 100644 index 000000000..bebe79904 --- /dev/null +++ b/test/game-plugin-install-state.spec.ts @@ -0,0 +1,183 @@ +import { PostgresService } from "./../src/postgres/postgres.service"; +import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; + +// Installing states intent and nodes converge to it, so "installed" is a count +// rather than a flag. These are the states the directory renders. +describe("game plugin install state (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + + beforeAll(async () => { + db = await bootMigratedDb("GamePluginInstallState"); + postgres = db.postgres; + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + beforeEach(async () => { + await postgres.query("DELETE FROM game_server_node_plugins"); + await postgres.query("DELETE FROM game_plugin_installs"); + await postgres.query("DELETE FROM game_plugins"); + await postgres.query("DELETE FROM game_server_nodes"); + + await postgres.query( + `INSERT INTO server_regions (value, description) + VALUES ('TestRegion', 'TestRegion') ON CONFLICT (value) DO NOTHING`, + ); + + await postgres.query( + `INSERT INTO game_plugins (slug, kind, name, author, description) + VALUES ('retakes', 'game', 'Retakes', 'someone', 'a plugin')`, + ); + }); + + const addNode = async (id: string, status = "Online", enabled = true) => { + await postgres.query( + `INSERT INTO game_server_nodes (id, status, enabled, region) + VALUES ($1, $2, $3, 'TestRegion')`, + [id, status, enabled], + ); + }; + + const request = async (version: string | null = null) => { + await postgres.query( + `INSERT INTO game_plugin_installs (plugin_slug, version, channel) + VALUES ('retakes', $1, $2)`, + [version, version ? "Pinned" : "Auto"], + ); + }; + + const observe = async ( + nodeId: string, + { source = "managed", detected = true, status = "Installed" } = {}, + ) => { + await postgres.query( + `INSERT INTO game_server_node_plugins + (game_server_node_id, plugin_slug, runtime, version, detected, source, status) + VALUES ($1, 'retakes', 'swiftlys2', '1.0.0', $2, $3, $4)`, + [nodeId, detected, source, status], + ); + }; + + const state = async (): Promise => { + const [row] = await postgres.query>( + `SELECT game_plugin_install_state(p.*) AS state FROM game_plugins p WHERE slug = 'retakes'`, + ); + return row.state; + }; + + it("is NotInstalled when nobody asked for it", async () => { + await addNode("node-1"); + expect(await state()).toEqual("NotInstalled"); + }); + + it("is Pending once requested, before any node has converged", async () => { + await addNode("node-1"); + await request(); + expect(await state()).toEqual("Pending"); + }); + + it("is Partial while only some nodes have it", async () => { + await addNode("node-1"); + await addNode("node-2"); + await request(); + await observe("node-1"); + expect(await state()).toEqual("Partial"); + }); + + it("is Installed once every node has it", async () => { + await addNode("node-1"); + await addNode("node-2"); + await request(); + await observe("node-1"); + await observe("node-2"); + expect(await state()).toEqual("Installed"); + }); + + it("is Failed when a node could not install it", async () => { + await addNode("node-1"); + await addNode("node-2"); + await request(); + await observe("node-1"); + await observe("node-2", { detected: false, status: "Failed" }); + expect(await state()).toEqual("Failed"); + }); + + it("is Manual for a plugin dropped in by hand", async () => { + await addNode("node-1"); + await observe("node-1", { source: "manual" }); + expect(await state()).toEqual("Manual"); + }); + + it("ignores disabled and offline nodes when deciding completeness", async () => { + await addNode("node-1"); + await addNode("node-2", "Offline"); + await addNode("node-3", "Online", false); + await request(); + await observe("node-1"); + // node-2 is offline and node-3 is disabled, so node-1 alone is everything + // that could have converged. + expect(await state()).toEqual("Installed"); + }); + + // Disabling a node does not delete what it reported, so the rows outlive the + // node's membership of the fleet. + it("does not report Installed off the back of a node that is no longer in the fleet", async () => { + await addNode("node-1"); + await addNode("node-2", "Online", false); + await request(); + await observe("node-2"); + + // node-2 is disabled: nothing that can run a match has the plugin. + expect(await state()).toEqual("Pending"); + }); + + it("does not stay Failed because of a decommissioned node", async () => { + await addNode("node-1"); + await addNode("node-2", "Online", false); + await request(); + await observe("node-1"); + await observe("node-2", { detected: false, status: "Failed" }); + + expect(await state()).toEqual("Installed"); + }); + + it("never counts more installed nodes than there are nodes to install on", async () => { + await addNode("node-1"); + await addNode("node-2", "Offline"); + await request(); + await observe("node-1"); + await observe("node-2"); + + const [row] = await postgres.query< + Array<{ installed: number; target: number }> + >( + `SELECT game_plugin_installed_node_count(p.*) AS installed, + game_plugin_target_node_count(p.*) AS target + FROM game_plugins p WHERE slug = 'retakes'`, + ); + + expect(Number(row.installed)).toEqual(1); + expect(Number(row.target)).toEqual(1); + }); + + it("counts installed and target nodes for the panel", async () => { + await addNode("node-1"); + await addNode("node-2"); + await request(); + await observe("node-1"); + + const [row] = await postgres.query< + Array<{ installed: number; target: number }> + >( + `SELECT game_plugin_installed_node_count(p.*) AS installed, + game_plugin_target_node_count(p.*) AS target + FROM game_plugins p WHERE slug = 'retakes'`, + ); + + expect(Number(row.installed)).toEqual(1); + expect(Number(row.target)).toEqual(2); + }); +}); diff --git a/test/game-plugin-registry-sync.spec.ts b/test/game-plugin-registry-sync.spec.ts new file mode 100644 index 000000000..c771f5284 --- /dev/null +++ b/test/game-plugin-registry-sync.spec.ts @@ -0,0 +1,136 @@ +import { PostgresService } from "./../src/postgres/postgres.service"; +import { GamePluginsService } from "./../src/game-plugins/game-plugins.service"; +import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; + +// A sync owns the catalog: it upserts what the registry publishes and prunes +// what it does not. A plugin the operator added themselves is the one thing it +// must not touch, or adding a plugin because the registry lacks it would be +// undone by the next poll fifteen minutes later. +describe("game plugin registry sync (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + let service: GamePluginsService; + let published: Array>; + + beforeAll(async () => { + db = await bootMigratedDb("GamePluginRegistrySync"); + postgres = db.postgres; + + service = new GamePluginsService( + { warn: jest.fn(), log: jest.fn() } as never, + {} as never, + postgres, + {} as never, + {} as never, + ); + + global.fetch = (async () => ({ + ok: true, + status: 200, + json: async () => ({ + version: 1, + generated_at: new Date().toISOString(), + plugins: published, + }), + })) as never; + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + beforeEach(async () => { + await postgres.query("DELETE FROM game_plugin_installs"); + await postgres.query("DELETE FROM game_plugin_versions"); + await postgres.query("DELETE FROM game_mode_plugins"); + await postgres.query("DELETE FROM game_plugins"); + + published = [ + { + slug: "retakes", + kind: "game", + name: "Retakes", + author: "someone", + description: "a catalogued plugin", + versions: [ + { + runtime: "swiftlys2", + version: "1.0.0", + url: "https://example.test/retakes.zip", + sha256: "a".repeat(64), + published_at: new Date().toISOString(), + }, + ], + }, + ]; + }); + + const addCustom = async (slug = "our-own"): Promise => { + await postgres.query( + `INSERT INTO game_plugins (slug, kind, name, author, description, source) + VALUES ($1, 'game', 'Ours', 'us', 'not in the registry', 'custom')`, + [slug], + ); + await postgres.query( + `INSERT INTO game_plugin_versions + (plugin_slug, runtime, version, url, sha256, published_at) + VALUES ($1, 'swiftlys2', '2.0.0', 'https://example.test/ours.zip', $2, now())`, + [slug, "b".repeat(64)], + ); + }; + + const catalog = async (): Promise>> => + await postgres.query( + `SELECT slug, source, name FROM game_plugins ORDER BY slug`, + ); + + it("keeps a plugin the operator added, which the registry has never heard of", async () => { + await addCustom(); + + await service.syncRegistry(); + + expect(await catalog()).toEqual([ + expect.objectContaining({ slug: "our-own", source: "custom" }), + expect.objectContaining({ slug: "retakes", source: "registry" }), + ]); + }); + + it("keeps the custom plugin's own versions", async () => { + await addCustom(); + + await service.syncRegistry(); + + const versions = await postgres.query>( + `SELECT version FROM game_plugin_versions WHERE plugin_slug = 'our-own'`, + ); + + expect(versions.map((row) => row.version)).toEqual(["2.0.0"]); + }); + + it("still prunes a registry plugin that stopped being published", async () => { + await postgres.query( + `INSERT INTO game_plugins (slug, kind, name, author, description) + VALUES ('gone', 'game', 'Gone', 'someone', 'delisted upstream')`, + ); + + await service.syncRegistry(); + + expect((await catalog()).map((row) => row.slug)).toEqual(["retakes"]); + }); + + // Same name, two different downloads. The operator's entry is the one an + // install is already pointing at, so the catalog does not get to take it over. + it("does not overwrite a custom entry when the registry publishes that slug", async () => { + await addCustom("retakes"); + + await service.syncRegistry(); + + expect(await catalog()).toEqual([ + expect.objectContaining({ + slug: "retakes", + source: "custom", + name: "Ours", + }), + ]); + }); +}); diff --git a/test/jest-e2e.json b/test/jest-e2e.json deleted file mode 100644 index e9d912f3e..000000000 --- a/test/jest-e2e.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "moduleFileExtensions": ["js", "json", "ts"], - "rootDir": ".", - "testEnvironment": "node", - "testRegex": ".e2e-spec.ts$", - "transform": { - "^.+\\.(t|j)s$": "ts-jest" - } -} diff --git a/test/utils/fixtures.ts b/test/utils/fixtures.ts index 7eb84f321..449817c9b 100644 --- a/test/utils/fixtures.ts +++ b/test/utils/fixtures.ts @@ -20,6 +20,7 @@ export type MatchOptionsOverrides = { mapPoolId?: string; substitutes?: number; vetoPickTimeout?: number; + gameModeId?: string; }; export type MatchRow = { @@ -137,8 +138,8 @@ export class Fixtures { const [row] = await this.postgres.query>( `INSERT INTO match_options (mr, best_of, type, map_pool_id, map_veto, region_veto, regions, number_of_substitutes, - veto_pick_timeout) - VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING id`, + veto_pick_timeout, game_mode_id) + VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING id`, [ over.mr ?? 12, over.bestOf ?? 1, @@ -149,6 +150,7 @@ export class Fixtures { over.regions ?? ["TestA"], over.substitutes ?? 0, over.vetoPickTimeout ?? 60, + over.gameModeId ?? null, ], ); return row.id;